diff options
author | Ted Unangst <tedu@cvs.openbsd.org> | 2015-12-08 13:34:23 +0000 |
---|---|---|
committer | Ted Unangst <tedu@cvs.openbsd.org> | 2015-12-08 13:34:23 +0000 |
commit | 6d2ca37b400006a980e7149d8617abe3af34a0c2 (patch) | |
tree | 4b1106d6b8c0a9b78c62b2198902e4e15c1c1c1d /sys/arch/sgi/hpc | |
parent | bdcbac7240964dfba99d1f26fd71ed841f237e63 (diff) |
No trailers has been the default and only option for 20 years, yet some
drivers still set IFF_NOTRAILERS while others do not. Remove all usage of
the flag from the drivers which in ancient times used it (and the modern
drivers which blindly copied it from those drivers of yore).
suggested by guenther. ok mpi
Diffstat (limited to 'sys/arch/sgi/hpc')
-rw-r--r-- | sys/arch/sgi/hpc/if_sq.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/sgi/hpc/if_sq.c b/sys/arch/sgi/hpc/if_sq.c index f09e0937e1b..c98e08787c9 100644 --- a/sys/arch/sgi/hpc/if_sq.c +++ b/sys/arch/sgi/hpc/if_sq.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_sq.c,v 1.23 2015/11/25 03:09:58 dlg Exp $ */ +/* $OpenBSD: if_sq.c,v 1.24 2015/12/08 13:34:22 tedu Exp $ */ /* $NetBSD: if_sq.c,v 1.42 2011/07/01 18:53:47 dyoung Exp $ */ /* @@ -359,7 +359,7 @@ sq_attach(struct device *parent, struct device *self, void *aux) ifp->if_start = sq_start; ifp->if_ioctl = sq_ioctl; ifp->if_watchdog = sq_watchdog; - ifp->if_flags = IFF_BROADCAST | IFF_NOTRAILERS | IFF_MULTICAST; + ifp->if_flags = IFF_BROADCAST | IFF_MULTICAST; IFQ_SET_READY(&ifp->if_snd); if_attach(ifp); |