summaryrefslogtreecommitdiff
path: root/sys/net
AgeCommit message (Expand)Author
2007-11-01Change a few malloc(9) + memset(3) pairs to malloc(..., ...|M_ZERO).dyoung
2007-10-19machine/{bus,cpu,intr}.h -> sys/{bus,cpu,intr}.had
2007-10-11In ifreq_setaddr(), use the right buffer sizes for compat v.dyoung
2007-10-10Delete dead code.dyoung
2007-10-08Use the softint API.ad
2007-10-08Merge file descriptor locking, cwdi locking and cross-call changesad
2007-10-06Change some ints to bools.dyoung
2007-10-06Good-bye, kernel thread, we don't need you any longer.dyoung
2007-10-05Add missing include for definition of struct evcnt.martin
2007-10-05Cosmetic: KNF. Litter the code with fewer #if NBPFILTER > 0.dyoung
2007-10-05Remove a lot of dead code. Move gre_do_send() code into greintr(),dyoung
2007-10-05Work in progress: use a raw socket for GRE in IP encapsulationdyoung
2007-09-29s/NPBFILTER/NBPFILTER/scw
2007-09-19Constify sockaddr argument to ether_multiaddr(). Change structdyoung
2007-09-16Save some lines of code, use sockaddr_dup(), sockaddr_free(),dyoung
2007-09-16KNF: use tabs instead of spaces.dyoung
2007-09-16Use sockaddr_dup() and sockaddr_free().dyoung
2007-09-16Move the LIST_HEAD() definition below etherip_softc's definition.dyoung
2007-09-13Add a define for the ifru_space union member.gdt
2007-09-11Fix bug in SIOCGIFCONF where the wrong length was calculated forgdt
2007-09-10Remove 3rd clause and my name from all the licences which were only in mycube
2007-09-09Print the access concentrator name when a session is established.martin
2007-09-08Rename gre_socreate1() -> gre_socreate().dyoung
2007-09-02We cannot sleep in a software interrupt, so do not sockaddr_dl_alloc(...,dyoung
2007-09-02Delete unused variable.dyoung
2007-09-02Simplify code, add debug statements, and fix a bug that coulddyoung
2007-09-02Get rid of struct oifreq/ifreq compat code, because ifioctl() hasdyoung
2007-09-02Be consistent: use the prefix sc_ for all members of the gre_softc.dyoung
2007-09-02Protect userland from ifreq_getaddr() w/ #ifdef _KERNEL.dyoung
2007-09-01token_addmulti and token_delmulti are never used in the kernel, sodyoung
2007-09-01fddi_addmulti and fddi_delmulti are never used in the kernel, sodyoung
2007-09-01Fix compilation if !defined(INET6). Thanks, Geoff Wing, for thedyoung
2007-09-01Use ifreq_setaddr(), ifreq_getaddr(), sockaddr_in_init(), anddyoung
2007-09-01Use ifreq_getaddr(). Pass a sockaddr instead of ifreq where sockaddrdyoung
2007-08-31Per discussion in 30 May 2007 on tech-net, add accessors fordyoung
2007-08-30Move sc_fp & sc_newfp from struct gre_softc to struct gre_soparm.dyoung
2007-08-30Remove out-of-date debug message and comment.dyoung
2007-08-30Cosmetic: remove an out-of-place comma in a comment.dyoung
2007-08-30Do not hold the mutex as much in gre_thread1(). Move initial mutexdyoung
2007-08-30Make rtcache() and rtflush() block IPL_NET while they add/removedyoung
2007-08-30Use malloc(9) for sockaddrs instead of pool(9), and remove dom_sa_pooldyoung
2007-08-27LLADDR -> CLLADDR.dyoung
2007-08-27Remove dead code.dyoung
2007-08-27Add a new routing message type, RTM_SETGATE. We can use andyoung
2007-08-26Constify: LLADDR -> CLLADDR. I'm aiming here to make it easier todyoung
2007-08-24Overhaul gre(4), especially the GRE in UDP bits:dyoung
2007-08-20Clean up net compat ioctls, and clean up handling of wireless ioctls.skd
2007-08-14Explicitly assert that the protocol out pr_ctloutput before calling it.joerg
2007-08-14- Check IFF_RUNNING | IFF_UP in gre_output() correctly.seanb
2007-08-07As a stopgap measure to avoid dependency on net/if.h, don't usedyoung