summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Regen.jhb2003-04-259-102/+9
|
* Oops, the thr_* and jail_attach() syscall entries should be NOPROTO ratherjhb2003-04-253-21/+21
| | | | than STD.
* Whitespace fix up, no content changes. Translators can ignore this.bmah2003-04-251-41/+42
|
* Update HTT support text.bmah2003-04-251-3/+9
|
* Remove harmless invalid cast.jake2003-04-252-2/+2
| | | | Sponsored by: DARPA, Network Associates Laboratories
* s/filesystem/file system/bmah2003-04-252-18/+18
| | | | | | | | s/bootloader/boot loader/ I hate search and replace sweeps like this as much as anyone else, but in each case I used both alternatives within a single document, so I'm trying to enforce some internal consistency.
* New release notes: i386 boot loader 1.5TB limit, OpenSSH 3.6.1p1.bmah2003-04-252-2/+30
| | | | Modified release notes: Add note about 1.5TB limit to sysinstall note.
* The documented login.conf variable for setting the login prompt isdes2003-04-251-1/+1
| | | | | | | | "login_prompt". This makes more sense than "prompt" which is what login actually used, so change the code to match the documentation. PR: docs/51396 MFC in: 3 days
* Repair the UFS2 superblock location consistency check so that it succeedstjr2003-04-251-1/+1
| | | | | | | on valid superblocks instead of issuing the error "not a BSD filesystem". fs_sblockloc is a byte offset, not a fragment number. This change makes quot work properly on UFS2 filesystems, which is important now that UFS2 is the default.
* New release note: chown(8)/chgrp(1) -v -v.johan2003-04-252-0/+8
|
* Forced commit to note that WARNS was changed in the prev commit sincejohan2003-04-250-0/+0
| | | | this code is WARNS=5 clean. Try to keep it that way.
* Make fxp(4) INTR_MPSAFE (but do not enable MPSAFE just yet):njl2003-04-252-51/+134
| | | | | | | | | | | | | | | | | | | | | | | | | | | - Add fxp_start_body() and change fxp_start() to just acquire locks and then call fxp_start_body(). Places that would call fxp_start() with locks held (mutex recursion) now call fxp_start_body() directly. Remove MTX_RECURSE flag from sc_mtx. [gallatin] - Change fxp_attach() to work without the softc lock, saving interrupt hooking until the head of fxp_attach(). - Call ether_ifattach() before overriding ifp parameters. This reverts part of 1.155. - Remove multiple error paths in fxp_attach(). - Teardown interrupt in fxp_detach() before unlocking the softc. - Make sure mutex is not held in fxp_release() - Delete the miibus instance and/or self in fxp_release(), not in fxp_detach(). This can happen if attach fails partway through. - Move ifmedia_removeall to fxp_release() since attach may fail after media have been allocated. - Add locking to fxp_suspend, fxp_resume, fxp_start, fxp_intr, fxp_poll, fxp_tick, fxp_ioctl, fxp_watchdog. - Pass in ifp to fxp_intr_body since its callers sometimes already use it. - Add compatibility define for INTR_MPSAFE for 4.x. [gallatin] - You don't need to bzero softc. Ideas from: gallatin, mux Tested by: >400M packets of dd/ssh, NFS, ping on i386 UP
* Similar to chmod(1); make -v -v mean very verbose and showjohan2003-04-254-6/+44
| | | | | | | | the old and new uid/gid. PR: 41341 Submitted by: Edward Brocklesby <nighthawk@unrealircd.com> Reviewed by: bde@ (an older version)
* Restore bzip2(1) support in loader(8) after Peter's renames ofru2003-04-251-2/+11
| | | | malloc() to Malloc(), and free() to Free(), in zalloc_malloc.c.
* - Relax the Giant required in vm_page_remove().alc2003-04-251-3/+2
| | | | | | | | | | - Remove the Giant required from vm_page_free_toq(). (Any locking errors will be caught by vm_page_remove().) This remedies a panic that occurred when kmem_malloc(NOWAIT) performed without Giant failed to allocate the necessary pages. Reported by: phk
* Removing comment in some text files for fixit floppy overflow.kuriyama2003-04-251-3/+5
| | | | Approved by: re (murray)
* Import latest changes from the vendor. This also is reported to fix thescottl2003-04-254-38/+116
| | | | | | | driver at long last! Many thanks to vaidas.damosevicius@if.lt for keeping this issue alive and pursuing Intel for a fix, Intel/ICP for working on the driver, and Sergey Osokin for bringing the original patches up to 5-CURRENT.
* Change default to be 'process all events before calling daemon.'imp2003-04-251-2/+4
| | | | | | | | Also, put a small work around into devd to prevent a hang on boot this would cause because select used to return 2 rather than 0 for no evetnts due to a bug I fixed a few days ago in subr_bus.c. I'll remove this workaround May 7th. You have until then to upgrade your kernel if you want to run a new devd with an older kernel.
* Add warning about a potential hang on boot at devd after 20030507 ifimp2003-04-251-0/+10
| | | | | you have an old kernel and a new userland. I've just committed a fix for devd to work around the kernel bug, but that goes away on May 7th.
* Add an argument to get_mcontext() which specified whether thedeischen2003-04-2513-52/+52
| | | | | | | | | | | | | | | | | | | | syscall return values should be cleared. The system calls getcontext() and swapcontext() want to return 0 on success but these contexts can be switched to at a later time so the return values need to be cleared in the saved register sets. Other callers of get_mcontext() would normally want the context without clearing the return values. Remove the i386-specific context saving from the KSE code. get_mcontext() is not i386-specific any more. Fix a bad pointer in the alpha get_mcontext() code. The context was being bcopy()'d from &td->tf_frame, but tf_frame is itself a pointer, so the thread was being copied instead. Spotted by jake. Glanced at by: jake Reviewed by: bde (months ago)
* Connect libpthread to the (i386) world. It is currently installeddeischen2003-04-251-1/+4
| | | | | | | as libkse and will once again be renamed libpthread after more testing. Approved by: re
* Remove the %gs restoring hack (already commented out).deischen2003-04-252-12/+2
| | | | | | | Don't install man pages. Temporarily (again) rename the library to libkse. It will be put back to libpthread after more wide-spread testing.
* Update the DRM to the latest from DRI CVS. Includes some bugfixes and removalanholt2003-04-2534-2557/+437
| | | | | | of the infrastructure for the gamma driver which was removed a while back. The DRM_LINUX option is removed because the handler is now provided by the linux compat code itself.
* Back out previous delta to fix fsck on filesystems without an fstab entry,jmallett2003-04-251-1/+23
| | | | | | | | | | | | | where we want to take the disklabel filesystem type of "4.2BSD" and use fsck_4.2bsd on those filesystems. Add a comment about why the code is there, now that we know: * XXX This is a kludge to make automatic filesystem type guessing * from the disklabel work for "4.2BSD" filesystems. It does a * very limited subset of transliteration to a normalised form of * filesystem name, and we do not seem to enforce a filesystem * name character set.
* Include altkstack pages in the RSS regardless of whether the processtjr2003-04-251-8/+6
| | | | is swapped out. Pointed out by jhb.
* In compat mode, we `redispatch' the lookup. It is probably a goodnectar2003-04-241-0/+1
| | | | | | | | idea to re-initialize `struct passwd', because e.g. pw_class might get set by one module, but not by another. Add another call to the internal pwd_init function to accomplish this. Sponsored by: DARPA, Network Associates Laboratories
* Add an ioctl handler for the DRM. This removes the need for the DRM_LINUXanholt2003-04-242-0/+17
| | | | option, which has been a source of frustration for many users.
* Regen.jhb2003-04-249-12/+174
|
* Document support for the new 'U' flag, which was implemented back in Marchgad2003-04-241-6/+17
| | | | | | as revision 1.64 of newsyslog.c. I plan to MFC these changes next week. MFC after: 1 week
* Fix the thr_create() entry by adding a trailing \. Also, sync up thejhb2003-04-243-12/+12
| | | | MP safe flag for thr_* with the main table.
* VOP_FSYNC() expects to be called with the vnode locked, so lock fvp intruckman2003-04-241-1/+9
| | | | | | nfs_rename() before calling VOP_FSYNC() and unlock fvp immediately after. Reviewed by: bde
* Fix a bug with df on large (>1TB) nfsv3 file servers on 32 bit clientpeter2003-04-241-11/+23
| | | | | | | machines where the 'long' number of blocks in struct statfs wont fit. Instead of chosing an artificial 512 byte block size, simply scale it up until we avoid an overflow. NFSv3 reports the sizes in bytes, and the blocksize is a figment of nfsclient's imagination.
* Catch up with nsdispatch.c: nsdispatch(3) is now `hidden' bynectar2003-04-241-1/+3
| | | | | | namespace.h. Sponsored by: DARPA, Network Associates Laboratories
* Don't complain about missing NSS methods when built statically. It isnectar2003-04-241-1/+3
| | | | | | annoying and not very useful. Sponsored by: DARPA, Network Associates Laboratories
* Fail to mount a device if the bytes per sector in the BPB is less thanjhb2003-04-241-0/+6
| | | | DEV_BSIZE or if the number of FAT sectors is zero.
* Use $ipnat_program instead of the hardcoded path, which was wronmtm2003-04-241-1/+1
| | | | | | | anyways. Approved by: markm (mentor) (implicit) Submitted by: leafy <leafy@leafy.idv.tw>
* Catch up with nsdispatch.c: nsdispatch(3) is now `hidden' bynectar2003-04-242-4/+8
| | | | | | namespace.h. Sponsored by: DARPA, Network Associates Laboratories
* Catch up with nsdispatch.c: nsdispatch(3) is now `hidden' bynectar2003-04-242-3/+3
| | | | | | namespace.h. Sponsored by: DARPA, Network Associates Laboratories
* Make P_PROTECTED not conflict with P_STOPPED_SIG. Replacewes2003-04-241-2/+1
| | | | | | P_UNUSED100000 which is *truly* unused, until now. Submitted by: Robert Drehmel <robert@zoot.drehmel.com>
* Fix printf warnings for i386 with PAE.simokawa2003-04-242-14/+16
| | | | Submitted by: harti
* init_nsm() is executed after a call to daemon(*, 0), so error andghelmer2003-04-241-2/+4
| | | | | | warning messages should be logged rather than sent to /dev/null. PR: bin/45461
* Fix a typo in UINT_MAX definition.kan2003-04-241-1/+1
|
* Forced commit to note that the previous commit was made in response todes2003-04-240-0/+0
| | | | PR: bin/51245
* Remove a bogus null password check which assumed that a user with an emptydes2003-04-241-2/+8
| | | | | | password must necessarily have an empty pwd->pw_passwd. Also add a check that prevents users from setting a blank password unless the nullok option was specified. Root is still allowed to give anyone a blank password.
* Add nullok to the pam_unix line.des2003-04-241-1/+1
|
* It seems that 1 was not a magic value as I thought, but a coincidence.des2003-04-241-2/+2
| | | | | | | | Instead of applying the adjustment to processes with a start time of 1, apply it to all processes with a start time of less than 3600. None of this would be necessary if the start times were recorded in ticks instead of seconds and microseconds.
* Do a better job of calculating the RSS for swapped-out processes:tjr2003-04-241-3/+9
| | | | | | | | don't include the kernel stacks of swapped-out threads in the page count, but do include the alternate kernel stack. jhb provided some helpful comments on this. PR: 49102
* device s/acpica/acpi/hmp2003-04-241-1/+1
| | | | | Noticed by: Stefan Farfeleder <stefan@fafoe.dyndns.org> Approved by: des (mentor)
* Aristotle dies in 02 Oct 322 BC not in March.maxim2003-04-241-1/+0
| | | | | | PR: misc/46440 Submitted by: Sergey A. Osokin <osa@freebsd.org.ru> MFC after: 4 days
* Fix printf warning for RELENG_4.simokawa2003-04-241-0/+4
|
OpenPOWER on IntegriCloud