summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* s/kernal/kernelalfred2001-10-192-2/+2
|
* Handle the lack of nfs server or client support in the kernel bydougb2001-10-198-10/+102
| | | | kldload'ing the appropriate modules before enabling the service.
* Linux compiles broken on alpha again. Remove.mjacob2001-10-191-2/+2
|
* Add manpage for gx driver.jlemon2001-10-192-0/+175
|
* Add entry for the PRO/1000.jlemon2001-10-193-0/+5
|
* Hook the gx module up to the build.jlemon2001-10-192-0/+9
|
* Add a driver for the Intel PRO/1000 Gigabit Ethernet boards.jlemon2001-10-193-0/+2317
|
* #if 0 out some code that depends on other uncommitted patches.des2001-10-191-0/+2
|
* Adapt to pseudofs changes (dynamic initialization, not static).des2001-10-191-67/+60
| | | | | Use the new linux_ifname() function from the linuxulator rather than roll our own interface name translation.
* Switch to dynamic rather than static initialization.des2001-10-193-62/+288
| | | | | This makes it possible (in theory) for nodes to be added and / or removed from pseudofs filesystems at runtime.
* Add support for the "device private" ioctls soon to be used by the an driver.des2001-10-192-16/+76
| | | | | | Also slightly change the name translation policy - only rename interfaces that have the IFF_BROADCAST flag set. This is not perfect, but is closer to how Linux names network interfaces.
* Add two "device private" ioctls needed by the Aironet (an) driver.des2001-10-191-5/+8
| | | | Move some ioctls that were out of order.
* Whitespace fix.des2001-10-191-1/+1
|
* Print statistics for AF_IPX.mdodd2001-10-191-0/+2
| | | | Note that the IPX code doesn't update these correctly yet, but should.
* Print [fddi] or [atm] tags for ARP addresses on interfaces of that type.mdodd2001-10-191-0/+6
|
* Use normal CWARNFLAGS and defines when compiling on FreeBSD.mp2001-10-191-2/+6
|
* Turn on the libedit support in bc. Turn off libreadline.mdodd2001-10-192-4/+6
|
* Add libedit support to tftp.mdodd2001-10-192-8/+46
|
* Add library exposed by KDE's use if this module.markm2001-10-181-0/+2
|
* Add verbage for MODULES_OVERRIDE.imp2001-10-182-0/+8
|
* Update to note that rpc.statd and rpc.lockd are now needed foralfred2001-10-181-2/+2
| | | | | | client side NFS mounts. Stumbled upon by: rwatson
* Add support for the gcc-2.95 stdarg implementation.mp2001-10-182-0/+40
|
* Protect against deranged fabric nameservers that spit out 10000 identicalmjacob2001-10-181-3/+16
| | | | | | port numbers. MFC after: 1 day
* Back previous revision out until it has been discussed on -arch andsheldonh2001-10-181-1/+0
| | | | motivated. Currently, it is under dispute.
* Back previous revision out until it has been discussed on -arch andsheldonh2001-10-181-1/+0
| | | | motivated. Currently, it is under dispute.
* Shift the code which packs and unpacks instruction bundles out of DDBdfr2001-10-185-12/+41
| | | | | since it is useful for various emulations duties (e.g. unaligned trap handling).
* My attempts at minimizing the number of #def's got me in trouble.obrien2001-10-185-21/+24
|
* Note MFC of syslogd -b.dd2001-10-182-2/+2
|
* Add experimental support for sending keypad facility messages.hm2001-10-1820-185/+327
| | | | MFC after: 2 months
* Fix diskless clients by removing the code for calculating the minimumroberto2001-10-181-13/+1
| | | | | | | value for cpg. The change was bogus. Submitted by: bde MFC after: 2 days
* Fix AUTH callback negotiations.brian2001-10-181-2/+2
| | | | MFC after: 1 week
* When the peer fails to specify an MRU and a 1500 byte MRU is notbrian2001-10-182-4/+8
| | | | | | | | | | | | allowed either because of the transport or configuration, send a MRU NAK only once, then allow the negotiations to proceed. rfc1661 says that 1500 should always be allowed and rfc2516 says that 1492 is the maximum for PPPoE. This changes ppp so that it only weakly suggests 1492, then goes with the default (leaving the problem in the hands of the peer WRT how they set their MTU). MFC after: 1 week
* Tons of type, style and warning fixes that have been rotting in my tree fordes2001-10-185-70/+101
| | | | | ages - some of which wouldn't be necessary if gcc wasn't broken or TPTB were willing to do something (-fno-builtin) about it.
* keypad facility information element: add keypad facility information decoding.hm2001-10-181-4/+12
| | | | MFC after: 1 month
* Fix typos in previous commit:marcel2001-10-181-1/+1
| | | | | o s/sys_narg/sy_narg/ o s/SYS_MPSAFE/SYF_MPSAFE/
* Add support for "__gnuc_va_list". Some overly "smart" libraries assumeobrien2001-10-185-5/+28
| | | | | | | the existence of the __gnuc_va_list type[*] because our compiler is GCC. [*] __gnuc_va_list is defined in the GCC ginclude/stdarg.h replacement headerwhich we don't use.
* Sync comments with i386.obrien2001-10-181-6/+6
|
* Minor comment tweaking.obrien2001-10-171-4/+4
|
* - Small cleanups to the Giant handling in trap().jhb2001-10-171-9/+17
| | | | | | | - Only release Giant in trap() if we locked it, otherwise we could release Giant in a kernel trap if we didn't get it for a page fault and the previous frame had grabbed the lock. - Only get Giant for !MP safe syscalls.
* Small cleanups to the handling of Giant in trap().jhb2001-10-171-8/+5
|
* Use the new SIOCGIFINDEX ioctl to efficiently map a name to an index.jlemon2001-10-171-2/+22
| | | | | If the syscall fails, fall back on the old method as a compatability measure.
* Add a SIOCGIFINDEX ioctl, which returns the index of a named interface.jlemon2001-10-173-0/+7
| | | | This will be used to more efficiently support if_nametoindex(3).
* Cleanup ifunit(), so it uses the dev_named() function to map an interfacejlemon2001-10-171-29/+11
| | | | name into a device.
* Add dev_named(dev, name), which is similar in spirit to devtoname().jlemon2001-10-173-0/+15
| | | | | This function returns success if the device is known by either 'name' or any of its aliases.
* When specifying an interface to ifconfig, first look up the interfacejlemon2001-10-171-25/+11
| | | | | | | | index, then retrieve statistics for that index, rather than retrieving all interfaces and then looking for a matching name. This allows the user to refer to an interface via an alias name. While I'm here, also perform a few assorted cleanups.
* Pull post-4.4BSD change to sys/net/route.c from BSD/OS 4.2.ru2001-10-1716-161/+206
| | | | | | | | | | | | | | | | | | | | Have sys/net/route.c:rtrequest1(), which takes ``rt_addrinfo *'' as the argument. Pass rt_addrinfo all the way down to rtrequest1 and ifa->ifa_rtrequest. 3rd argument of ifa->ifa_rtrequest is now ``rt_addrinfo *'' instead of ``sockaddr *'' (almost noone is using it anyways). Benefit: the following command now works. Previously we needed two route(8) invocations, "add" then "change". # route add -inet6 default ::1 -ifp gif0 Remove unsafe typecast in rtrequest(), from ``rtentry *'' to ``sockaddr *''. It was introduced by 4.3BSD-Reno and never corrected. Obtained from: BSD/OS, NetBSD MFC after: 1 month PR: kern/28360
* Change kern.bootfile when mv'ing the kernelbrian2001-10-175-0/+10
| | | | Not tested by: brian
* Pull fix for memory leak in in6_losing() from netinet/in_pcb.c,v 1.85.ru2001-10-171-3/+2
| | | | MFC after: 1 week
* contigmalloc1() could cause the vm_page_zero_count to become incorrect.dillon2001-10-171-0/+2
| | | | | | Properly track the count. Submitted by: mark tinguely <tinguely@web.cs.ndsu.nodak.edu>
* Remove some EOL whitespace. Update usage() to current reality.mike2001-10-171-5/+5
|
OpenPOWER on IntegriCloud