aboutsummaryrefslogtreecommitdiff
path: root/sys/modules/sr
Commit message (Collapse)AuthorAgeFilesLines
* Garbage collect unbuildable and unusable non-MPSAFE network deviceRobert Watson2009-04-161-17/+0
| | | | | | | | | | | | | | drivers that depended on the historic IFF_NEEDSGIANT compatibility mechanism: ar(4) ray(4) sr(4) Discussed on: arch@ Notes: svn path=/head/; revision=191138
* Per email to arch@ a little while ago (that was greeted with silence),Warner Losh2008-09-011-1/+1
| | | | | | | | prefer the more common > ${.TARGET} over > opt_foo.h in modules makefiles. Notes: svn path=/head/; revision=182668
* Let modules use the kernel's opt_*.h files if built along withYaroslav Tykhiy2005-10-141-3/+3
| | | | | | | | | | | | | | | | | the kernel by wrapping all targets for fake opt_*.h files in .if defined(KERNBUILDDIR). Thus, such fake files won't be created at all if modules are built with the kernel. Some modules undergo cleanup like removing unused or unneeded options or .h files, without which they wouldn't build this way or the other. Reviewed by: ru Tested by: no binary changes in modules built alone Tested on: i386 sparc64 amd64 Notes: svn path=/head/; revision=151350
* Convert Netgraph to use mbuf tags to pass its meta information around.Julian Elischer2004-06-251-1/+10
| | | | | | | | | | | Thanks to Sam for importing tags in a way that allowed this to be done. Submitted by: Gleb Smirnoff <glebius@cell.sick.ru> Also allow the sr and ar drivers to create netgraph versions of their modules. Document the change to the ksocket node. Notes: svn path=/head/; revision=131108
* Zap some bad examples:Peter Wemm2001-02-041-3/+0
| | | | | | | | | opt_foo.h: touch opt_foo.h .. is unnecessary - kmod.mk does this for us. Notes: svn path=/head/; revision=71985
* Make klds for the ar and sr devices and hook them up.John Hay2001-01-301-0/+11
The normal versions are called if_ar.ko and if_sr.ko and the netgraph versions ng_sync_ar.ko and ng_sync_sr.ko. Notes: svn path=/head/; revision=71832