Deleted Added
sdiff udiff text old ( 193664 ) new ( 193731 )
full compact
1/* $FreeBSD: head/sys/net/if_gif.c 193731 2009-06-08 17:15:40Z zec $ */
2/* $KAME: if_gif.c,v 1.87 2001/10/19 08:50:27 itojun Exp $ */
3
4/*-
5 * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
6 * All rights reserved.
7 *
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions

--- 288 unchanged lines hidden (view full) ---

298#else
299 vnet_gif_iattach(NULL);
300#endif
301 if_clone_attach(&gif_cloner);
302
303 break;
304 case MOD_UNLOAD:
305 if_clone_detach(&gif_cloner);
306#ifdef VIMAGE
307 vnet_mod_deregister(&vnet_gif_modinfo);
308#endif
309 mtx_destroy(&gif_mtx);
310 break;
311 default:
312 return EOPNOTSUPP;
313 }
314 return 0;
315}
316
317static moduledata_t gif_mod = {

--- 754 unchanged lines hidden ---