summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* | | Document the newfs.c rev 1.33 changing the default c/g from 16 to 22.obrien2001-04-021-1/+1
| | |
* | | Fix patch merge braino.obrien2001-04-021-2/+2
| | |
* | | There were a few error cases where the RPC code would return withiedowse2001-04-022-1/+5
| | | | | | | | | | | | | | | | | | all signals masked (whoops). Add the missing cleanup code. Reviewed by: Martin Blapp <mb@imp.ch>, alfred
* | | If ifpromisc() fails the SIOCSIFFLAGS ioctl, put ifp->if_flagsbrian2001-04-021-0/+4
| | | | | | | | | | | | back the way we found them.
* | | Return 0 and do nothing when we get a SIOCSIFFLAGS.brian2001-04-021-0/+1
| | | | | | | | | | | | | | | | | | | | | Without this, ifpromisc() always fails (after setting the IFF_PROMISC bit in ifp->if_flags) and bpf never bothers to turn promiscuous mode off. PR: 20188
* | | Move the #includes of reentrant.h to after the `#include "namespace.h"',iedowse2001-04-0223-23/+23
| | | | | | | | | | | | | | | | | | | | | | | | so that the underscored versions of the pthread functions get declared. This removes around 300 lines of 'implicit declaration of XXX' warnings from the output of a libc build with -Wall. Reviewed by: Martin Blapp <mb@imp.ch>, alfred
* | | New release notes: fsck(8) and /etc/fstab passes, newfs(8) -U,bmah2001-04-022-2/+16
| | | | | | | | | | | | | | | | | | libcrypt Blowfish support. Fix a typo: newfs is section 8, not section 1.
* | | MFC candidate:bmah2001-04-021-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | Fix ABOUT.TXT to be consistent with LAYOUT.TXT with respect to the size of an unpacked ports collection (the stated 100MB is a bit of an overestimate, but better to be conservative). PR: 22778 Submitted by: David <ddavid@ican.net>
* | | - Move the second stop() of process 'p' in issignal() to be after we sendjhb2001-04-021-3/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | SIGCHLD to our parent process. Otherwise, we could block while obtaining the process lock for our parent process and switch out while we were in SSTOP. Even worse, when we try to resume from the mutex being blocked on our p_stat will be SRUN, not SSTOP. - Fix a comment above stop() to indicate that it requires that the proc lock be held, not a proctree lock. Reported by: markm Sleuthing by: jake
* | | Regen.n_hibma2001-04-022-2/+18
| | |
* | | Add Agate Q-Drive.n_hibma2001-04-021-0/+4
| | | | | | | | | | | | Submitted by: Ian Cartwright <ian351c@home.com>
* | | Regen.n_hibma2001-04-022-8/+204
| | |
* | | Sync with NetBSD usbdevsn_hibma2001-04-021-16/+56
| | |
* | | Do not override `realinstall' target, use ${PROGNAME}.ru2001-04-021-5/+1
| | |
* | | Do not override `realinstall' target, use ${PROGNAME}.ru2001-04-021-6/+3
| | |
* | | Introduce ${PROGNAME}, the name that the program will be installed as,ru2001-04-022-0/+8
| | | | | | | | | | | | | | | | | | if different from ${PROG}. (The name PROGNAME was stolen from NetBSD.) Reviewed by: bde
* | | Add support for MODULES_OVERRIDE. This is a list of modules to buildimp2001-04-026-0/+19
| | | | | | | | | | | | | | | | | | | | | | | | | | | instead of all of them. You can put this in /etc/make.conf or in makeoptions. Reviewed by: arch@ # docs to follow.
* | | Backout revision 1.6 (removed the NOSHARED bit.)ru2001-04-021-0/+1
| | | | | | | | | | | | | | | | | | | | | These must be compiled static so that it is possible to use them early in the boot process. Requested by: imp
* | | Removed the NOSHARED bit.ru2001-04-021-1/+0
| | |
* | | Fix a grammar bogon.dd2001-04-021-1/+1
| | |
* | | Allow enabling soft updates (with -U) on a new filesystem.obrien2001-04-023-6/+18
| | | | | | | | | | | | | | | | | | | | | [I first added this functionality, and thought to check prior art. Seeing OpenBSD had already done this, I changed my addition to reduce the diffs between the two and went with their option letter.] Obtained from: OpenBSD
* | | o Correct an ACL implementation bug that could result in a system panicrwatson2001-04-021-2/+12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | under heavy use when default ACLs were bgin inherited by new files or directories. This is done by removing a bug in default ACL reading, and improving error handling for this failure case: - Move the setting of the buffer length (len) variable to above the ACL type (ap->a_type) switch rather than having it only for ACL_TYPE_ACCESS. Otherwise, the len variable is unitialized in the ACL_TYPE_DEFAULT case, which generally worked right, but could result in failure. - Add a check for a short/long read of the ACL_TYPE_DEFAULT type from the underlying EA, resulting in EPERM rather than passing a potentially corrupted ACL back to the caller (resulting "cleaner" failures if the EA is damaged: right now, the caller will almost always panic in the presence of a corrupted EA). This code is similar to code in the ACL_TYPE_ACCESS handling in the previous switch case. - While I'm fixing this code, remove a redundant bzero() of the ACL reader buffer; it need only be initialized above the acl_type switch. Obtained from: TrustedBSD Project
* | | Hook the extattr_get_file.2 manual page into the build. Add MLINKSdd2001-04-011-1/+3
| | | | | | | | | | | | for extattr_set_file.2 and extattr_delete_file.2.
* | | A manual page for the extattr_get_file, extattr_set_file, anddd2001-04-011-0/+154
| | | | | | | | | | | | | | | | | | | | | extattr_delete_file system calls. Reviewed by: rwatson, ru Approved by: nik
* | | Allow users to override the default map type used for building maps.gshapiro2001-04-011-2/+4
| | |
* | | The userdb database is different from the rest of the databases. It *must*gshapiro2001-04-011-2/+6
| | | | | | | | | | | | | | | | | | be a btree. PR: bin/26149
* | | Don't assume challenges and responses don't contain embedded '\0's.brian2001-04-014-15/+12
| | | | | | | | | | | | | | | | | | | | | | | | Mschapv2 response generation may produce embedded NULs... causing us to send a bogus response to the radius server and end up failing the client's valid response. Problem pointed out by: Eugene Vigovskiy <vigov@com2com.ru>
* | | Remove grep from the fixit floppy. This should free enough space to getjhay2001-04-013-3/+3
| | | | | | | | | | | | the snaps going again.
* | | Add spaces around operators.obrien2001-04-018-244/+248
| | | | | | | | | | | | | | | It's OK, the Project and afford them now -- they aren't as expensive as they used to be.
* | | Correct a comment.obrien2001-04-011-1/+1
| | |
* | | Try to untangle some of the #ifdef spaghetti.obrien2001-04-012-12/+12
| | | | | | | | | | | | | | | | | | Also, looking to the future, don't assume all the world is an i386 and all its disk layout brain damage will be repeated by other platforms. So all the diking out if we are an Alpha, becomes adding in if we are an i386.
* | | Add back <err.h> for warn().obrien2001-04-011-0/+1
| | | | | | | | | | | | | | | (of course it's pretty stupid to call it, as printf doesn't work w/in sysinstall, and sysinstall is the only consumer of libdisk)
* | | Quiet warnings on the Alpha.obrien2001-04-012-3/+11
| | |
* | | Add back <err.h> for warn().obrien2001-04-011-0/+1
| | | | | | | | | | | | | | | (of course it's pretty stupid to call it, as printf doesn't work w/in sysinstall, and sysinstall is the only consumer of libdisk)
* | | Give a little more variety in the /etc/exports example.obrien2001-04-012-4/+4
| | |
* | | Make an attempt to get the asr driver to compile on Alpha by fixing some i386scottl2001-04-012-1/+15
| | | | | | | | | | | | | | | specific bogons. Compile with -O0, as anything higher gives the compiler a fit. No idea if this driver will actually work on Alpha, though.
* | | make code use strxxx() callsalfred2001-04-011-11/+3
| | | | | | | | | | | | Glanced at by: imp
* | | Correct typo.nyan2001-04-011-4/+4
| | |
* | | Merged from sys/i386/i386/bioscall.s revision 1.9 and 1.10.nyan2001-04-011-3/+7
| | |
* | | Remove NOSHARED.iwasaki2001-04-011-1/+0
| | | | | | | | | | | | | | | | | | | | | | | | The usr.sbin/acpi/ utilities should be compiled non-static. It just followed the usr.sbin/pccard/Makefile.inc way last time. Pointed out by: ru and msmith Committed at: BSD HANAMI in Japan 2001
* | | Regen after adding linux_sched_get_priority_max() andalc2001-04-013-7/+15
| | | | | | | | | | | | linux_sched_get_priority_min().
* | | Merged from sys/i386/isa/clock.c revision 1.171.nyan2001-04-013-9/+3
| | |
* | | Merged from sys/i386/i386/machdep.c revision 1.446.nyan2001-04-012-2/+4
| | |
* | | Merged from sys/dev/aic/aic_isa.c revision 1.7.nyan2001-04-011-1/+5
| | |
* | | Add linux_sched_get_priority_max() and linux_sched_get_priority_min(): Thealc2001-04-012-2/+58
| | | | | | | | | | | | policy parameter requires translation.
* | | Merged from sys/i386/apm/apm.c revision 1.121.nyan2001-04-011-6/+7
| | |
* | | Merged from sys/conf/options.i386 revision 1.144.nyan2001-04-011-0/+1
| | |
* | | Merged from sys/conf/files.i386 revision 1.350 and 1.354.nyan2001-04-011-1/+1
| | |
* | | Indicate that sh(1) has an 'if' builtin command.dd2001-04-011-1/+1
| | | | | | | | | | | | PR: 26193
* | | Change ahc_update_pending_scbs() so that it safe to be calledgibbs2001-04-011-0/+11
| | | | | | | | | | | | | | | even if the controller is not paused. This prevents SCB list corruption that was introduced in the last checkin.
OpenPOWER on IntegriCloud