summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* Revert rev. 178124 as requested by kris@. Having jail id not beingdelphij2008-06-192-18/+26
| | | | reused too frequently is useful for script controlled environment.
* Document the _arg versions of the uma_zalloc and uma_zfree functions.remko2008-06-191-1/+18
| | | | | | PR: docs/120357 Submitted by: gahr MFC after: 3 days
* Renew semaphore's pointer after wakeup since during msleepgonzo2008-06-191-0/+7
| | | | | | | sem_base may have been modified by destroying one of semaphores and semptr would not be valid in this case. PR: kern/123731
* Add myself. Better late then never.mav2008-06-191-0/+1
|
* Add myself.amdmi32008-06-191-0/+2
| | | | Approved by: miwi (mentor)
* Add myself.amdmi32008-06-191-0/+1
| | | | Approved by: miwi (mentor)
* Remove __restrict keywords from array arguments to make GCC's -std=c99 work.ed2008-06-191-2/+5
| | | | | | | | | | | | | | | | | When GCC is invoked with -std=c99, the following errors are displayed when including <spawn.h>: /usr/include/spawn.h:69: error: static or type qualifiers in abstract declarator /usr/include/spawn.h:69: error: static or type qualifiers in abstract declarator /usr/include/spawn.h:72: error: static or type qualifiers in abstract declarator /usr/include/spawn.h:72: error: static or type qualifiers in abstract declarator We'd better remove the __restrict keywords here. The same is also done in <regex.h>. Submitted by: Andrzej Tobola <ato iem pw edu pl> Reviewed by: davidxu Approved by: philip (mentor, implicit)
* Make quota knob conform to other rc(8) knobs. Keep older knob formtm2008-06-193-2/+6
| | | | | | compatibility. Requested by: Volker <volker@vwsoft.com>
* Move the check for enabled knobs further down in run_rc_command() somtm2008-06-191-14/+14
| | | | | that bogus commands cause usage information to be printed instead of diagnostics about enabling the knob.
* Process spawn attributes in POSIX document order.davidxu2008-06-191-21/+22
|
* Add roken.h to SRCS. This fixes the compilation of slc during amarius2008-06-181-0/+1
| | | | | buildworld on a host running a world built with WITHOUT_KERBEROS defined.
* Add the option stub for the Globetrotter Max 3.6 Modem.attilio2008-06-181-0/+2
| | | | Submitted by: Greg Rivers <gcr at tharned dot org>
* Print out the container lock when showing the thread state in DDB.attilio2008-06-181-0/+3
| | | | Tested by: benjsc
* Add the SMB functionality for the MCP65 chipset I happen tojoerg2008-06-181-0/+3
| | | | have in my new motherboard.
* Catch up to recentish kgdb changes:jhb2008-06-181-1/+6
| | | | | | | | - Use ptid_get_pid() rather than ptid_get_tid() (part of the changes to let 'tid' work for remote kgdb). - Add a stub kgdb_trgt_new_objfile() hook. Silence from: obrien, mips@
* Add MIPS to the list of known arches.obrien2008-06-181-1/+1
|
* handle .INF files for PCMCIA correctly that specify multiple entries inweongyo2008-06-181-7/+13
| | | | | | their [Manufacturer] sections and prevent a case that NDIS_PCI_DEV_TABLE definition was always emitted that it's only emitted once if a .INF file is for PCI.
* Implement the set and unset verbs. While here, have the manpagemarcel2008-06-182-11/+84
| | | | catch up with various changes.
* Add the set and unset verbs used to set and clear attributes formarcel2008-06-184-5/+130
| | | | | partition entries. Implement the setunset method for the MBR scheme to control the active flag.
* Bring this up to date with regard to our other section 4 and Intel manpages,brueffer2008-06-171-14/+18
| | | | also fixes a few mdoc bugs.
* Remove superfluous eofmarker.remko2008-06-171-1/+0
| | | | | | | Requested by: Jaakko Heinonen Discussed with: Jaakko, edwin Approved by: imp (mentor, implicit)
* Don't export the unused __use_pts() routine.ed2008-06-172-2/+1
| | | | | | | | | | The __use_pts() routine was once probably used by libutil to determine if we are using BSD or UNIX98 style PTY device names. It doesn't seem to be used outside grantpt.c, which means we can make it static and remove it from the Symbol.map. Reviewed by: cognet, kib Approved by: philip (mentor)
* Back out rev. 1.352 (SVN rev 179842) as phk pointed out thatbz2008-06-171-2/+2
| | | | | SRCCONF was omitted here to be able to build non standard trees with universe as well.
* For make universe, in addition to make.conf, also ignore abz2008-06-171-2/+2
| | | | | | | src.conf with possibe non-default options. Reviewed by: ru MFC after: 10 days
* Style fix.davidxu2008-06-171-1/+2
|
* Change my email address to the one from the FreeBSD project.ed2008-06-172-2/+2
| | | | Approved by: philip (mentor, implicit), davidxu
* Add POSIX routines called posix_spawn() and posix_spawnp(), whichdavidxu2008-06-178-15/+649
| | | | | | | | | can be used as replacements for exec/fork in a lot of cases. This change also added execvpe() which allows environment variable PATH to be used for searching executable file, it is used for implementing posix_spawnp(). PR: standards/122051
* - Move ether_ifdetach earlier.benno2008-06-171-2/+7
| | | | | | - Drain callouts after ether_ifdetach. Suggested by: jhb
* Remove support for RELENG_4 (__FreeBSD_version < 500039).flz2008-06-165-30/+1
| | | | MFC after: 1 day
* Install extra include files that were forgotten in original GCC 4.2.xkan2008-06-161-1/+15
| | | | | | | | import changes. PR: 124647 Submitted by: Vlad GALU MFC after: 2 days
* Change incorrect stale cookie detection in syncookie_lookup() that prematurelyups2008-06-161-1/+1
| | | | | | | declared a cookie as expired. Reviewed by: andre@, silby@ Reported by: Yahoo!
* Fix a check in SYN cache expansion (syncache_expand()) to accept packets ↵ups2008-06-161-4/+7
| | | | | | | | | | | that arrive in the receive window instead of just on the left edge of the receive window. This is needed for correct behavior when packets are lost or reordered. PR: kern/123950 Reviewed by: andre@, silby@ Reported by: Yahoo!, Wang Jin MFC after: 1 week
* Add another 8139D variant.remko2008-06-162-0/+3
| | | | | | | PR: 124622 Submitted by: Evgeny Zhirnov <jirnov at gmail dot com> Approved by: imp (mentor, implicit) MFC after: 3 days
* Record my roots.eri2008-06-161-0/+3
| | | | Reviewed by: mlaier (mentor)
* Add my birthday to the calendar.eri2008-06-161-0/+1
| | | | Approved by: mlaier (mentor)
* Struct cdev is always the member of the struct cdev_priv. When devfskib2008-06-166-19/+19
| | | | | | | | | | | needed to promote cdev to cdev_priv, the si_priv pointer was followed. Use member2struct() to calculate address of the wrapping cdev_priv. Rename si_priv to __si_reserved. Tested by: pho Reviewed by: ed MFC after: 2 weeks
* Add the member2struct() macro, that returns pointer to the containingkib2008-06-161-0/+7
| | | | | | structure given pointer to some structure member. MFC after: 2 weeks
* Add $FreeBSD$ since we now have local changes.obrien2008-06-161-0/+3
|
* Implement a workaround for a long-standing problem inolli2008-06-161-8/+32
| | | | | | | | | | | | | | | | | | | | | | libi386's time(), caused by a qemu bug. The bug might be present in other BIOSes, too. qemu either does not simulate the AT RTC correctly or has a broken BIOS 1A/02 implementation, and will return an incorrect value if the RTC is read while it is being updated. The effect is worsened by the fact that qemu's INT 15/86 function ("wait" a.k.a. usleep) is non-implmeneted or broken and returns immediately, causing beastie.4th to spin in a tight loop calling the "read RTC" function millions of times, triggering the problem quickly. Therefore, we keep reading the BIOS value until we get the same result twice. This change fixes beastie.4th's countdown under qemu. Approved by: des (mentor)
* Make it clearer that privilege is needed to reduce as well asfanf2008-06-161-1/+1
| | | | increase group membership.
* Update to include the Camellia algorithm which is in the code butgnn2008-06-161-0/+1
| | | | which was accidentally left undocumented in the manual page.
* Style fix (use naked commands).flz2008-06-161-7/+3
| | | | Reported by: obrien
* Include bsd.own.mk to pick up the definition of MK_GNU_CPIOdougb2008-06-161-0/+2
|
* Properly alphabetize the BSD_CPIO optiondougb2008-06-161-1/+1
|
* Regenerate to add the definitions of WITHOUT_BSD_CPIO WITH_GNU_CPIOdougb2008-06-161-0/+14
| | | | and WITHOUT_GNU_GREP
* 1. Make the BSD version of cpio the default [1]dougb2008-06-168-6/+30
| | | | | | | | | | | | | | | | | a. The BSD version will be built and installed unless WITHOUT_BSD_CPIO is defined. b. The GNU version will not be built or installed unless WITH_GNU_CPIO is defined. If this is defined, the symlink in /usr/bin will be to the GNU version whether the BSD version is present or not. When these changes are MFCed the defaults should be flipped. 2. Add a knob to disable the building of GNU grep. This will make it easier for those that want to test the BSD version in the ports. Approved by: kientzle [1]
* Regenerate using svn $FreeBSD$ tags. There is no change in the actualdougb2008-06-161-87/+87
| | | | man page text other than the date.
* Remove code that isn't required. It actually breaks the case where KDTRACE_HOOKSjb2008-06-161-12/+0
| | | | is defined and KDB isn't. This is the case that it was intended for.
* Do not redo the vnode tear-down work already done by insmntque() whenkib2008-06-151-4/+1
| | | | | | | | vnode cannot be put on the vnode list for mount. Reported and tested by: marck Guilty party: me MFC after: 3 days
* Silence warning about missing IoGetDeviceObjectPointer by implementingcokane2008-06-151-0/+13
| | | | | | | | a simple stub that always returns STATUS_SUCCESS. Submitted by: Paul B. Mahol <onemda@gmail.com> Reviewed by: thompsa MFC after: 1 week
OpenPOWER on IntegriCloud