summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Allow dump device be configured as early as possible using loader(8) tunable.sobomax2002-01-214-6/+30
| | | | | | | This allows obtaining crash dumps from the panics occured during late stages of kernel initialisation before system enters into single-user mode. MFC after: 2 weeks
* Add support for Linksys WDT11 PCI adaptors.brooks2002-01-211-0/+1
| | | | Submitted by: Eric Liedtke <eliedtke@apogeetelecom.com>
* Remove some unused code, in line with NetBSD's version.joe2002-01-201-18/+0
|
* Merge from NetBSD:joe2002-01-201-1/+16
| | | | | | | revision 1.125 date: 2000/09/23 21:00:10; author: augustss; state: Exp; lines: +19 -3 Avoid "bandwidth reclamation" for control transfers. The kue device chokes on it.
* Merge from NetBSD:joe2002-01-202-2/+41
| | | | | | | | | | uhci.c: -r1.124 uhcireg.h: -r1.13 date: 2000/08/13 18:20:14; author: augustss; state: Exp; Fix race condition when unlinking xfers. Thanks to IWAMOTO Toshihiro <iwamoto@sat.t.u-tokyo.ac.jp> for analyzing the problem and suggesting a fix. Fixes PR 10662.
* MFS 1.536.2.52 (partial) and 1.536.2.70: kgzip loader if i386 (only).matusita2002-01-201-0/+4
| | | | | | | | | | 5.0-CURRENT-20020121-JPSNAP was failed to build since kern.flp has no space. There is already a hack to kgzip loader, and it makes: -r-xr-xr-x 1 root wheel 163840 Jan 21 07:40 loader* -r-xr-xr-x 1 root wheel 90121 Jan 21 08:06 loader.kgz* 73719 bytes of free spaces to us.
* use mutex pools for "struct file" locking.alfred2002-01-202-7/+6
| | | | fix indentation of FILE_LOCK/UNLOCK macros while I'm here.
* use mutex pool mutexes for uidinfo locking.alfred2002-01-202-16/+19
| | | | | | | replace mutex_lock calls on uidinfo with macro calls: mtx_lock(&uidp->ui_mtx) -> UIDINFO_LOCK(uidp) Terry Lambert <tlambert2@mindspring.com> helped with this.
* snprintf bloat -> strlcpyache2002-01-201-2/+3
| | | | | | Add getpwnam return check Approved by: des, markm
* Merge from NetBSD:joe2002-01-202-49/+162
| | | | | | | | | | | | uhci.c: -r1.123 (and a tiny bit of -r1.92) uhcivar.h: -r1.32 date: 2000/08/13 16:18:09; author: augustss; state: Exp; Implement what in Intel-speech is known as "bandwidth reclamation". It means that we continously poll USB devices that have a pending transfer instead of polling just once every ms. This speeds up some transfers at the expense of using more PCI bandwidth.
* Check the return value from read() when reading the CR/LF at the end of ades2002-01-201-2/+4
| | | | | | | chunk. PR: bin/33608 MFC after: 2 weeks
* Mark uploads as O_WRONLY, not O_RDONLY.des2002-01-201-2/+6
| | | | | PR: misc/34043 MFC after: 2 weeks
* o Remove the unused vestiges of JOBST_JOBQPROC andalc2002-01-201-15/+1
| | | | | the per-thread jobtorun queue. o Use TAILQ_EMPTY() instead of TAILQ_FIRST(...) == NULL.
* WARNS=4 fixes.markm2002-01-208-19/+22
| | | | OK'ed by: des
* Add `-h' to the chown command so that symbolic links copied fromiedowse2002-01-201-1/+1
| | | | | | | | the skeleton directory are chown'd to the new user. PR: bin/10601 Submitted by: Adrian Filipi-Martin <adrian2ubergeeks.com@gosub.cstone.net> MFC after: 1 month
* Minor typo fix: uquad_t -> u_quad_t.yar2002-01-201-1/+1
|
* Remove very outdated comment from the Bugs section that states thatscottl2002-01-201-3/+0
| | | | | | | the driver cannot do U160. Submitted by: ladisalv.kostal@fem.uniag.sk MFC after: 1 day
* from select(2):billf2002-01-201-3/+9
| | | | | | | | | Any of readfds, writefds, and exceptfds may be given as nil pointers if no descriptors are of interest. neither wfds nor efds were of interest so now they are nil. also, do a little better then making an educated guess for nfds.
* Merge from NetBSD:joe2002-01-202-22/+23
| | | | | | | | uchireg.h: -r1.12 uchi.c: -r1.121 date: 2000/07/23 19:43:38; author: augustss; state: Exp; Be a little more explicit and careful about setting links in TDs and QHs.
* Correct the majors entry for 'iir'. 163 is vacated now.msmith2002-01-201-2/+2
|
* Add the 'iir' driver, for the Intel Integrated RAID controllers andmsmith2002-01-2011-0/+3612
| | | | | | | | prior ICP Vortex models. This driver was developed by Achim Leubner of Intel (previously with ICP Vortex) and Boji Kannanthanam of Intel. Submitted by: "Kannanthanam, Boji T" <boji.t.kannanthanam@intel.com> MFC after: 2 weeks
* ICP have been acquired by Intel, and their driver is now the Intelmsmith2002-01-201-1/+1
| | | | | | | Integrated RAID driver, supported by <boji.t.kannanthanam@intel.com> and <achim.leubner@intel.com>. Submitted by: "Kannanthanam, Boji T" <boji.t.kannanthanam@intel.com>
* The Libretto L series has no $PIR table, but does have a _PIR table.imp2002-01-203-39/+66
| | | | | | | | | | | | | This typo keeps us from properly routing an interrupt for CardBus bridges on this machine. So, now we look for $PIR and then _PIR to cope. With these changes, the Libretto L1 now works properly. Evidentally, the idea comes from patch that the Japanese version of RedHat (or against a Japanese version of Red Hat), but my Japanese isn't good enough to to know for sure. Reported by: Hiroyuki Aizu-san <eyes@navi.org> # This may be an MFC candidate, but I'm not yet sure.
* Prevent overflowing the buffer that stores the command arguments.mikeh2002-01-201-4/+8
| | | | | | PR: bin/19422 Not objected to by: -audit MFC after: 3 weeks
* o Revision 1.99 ("KSE Milestone 2") left the aio daemonsalc2002-01-201-2/+2
| | | | | | | | | sleeping on a process object but changed the corresponding wakeup()s to the thread object. The result was that non-raw aio ops waited for an aio daemon to timeout before action was taken. Now, we sleep on the thread object. PR: kern/34016
* Link mail(1) to mailx per POSIX. Mail(1) isn't 100% POSIX compliant,mikeh2002-01-192-4/+7
| | | | | | but it is pretty close. Not objected to by: -standards
* I've been meaning to do this for a while. Add an underscore to thedillon2002-01-1915-58/+58
| | | | | | | | time_to_xxx() and xxx_to_time() functions. e.g. _time_to_xxx() instead of time_to_xxx(), to make it more obvious that these are stopgap functions & placemarkers and not meant to create a defacto standard. They will eventually be replaced when a real standard comes out of committee.
* Really back out ache's commits. These files are now precisely as they weredes2002-01-194-13/+17
| | | | twentyfour hours ago, except for RCS ids.
* Back out PAM_CRED_ERR additionache2002-01-192-2/+0
|
* Back out recent changesache2002-01-195-34/+22
|
* MFen (1.261 --> 1.263).kuriyama2002-01-191-1/+27
|
* Remove bogus entry.kuriyama2002-01-191-4/+0
|
* MFen (1.260 --> 1.261; order changes only).kuriyama2002-01-191-186/+187
|
* New release notes: ARCNET support, cm driver.bmah2002-01-194-0/+28
|
* New release notes: dc(4) supports VLANs, man(1) no longer SUID man,bmah2002-01-192-0/+34
| | | | /etc/pam.d/.
* Alphabetize the kernel changes section by manpage reference orbmah2002-01-192-330/+334
| | | | keyword, where possible.
* Turn on pam_opie by default. It should not affect non-OPIE users.ache2002-01-191-1/+1
|
* If user not exist in OPIE system, return failure immediately insteadache2002-01-191-1/+1
| | | | | of producing fake prompts with random numbers which can be detected by potential intruder in two tries and totally confuse non-OPIE users.
* Back out second right-now-expired password check in pam_sm_chauthtok,ache2002-01-191-2/+1
| | | | old expired password assumed there
* Turn on pam_opie by default. It not affect non-OPIE usersache2002-01-191-2/+1
|
* Add PAM_CRED_ERR as valid failure caseache2002-01-192-0/+2
|
* Previous commit was incomplete, useache2002-01-191-1/+1
| | | | | "[default=ignore success=done cred_err=die]" options instead of "required"
* Previous commit was incomplete, use new error code PAM_CRED_ERR toache2002-01-191-2/+1
| | | | indicate die case, different from PAM_SUCCESS and PAM_AUTH_ERR
* Add flags 0x10000 to IO Data WN-B11/PCM's entry. Evidentally, theyimp2002-01-191-1/+1
| | | | | | | changed firmware and the new cards don't work without this. Submitted by: ume MFC after: 3 days
* Remove explaining comment and pam_unix commented out, now pam_unix can beache2002-01-191-4/+1
| | | | chained with pam_opie
* Rewrite 'pwok' fallback in the way it can be properly chained with pam_unixache2002-01-191-19/+10
| | | | | | Replace snprintf %s with strlcpy Check for NULL returned from getpwnam()
* Lock the caller process if the pid passed to getsid() or getpgid()tanimura2002-01-191-4/+6
| | | | equals to zero.
* Call opieunlock() only if we skip opieverify() partache2002-01-191-2/+3
|
* MFen (1.259 --> 1.260).kuriyama2002-01-191-1/+10
|
* For getsid(), return the sid stored in struct session. This preventstanimura2002-01-191-1/+1
| | | | | | panic in case where a session has no session leader. Inspired by: Solaris 8
OpenPOWER on IntegriCloud