summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Rename new PLONG type to PGTOK as the conversion is more important than thejmallett2002-09-173-4/+4
| | | | | | size (which is mostly undefined anyway). Submitted by: bde
* Fix standard kse breakge of non-x86 platforms. sigh.jake2002-09-172-18/+2
| | | | Pointy hat to: kse
* Check for FD_SET overruns.nectar2002-09-171-0/+8
| | | | Approved by: peter
* Only include parent directory Makefile.inc if it exists. Now you canjhb2002-09-171-1/+3
| | | | cvs co acpi and build acpi utilities w/o needing the usr.sbin Makefile.inc.
* Fixed unsorting of SRCS.bde2002-09-172-4/+4
|
* - increment interface output counter. sync w/ netbsd-currentume2002-09-171-2/+11
| | | | | | - increase if_oerrors. sync w/netbsd Obtained from: KAME
* Firewire device support for Apple eMac with PPC kernel.ikob2002-09-174-1/+29
| | | | Contributed by Peter Grehan <grehan@freebsd.org>
* Regen:sheldonh2002-09-171-50/+134
| | | | * Hart: rev 332 of pcidevs.txt (2002-09-09)
* Add /dev/soekris-errled device to control the Error-LED on Soekris cards/boxes.phk2002-09-171-23/+136
| | | | | | | | | | | | | | | | | | | # turn LED off echo '0' > /dev/soekris-errled # turn LED on echo '1' > /dev/soekris-errled # flash LED (5 hz) echo 'f' > /dev/soekris-errled # flash LED (4/2 = 2 hz), syntax: "f[1-9]" -> .5 -> 4.5 Hz echo 'f4' > /dev/soekris-errled # flash digits 1,3 and 7, syntax: "d[1-9]*" echo 'd137' > /dev/soekris-errled Characters not understood are ignored.
* Remove __RCSID().sobomax2002-09-172-6/+0
| | | | Submitted by: bde
* Fix vsnprintf(3) memory leak for size == 0.maxim2002-09-171-0/+6
| | | | | | | PR: bin/36175 Obtained from: OpenBSD Reviewed by: silence on -audit MFC after: 5 days
* Explicitly clear M_FRAG flag on a mbuf with the last fragment to unbreakmaxim2002-09-171-1/+2
| | | | | | | | ip fragments reassembling for loopback interface. Discussed with: bde, jlemon Reviewed by: silence on -net MFC after: 2 weeks
* In rare cases when there is no room for ip options ip_insertoptions()maxim2002-09-171-1/+3
| | | | | | | | can fail and corrupt a header length. Initialize len and check what ip_insertoptions() returns. Reviewed by: archie, silence on -net MFC after: 5 days
* Don't reference cpu_fxsr unless CPU_ENABLE_SSE is defined. This fixes kernelsobomax2002-09-172-4/+16
| | | | in !CPU_ENABLE_SSE case.
* reject private IPv4 addrsume2002-09-171-0/+3
| | | | Obtained from: KAME
* - reject SIOCSIFADDR if embedded address is in private address rangeume2002-09-171-1/+26
| | | | | | - reject packets from private address range. from hitachi Obtained from: KAME
* Re-axe.bde2002-09-171-31/+0
|
* Make `as' compile before it is axed. It still uses the archaic BSDbde2002-09-171-0/+2
| | | | | | | | | | | interface setbuffer(), and emulates setbuffer() on USG systems using a #define of setbuffer() in terms of setvbuf(). The #define is correctly ifdefed in some places but was not correctly ifdefed here -- i.e., BSD was essentially configured as USG here. This became fatal when <stdio.h> was de-__P(())ified without testing. This file gets included before <stdio.h>, so the #define now affects (and breaks) `setbuffer<left parentheses>' in <stdio.h> where it didn't affect `setbuffer<whitespace>'.
* Un-axe this so that it can be fixed before it is axed.bde2002-09-171-0/+29
|
* The previous commit also removed the addition of userland include files topeter2002-09-170-0/+0
| | | | | | the kernel #include path. While this was not ready at the time (sorry folks!), it is a good thing. I think all the loose ends have been tied up on at least for i386 (LINT compiles) and alpha.
* Make netatm/spans compile in the kernel without depending on userlandpeter2002-09-175-6/+383
| | | | include files to provide functions for kernel source (spans_kxdr.c)
* Update man page to reflect current implementation.truckman2002-09-171-6/+12
| | | | | List all of the error returns shown in the example code in the ERRORS section.
* Fix a hard sentence break.truckman2002-09-171-2/+2
|
* Add stub function for cpu_set_upcall_kse()peter2002-09-171-0/+7
|
* #if 0 out the following functions:peter2002-09-171-2/+9
| | | | | | | cpu_export_context() cpu_set_args() cpu_free_kse_mdstorage() cpu_export_context()
* Make this compile after the last kse commit.peter2002-09-171-1/+1
|
* Argh. I've been reading makefiles for too long. Change comment to apeter2002-09-172-8/+16
| | | | C-style comment.
* Stub out the calls to get_mcontext and set_mcontext which only exist onpeter2002-09-172-0/+20
| | | | | i386. This stuff should not be prototyped in MD inludes if the interface is expected to be MI.
* Add i386 to the list of architectures that libc_r is broken on. Thispeter2002-09-172-2/+2
| | | | | effectively removes pppctl from the build for now. It only compiles on alpha now (now ironic).
* It seems I accidently committed a change that removed the userland includespeter2002-09-171-2/+0
| | | | | | from the kernel build. This broke linux_genassym on the alpha. For the kernel, the correct place to get offsetof() is not in /usr/include/stddef.h but rather <sys/types.h>
* Bandaid to stop failing on non-i386 platforms.peter2002-09-171-0/+5
| | | | Add a big ugly #warning as a reminder.
* Make _fetch_connect() always set the error code.fenner2002-09-172-4/+5
| | | | Tell ftp that _fetch_connect() always sets the error code (http already knew)
* Include <sys/types.h> directly rather than depending on <sys/fcntl.h>mike2002-09-171-0/+1
| | | | | to include it. This could be avoided by adding the necessary typedefs here, or by making users of <sys/file.h> include <sys/types.h> first.
* pid_t will be shared with at least <fcntl.h>.mike2002-09-171-0/+4
|
* Bmake bits for GCC 3.2.1-prerelease libstdc++.kan2002-09-171-2/+3
| | | | | | Connect two new source and one header file to the build. Approved by: obrien
* Merge FreeBSD modifications into gcc 3.2.1-prerelease:kan2002-09-171-0/+3
| | | | | | 1.8 printf format error fixes Approved by: obrien
* Merge FreeBSD modifications into gcc 3.2.1-prerelease:kan2002-09-171-1/+1
| | | | | | 1.2 Localize the version number Approved by: obrien
* Use the stock 3.2.1-prerelease file.kan2002-09-176-29/+37
| | | | Approved by: obrien
* Merge FreeBSD modifications into gcc 3.2.1-prerelease:kan2002-09-171-0/+5
| | | | | | | 1.2 framework for our kernel printf enhancements 1.3 suppress prototype warning for K&R main Approved by: obrien
* This commit was generated by cvs2svn to compensate for changes in r103449,kan2002-09-173-3/+3
|\ | | | | | | which included commits to RCS files with non-trunk default branches.
| * Gcc 3.2.1-prerelease libf2c bits from the FSF anoncvs repo gcc-3_2-branch on ↵kan2002-09-173-3/+3
| | | | | | | | 16-Sep-2002 13:23:11 EDT.
* | This commit was generated by cvs2svn to compensate for changes in r103447,kan2002-09-1743-1632/+8571
|\ \ | |/ | | | | which included commits to RCS files with non-trunk default branches.
| * Gcc 3.2.1-prerelease C++ support bits from the FSF anoncvs repo ↵kan2002-09-1743-1632/+8571
| | | | | | | | gcc-3_2-branch on 16-Sep-2002 13:23:11 EDT.
* | This commit was generated by cvs2svn to compensate for changes in r103445,kan2002-09-1736-659/+972
|\ \ | |/ | | | | which included commits to RCS files with non-trunk default branches.
| * Gcc 3.2.1-prerelease from the FSF anoncvs repo gcc-3_2-branch on 16-Sep-2002 ↵kan2002-09-1745-689/+1018
| | | | | | | | 13:23:11 EDT.
* | Tempary fix for inet6. The final fix is to change in6_pcbnotify to take ↵jennifer2002-09-171-0/+2
| | | | | | | | | | | | pcbinfo instead of pcbhead. It is on the way.
* | Use a weak symbol for signalcontext().mini2002-09-171-1/+3
| |
* | Add signalcontext(), which adds a signal frame to a ucontext_t.mini2002-09-171-0/+80
| |
* | Conglomerate printing of ps_pgtok'd data into a PLONG type. I couldn't thinkjmallett2002-09-174-23/+6
| | | | | | | | | | of a better name, except PINT, but I decided to go with assuming LONG to be safe, rather than assuming INT.
* | BANG! BANG! BANG! Put these bits out of their misery.obrien2002-09-17197-82637/+0
| | | | | | | | | | | | | | | | | | | | Murdered by members of: a.out.die.die.die ELF is the 1 true path now. So make good on the src/Makefile threat that building a.out will not be supported post 4.x. These bits should either resurface as a port, or a new port using the latest Binutils bits. The later will not support our SunOS-style shared a.out libs; but we shouldn't need such support by this point in time.
OpenPOWER on IntegriCloud