diff options
author | Henning Brauer <henning@cvs.openbsd.org> | 2005-05-21 21:03:59 +0000 |
---|---|---|
committer | Henning Brauer <henning@cvs.openbsd.org> | 2005-05-21 21:03:59 +0000 |
commit | 823a05ae47a745ef7ba8b8c768901bd1ab31a80e (patch) | |
tree | a6154d85d95e05e54cd5d62771771bc47a845866 /sys/net/if.c | |
parent | 1a239e77bd4b99fac7d032554a8f026108682215 (diff) |
clean up and rework the interface absraction code big time, rip out multiple
useless layers of indirection and make the code way cleaner overall.
this is just the start, more to come...
worked very hard on by Ryan and me in Montreal last week, on the airplane to
vancouver and yesterday here in calgary. it hurt.
ok ryan theo
Diffstat (limited to 'sys/net/if.c')
-rw-r--r-- | sys/net/if.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/sys/net/if.c b/sys/net/if.c index 6c45564ab07..7f7d7afb32a 100644 --- a/sys/net/if.c +++ b/sys/net/if.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if.c,v 1.109 2005/05/09 08:08:47 mpf Exp $ */ +/* $OpenBSD: if.c,v 1.110 2005/05/21 21:03:57 henning Exp $ */ /* $NetBSD: if.c,v 1.35 1996/05/07 05:26:04 thorpej Exp $ */ /* @@ -776,9 +776,6 @@ if_clone_attach(struct if_clone *ifc) { LIST_INSERT_HEAD(&if_cloners, ifc, ifc_list); if_cloners_count++; -#if NPF > 0 - pfi_attach_clone(ifc); -#endif } /* |