summaryrefslogtreecommitdiffstats
path: root/sys
Commit message (Collapse)AuthorAgeFilesLines
* Sync with recent KAME.ume2001-06-11137-8649/+13173
| | | | | | | | | | | | | | | | | | This work was based on kame-20010528-freebsd43-snap.tgz and some critical problem after the snap was out were fixed. There are many many changes since last KAME merge. TODO: - The definitions of SADB_* in sys/net/pfkeyv2.h are still different from RFC2407/IANA assignment because of binary compatibility issue. It should be fixed under 5-CURRENT. - ip6po_m member of struct ip6_pktopts is no longer used. But, it is still there because of binary compatibility issue. It should be removed under 5-CURRENT. Reviewed by: itojun Obtained from: KAME MFC after: 3 weeks
* Add PSEUDOFS, and note that LINPROCFS depends on it.des2001-06-112-2/+6
|
* Add pseudofs and the new linprocfs here.des2001-06-111-0/+5
|
* Add a PSEUDOFS option to allow pseudofs to be built statically.des2001-06-111-0/+1
|
* Remove the old linprocfs code.des2001-06-111-4/+0
|
* Cosmetics:joerg2001-06-112-32/+44
| | | | | | | | | . remove stale comments and a stale #define (from the old days of ft(4)) . make MAX_SEC_SIZE (used in isa_dmainit()) a #define . fix a typo in a string . use 0 as the blocksize in devstat_add_entry(), since the actual blocksize is unknown (devstat(9) suggests to use 0 in that case)
* Try to make the setting of the SIGCHLD handler the same as setting ofdwmalone2001-06-111-1/+4
| | | | | | | the NOCLDWAI flag. Susv2 seems to require this. Submitted by: Cejka Rudolf <cejkar@dcse.fee.vutbr.cz> Reviewed by: dillon
* identify es1371 revision acg2001-06-111-1/+6
|
* get clkrun the right way aroundcg2001-06-111-5/+0
| | | | remove debug messages
* Minor whitespace changes.des2001-06-111-57/+57
|
* Preemptive brucification.des2001-06-101-2/+0
|
* Connect linprocfs to the build.des2001-06-102-0/+13
|
* These aren't needed any more.des2001-06-105-2163/+0
|
* New pseudofs-based linprocfs (repo-copied from linprocfs_misc.c).des2001-06-101-210/+142
|
* Disconnect linprocfs prior to moving it.des2001-06-102-21/+1
|
* Bail out if the fill function failed.des2001-06-101-0/+10
|
* Whoops, some of my test code snuck in here.des2001-06-101-1/+1
|
* Supply the intpin to the platform.pci_intr_map() function. It turnsgallatin2001-06-103-0/+6
| | | | | | | out nearly every platform but the one I tested on requires the intpin to swizzle out the correct intline. tested by: Martijn Pronk <mpkisbkl@xs4all.nl> (lca_pci)
* Connect the fs directory to the build.des2001-06-101-1/+1
|
* Argh. Fix braino in previous commit.des2001-06-101-1/+1
|
* Add a 'flags' argument to the PFS_PROCDIR macro.des2001-06-101-2/+2
|
* Add a build directory and Makefile for pseudofs.des2001-06-102-0/+20
|
* Add support for process-dependent directories. This means that save fordes2001-06-106-147/+195
| | | | the lack of a man page, pseudofs is mostly complete now.
* sbuf_new(9) now returns a struct sbuf * instead of an int. If the callerdes2001-06-103-21/+34
| | | | | does not provide a struct sbuf, sbuf_new(9) will allocate one and return a pointer to it.
* Move the first section up one page. The firmware bogusly uses the firstdfr2001-06-102-0/+2
| | | | | | page of the image to load section headers and if we let the text section start at zero, it corrupts the section table when its loaded. With this change, the loader gets as far as the 'ok' prompt.
* Remove a 'return' statement which I put in while I was trying to debugdfr2001-06-102-2/+0
| | | | the startup code.
* Fix a minor style bug in the last commit.jesper2001-06-101-1/+1
| | | | | Submitted by: Adrian Steinmann <ast@marabu.ch> MFC after: 2 days
* Make the default value of net.inet.ip.maxfragpackets andjesper2001-06-103-3/+6
| | | | | | | | net.inet6.ip6.maxfragpackets dependent on nmbclusters, defaulting to nmbclusters / 4 Reviewed by: bde MFC after: 1 week
* Explicitly initialize the reference count to 0. This silences a warningdes2001-06-101-1/+1
| | | | with -Wno-uninitialized.
* Blah, not my day. This file needs <sys/mutex.h> now.des2001-06-101-0/+1
|
* Remember to unlock the process pfind() returns.des2001-06-101-1/+5
|
* Add missing #include of <sys/mutex.h>.des2001-06-103-0/+3
|
* Catch up with the change in sbuf_new's prototype.des2001-06-101-8/+8
|
* Move the files from i386/isa/ic/ to dev/ic/.nyan2001-06-106-138/+8
|
* Added ESP98 specific register (merged from i386/isa/ic/esp.h).nyan2001-06-101-0/+1
|
* Removed unneeded pc98 code (merged from i386/isa/ic/ns16550.h).nyan2001-06-101-14/+0
|
* Bring in NetBSD code used in the PowerPC port.benno2001-06-1049-0/+17592
| | | | | Reviewed by: obrien, dfr Obtained from: NetBSD
* Changes to sys/ includes to support PowerPC.benno2001-06-102-1/+4
| | | | Reviewed by: obrien, dfr
* Document the PANIC_REBOOT_WAIT_TIME option.dd2001-06-102-4/+12
| | | | | PR: 22228 Submitted by: Keith Jones <keith@mithy.demon.co.uk>
* Two fixes to the out-of-swap process termination code. First, start killingdillon2001-06-093-3/+44
| | | | | | | | | | | processes a little earlier to avoid a deadlock. Second, when calculating the 'largest process' do not just count RSS. Instead count the RSS + SWAP used by the process. Without this the code tended to kill small inconsequential processes like, oh, sshd, rather then one of the many 'eatmem 200MB' I run on a whim :-). This fix has been extensively tested on -stable and somewhat tested on -current and will be MFCd in a few days. Shamed into fixing this by: ps
* fix RCS ID style nitobrien2001-06-091-1/+1
|
* First approximation of an ia64 EFI loader. Not functional.dfr2001-06-0950-0/+8264
|
* Bump __FreeBSD_version to reflect machine/ioctl_fd.c moving to sys/fdcio.hbrian2001-06-091-1/+1
|
* First stab at adding back in CL-PD6729 support.imp2001-06-091-1/+15
|
* Add PC9801-102 CBUS card to the list of plug and play devices. Someimp2001-06-092-0/+4
| | | | | | | mapping of irq 6 may be required to use that irq, but if so, additional commits will follow. Submitted by: Hiroshi TSUKADA-san
* ID style nit.obrien2001-06-091-1/+1
|
* Fix style of defines.obrien2001-06-095-199/+199
|
* Style fix FreeBSD ID, and change continuation style slightly.obrien2001-06-091-4/+3
|
* Go ahead and request 0x44000000 through 0xfffffff instead of justimp2001-06-081-1/+1
| | | | | | 0xefffffff # Note, this is bogus, but less bogus than before.
* Sync up to v 1.9 of NetBSD's db_trace.c to get access to thegallatin2001-06-083-72/+328
| | | | | | | | | | | greatly improved traceback code from Ross Harvey. This code requires the use of more traceback friendly temporary labels at kernel entry points, hence the changes to exception.s and asm.h Reviewed by: jhb, dfr Obtained from: NetBSD MFC after: 1 week
OpenPOWER on IntegriCloud