summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Sync with googlecode some changes that have no impact on FreeBSD.kientzle2009-12-281-1/+6
|
* Compatibility fix for some older systems with non-POSIX getgrnam_r/getpwnam_rkientzle2009-12-281-2/+4
| | | | and a minor style fix for the hash function.
* Catch certain gzip failures at close time.kientzle2009-12-281-0/+2
|
* Remove a dead assignment.kientzle2009-12-281-1/+0
|
* Remove some unused variables and dead assignments.kientzle2009-12-281-3/+1
|
* Update the hard-coded configuration for libarchive.kientzle2009-12-281-3/+7
|
* Update format manpages for libarchive.kientzle2009-12-282-32/+87
|
* make the memory filesystem larger, and add an exampleluigi2009-12-282-3/+23
| | | | on how to import files from the host
* clear leftover from previous computationsluigi2009-12-281-0/+1
|
* more support to import files and libraries from the host.luigi2009-12-281-16/+42
|
* Compact USB_VENDOR_X and USB_PRODUCT_Y in the quirk tables.thompsa2009-12-281-477/+352
|
* Update the "-l or -r" usage to better conform to the standarddougb2009-12-271-1/+1
| | | | Submitted by: ed
* Update the "-l or -r" usage to better conform to the standarddougb2009-12-271-1/+1
| | | | Submitted by: ed
* Parse DEAD_PROCESS entries properly.ed2009-12-271-1/+1
| | | | | | The TTY line name should always be set for DEAD_PROCESS entries right now. When we parse a clean utmp entry, we don't want to interpret it as a DEAD_PROCESS entry if the TTY has never been used yet.
* add a 'qemu' floppy type, useful for running tests on new kernelsluigi2009-12-276-0/+745
|
* dhclient needs to have /var/empty and a _dhcp userluigi2009-12-272-0/+4
| | | | (it also needs /sbin/dhclient-script, will handle that later)
* Let rwhod use libulog.ed2009-12-272-62/+30
| | | | | | | | | | | | I am not planning on providing a mechanism tot stat() the database files directly. The disadvantage of this, is that rwhod will now be a little bit more heavy than it used to be. It normally used to fstat() the file descriptor to see whether the file had changed, but this is now impossible to implement, meaning we have to parse the entire utmp file each 180 seconds. This is probably not an issue on modern 16-way servers, but if it turns out to be a problem, we'll think of something.
* fix a typo (not that it matters)luigi2009-12-271-1/+1
|
* sh: Change varinit to use const better.jilles2009-12-271-13/+13
|
* sh: Various warning fixes (from WARNS=6 NO_WERROR=1):jilles2009-12-2721-100/+98
| | | | | | | - const - initializations to silence -Wuninitialized (it was safe anyway) - remove nested extern declarations - rename "index" locals to "idx"
* Add a driver for the `Fire' JBus to PCIe bridges found in at leastmarius2009-12-274-0/+3226
| | | | | | | | | | | | | | | | | | | | | | | | | the Sun Fire V215/V245 and Sun Ultra 25/45 machines. This driver also already includes all the code to support the `Oberon' Uranus to PCIe bridges found in the Fujitsu-Siemens based Mx000 machines but due to lack of access to such a system for testing, probing of these bridges is currently disabled. Unfortunately, the event queue mechanism of these bridges for MSIs/ MSI-Xs matches our current MD and MI interrupt frameworks like square pegs fit into round holes so for now we are generous and use one event queue per MSI, which limits us to 35 MSIs/MSI-Xs per Host-PCIe-bridge (we use one event queue for the PCIe error messages). This seems tolerable as long as most devices just use one MSI/MSI-X anyway. Adding knowledge about MSIs/MSI-Xs to the MD interrupt code should allow us to decouple the 1:1 mapping at the cost of no longer being able to bind MSIs/MSI-Xs to specific CPUs as we currently have no reliable way to quiesce a device during the transition of its MSIs/ MSI-Xs to another event queue. This would still require the problem of interrupt storms generated by devices which have no one-shot behavior or can't/don't mask interrupts while the filter/handler is executed (like the older PCIe NICs supported by bge(4)) to be solved though. Committed from: 26C3
* To remove a server, one should use double backslash, and half of themmarck2009-12-271-1/+1
| | | | | | are eaten by shell. Fix this. MFC after: 2 weeks
* Make tests for ACL preservation by mv(1) and cp(1) more completetrasz2009-12-271-44/+197
| | | | and easier to follow.
* Remove unneeded inclusion of <utmp.h> and dead variables.ed2009-12-271-14/+0
|
* diverted packet must re-enter _after_ the matching rule,luigi2009-12-271-1/+1
| | | | | | | | or we create loops. The divert cookie (that can be set from userland too) contains the matching rule nr, so we must start from nr+1. Reported by: Joe Marcus Clarke
* Add missing include to make LINT-VIMAGE build as well.bz2009-12-271-0/+1
| | | | | Found by: test building an MFC candidate X-MFC with: r200471
* Update the comments about files ending in .shdougb2009-12-271-4/+5
| | | | Prompted by: Alex Kozlov <spam@rm-rf.kiev.ua>
* Delete some trailing whitespacedougb2009-12-271-2/+2
|
* Further improve the description, and bump Dd.dougb2009-12-271-2/+2
|
* put back the HZ setting or we see poor timing under qemuluigi2009-12-271-1/+3
| | | | MFC after: 3 days
* Several refinements to libulog's API.ed2009-12-266-38/+53
| | | | | | | | | - Only set the fields in the ulog_utmpx structure that are valid for the command in question. This means that strings like "shutdown" or "~" are not visible to the user anymore. - Rename UTXF_* to UTXI_*, indicating the indexation, instead of using the `antique' filename. If we ever get rid of utmp, it makes little sense calling it by its old name.
* Use unordered memory loads and stores for the in* and out*marcel2009-12-261-18/+12
| | | | family of functions.
* SYnc with amd64:marcel2009-12-261-2/+0
| | | | De-support adv_isa.c and aic_isa.c
* When porting the experimental nfs subsystem to the FreeBSD8 krpc,rmacklem2009-12-263-104/+8
| | | | | | | | | I added 3 functions that were already in the experimental client under different names. This patch deletes the functions in the experimental client and renames the calls to use the other set. (This is just removal of duplicated code and does not fix any bug.) MFC after: 2 weeks
* Use macros to strip off USB_VENDOR_ and USB_PRODUCT_ from some id tables to makethompsa2009-12-2611-316/+335
| | | | them more compact and readable.
* Disable the unneeded inclusion of <utmp.h>.ed2009-12-261-1/+1
| | | | | | | | The utmp code in systime.c is not enabled, so including <utmp.h> has no effect in our setup. This makes it a little easier for me to migrate to <utmpx.h>. Approved by: roberto
* Fix wake(8) synopsis to make it clear that at least one lladdr is requiredrwatson2009-12-262-2/+3
| | | | | | | as an argument. Submitted by: Marc Balmer <marc@msys.ch> MFC after: 3 days
* * Support the L1D_CACHE_LD event on Core2 processors.jkoshy2009-12-261-8/+8
| | | | | | | | * Correct a group of typos: for Core2 programmable events, check user supplied umask values against the correct event descriptor field. Submitted by: Ryan Stone <rysto32 at gmail dot com>
* Modify the sources to make WARNS=6 work.ed2009-12-262-3/+4
|
* Log process mappings for existing processes at PMC start time.jkoshy2009-12-262-4/+163
| | | | | Submitted by: Marc Unangst <mju at panasas dot com> [original patch] Tested by: fabient
* Remove declaration of function that no longer exists.jilles2009-12-261-1/+0
|
* Now that all the callers seem to be fixed, add KASSERTs to make sure VAPPENDtrasz2009-12-263-0/+12
| | | | is not being used improperly.
* Fix breakage introduced in last commit.trasz2009-12-261-1/+1
|
* Unbreak the build.ed2009-12-261-2/+1
| | | | | | | I increased the WARNS, but it looks like it breaks certain architectures with more strict alignment requirements (mips, sparc64, ia64). Pointy hat to: me
* Improve ACL branding mismatch detection and reporting in some rare cases,trasz2009-12-264-8/+32
| | | | such as "setfacl -m ''".
* - Display current settings when run without options.ru2009-12-262-15/+30
| | | | | | - Revise a manpage to NOT sound confusing. [1] In collaboration with: sat [1]
* Fix grammar and reduce ambiguity.delphij2009-12-261-3/+3
| | | | Submitted by: b. f. <bf1783 googlemail com>
* Remove clause 3 from Izumi Tsutsui's licenses.marius2009-12-252-6/+2
| | | | Obtained from: NetBSD
* Style changesmarius2009-12-254-28/+34
| | | | Obtained from: NetBSD (mc146818reg.h)
* Correct my e-mail address.marius2009-12-251-2/+2
|
OpenPOWER on IntegriCloud