summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Use __packed instead of __attribute__((__packed__)).mux2003-03-221-1/+3
|
* Modified release note: SA-03:06 (minor wording tweak).bmah2003-03-212-2/+2
|
* New errata/release notes: SA-03:06.bmah2003-03-213-0/+18
|
* Mitigate deadlock situation pending a more complete solution.phk2003-03-212-2/+7
|
* Added missing dependency on rc4.ru2003-03-211-0/+1
| | | | Reviewed by: imp
* wlan module depends on rc4 module, so provide one.ru2003-03-212-1/+4
| | | | Reviewed by: imp
* Fix some memory leaks in the failure cases after trying to look up thejhb2003-03-211-6/+9
| | | | | | | OSF/1 runtime loader. Also, use td_ucred instead of p_ucred. Tested by: gallatin Reviewed by: rwatson
* Added support for 82541 and 82547 based adapters.pdeuskar2003-03-217-623/+1974
| | | | | | | - These have Intel gigabit PHY - 82547 uses CSA interface MFC after: 1 week
* Sync up linux and svr compat elf fixup functions for exec(). Thesejhb2003-03-213-22/+23
| | | | | | | | | functions are now all basically identical except that alpha linux uses Elf64 arguments and svr4 and i386 linux use Elf32. The fixups include changing the first argument to be a register_t ** to match the prototype for fixup functions, asserting that the process in the image_params struct is always curproc and removing unnecessary locking to read credentials as a result, and a few style fixes.
* - Use if_broadcastaddr from struct ifnet rather than relying onmdodd2003-03-219-15/+16
| | | | | | | extern 'etherbroadcastaddr'. - Make 'etherbroadcastaddr' static. Reviewed by: imp
* Why doesn't anybody ever tell me anything? When did we get a libsbuf ?phk2003-03-211-5/+3
| | | | | | | | Geeze, I'll just crawl back into the kernel where I know what's going on... Use libsbuf instead of pulling a file in from the kernel. Taught by: jhb
* Add a sysctl node allowing the specification of an address mask to usemdodd2003-03-211-2/+9
| | | | when replying to ICMP Address Mask Request packets.
* Add comments regarding the ICMP timestamp fields.mdodd2003-03-211-4/+4
|
* Assignment could be NULL, check.mdodd2003-03-211-1/+1
|
* Fixed a typo in ${.CURDIR} spelling, fatal on systemsru2003-03-211-12/+5
| | | | | | | | | without the /sys symlink pointing to the current tree. (Revision 1.2 made it non-fatal, but anyway.) Apply style.Makefile(5). Fixed ``make checkdpadd''.
* Added GEOM library to the bsd.libnames.mk namespace.ru2003-03-211-0/+1
|
* Duh! Use correct number ../phk2003-03-211-1/+1
| | | | spotted by: imp
* Use the target arhitecture's disktab(5) file.ru2003-03-211-0/+1
|
* Add a target for the creation of a /etc/shells map and add it torobert2003-03-211-2/+12
| | | | the maps which are built by default.
* Call endwin() to restore terminal state just before exiting.keramida2003-03-211-0/+2
| | | | Approved by: phk
* Follow new upcall quantum code in kernel.davidxu2003-03-211-5/+2
|
* Map VAPPEND to VWRITE in nfsspec_access() - VAPPEND is never set in thetjr2003-03-211-0/+7
| | | | | mode returned by VOP_GETATTR. This fixes incorrect "Permission denied" errors when trying to append to a file on an NFSv2 mount.
* Attempt to automatically read in kernel module symbols when a liveiedowse2003-03-214-2/+330
| | | | | | | | | | | | | | | | | | | | | | | | or dead kernel core is loaded into gdb. This extends gdb's existing shared library support, so the "info sharedlibrary", "sharedlibrary" and "nosharedlibrary" commands can be used to view and change the list of loaded symbol files. The current implementation is more than a kludge however, and it will not always manage to find the .ko.debug file corresponding to the loaded module. In particular, for modules whose build directory cannot be easily guessed from the module name such as all the netgraph modules, the debug version of the .ko will not be found automatically. The logic for finding the module file first attempts to guess at the module build directory by parsing the version[] string. Then using that directory ($DIR), it tries the following paths in turn: ./<module>.ko.debug ./<module>.ko $DIR/<module>.ko.debug $DIR/<module>.ko /boot/kernel/<module>.ko.debug /boot/kernel/<module>.ko Approved by: obrien, mp
* Pass the target machine architecture down to disklabel(8).ru2003-03-203-31/+13
| | | | | | | | Do it so that systems without the -m option in disklabel(8), e.g. 5.0-RELEASE, can still build current snapshots. While here, drop the -s option from doFS.sh; we have not been using the .size files for a long time.
* Clean up some warnings that don't result in a change in the object file:dwmalone2003-03-201-17/+20
| | | | | | | Constness, missing prototypes, non-ansi prototypes, missing initialisers, unnecessary declarations, shadowing. Reviewed by: md5
* Use td->td_ucred instead of td->td_proc->p_ucred.jhb2003-03-2010-17/+16
|
* Minor fixes to ffs_fserr():jhb2003-03-201-3/+3
| | | | | - Assume that curthread is not NULL. It never is in -current. - Use td_ucred instead of p_ucred.
* Use td_ucred of curthread instead of p_ucred of curproc. This requiredjhb2003-03-201-17/+17
| | | | | changing sem_perm() and sem_hasopen() to take a thread instead of a proc for the first argument.
* Merge conflictsjedgar2003-03-202-5/+30
|
* Extend CPU_ATHLON_SSE_HACK to cover a few more revisions of Athlon CPUs.dwmalone2003-03-202-2/+4
| | | | | Submitted by: Jon Kuster <kwsn@earthlink.net> MFC after: 2 weeks
* Add a rudimentary gstat(8) to the system.phk2003-03-203-0/+252
| | | | | This is a small curses based program which shows the diskactivity inside GEOM.
* This commit was generated by cvs2svn to compensate for changes in r112439,jedgar2003-03-201-13/+12
|\ | | | | | | which included commits to RCS files with non-trunk default branches.
| * Import of PKCS #1 security fix.jedgar2003-03-201-13/+12
| | | | | | | | http://www.openssl.org/news/secadv_20030319.txt
* | Distinguish between register sets that depend on ac97 caps (wr0, wr1,orion2003-03-201-17/+38
| | | | | | | | msgd) and those that don't (dxs0-3) when reporting format caps.
* | Use atomic operations to increment and decrement the refcountmux2003-03-206-22/+23
| | | | | | | | | | | | | | in busdma tags. There are currently no tags shared accross different drivers so this isn't needed at the moment, but it will be required when we'll have a proper newbus method to get the parent busdma tag.
* | New release/errata notes: SA-03:05.bmah2003-03-203-0/+18
| |
* | Correct vendor id for ALC101.orion2003-03-201-1/+1
| |
* | Add a -g option to specify a default login group.mtm2003-03-202-10/+22
| | | | | | | | Approved by: markm (mentor)(implicit)
* | Add support for OpenBSD extensions to the $CVSROOT/config syntax.des2003-03-201-0/+21
| | | | | | | | | | Approved by: peter Obtained from: OpenBSD
* | Backout the getcwd changes, a more comprehensive effort will be needed.phk2003-03-202-377/+412
| |
* | Enable the FPU on first use per-thread and save state across contextgrehan2003-03-206-117/+101
| | | | | | | | | | | | | | | | | | | | | | switches. Not as lazy as it could be. Changing FPU state with sigcontext still TODO. fpu.c - convert some asm to inline C, and macroize fpu loads/stores swtch.S - call out to save/restore fpu routines trap.c - always call enable_fpu, since this shouldn't be called once the FPU has been enabled for a thread genassym.c - define for pcb fpu flag
* | - Add PCI ID for Paddington i/o controller, used in old G3'sgrehan2003-03-201-2/+4
| | | | | | | | | | - Add ID for the Intrepid i/o controller, used in new 12"/17" PowerBooks - put IDs in chronological order
* | According to C99 decimal_point can't be emptyache2003-03-201-4/+1
| |
* | According to C99 decimal_point can't be the empty string, mention it.ache2003-03-201-1/+2
| |
* | decimal_point can't be "" according to C99, so set it to standard "."ache2003-03-201-1/+6
| | | | | | | | in that case.
* | Correct typo in function declaration (s/if_dont/if_done).ceri2003-03-191-1/+1
| | | | | | | | | | | | PR: docs/50136 Submitted by: Scott Mitchell <scott+freebsd@fishballoon.org> MFC After: 4.8
* | The flags passed in to _ftp_get_proxy may be nullmtm2003-03-191-1/+1
| | | | | | | | Approved by: des, markm (mentor)(implicit)
* | Fix for ia64/48024 - ensure function pointer equality across elfarun2003-03-191-52/+77
| | | | | | | | | | | | | | | | | | | | | | | | objects. Programs such as sshd depend on two pointers to the same function being equal in a given process. However, the current ia64 implementation ensures that they're equal when both the pointers are instantiated in the same ELF object. The attached patch ensures that they're equal irrespective of where they're instantiated. Reviewed by marcel@ (mentor) and kan@
* | Enable locale support in strtod() and dtoa().das2003-03-191-0/+1
| | | | | | | | | | Noticed by: ache Reviewed by: mike (mentor)
* | This commit was generated by cvs2svn to compensate for changes in r112415,das2003-03-195-51/+29
|\ \ | | | | | | | | | which included commits to RCS files with non-trunk default branches.
OpenPOWER on IntegriCloud