summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Correct the description of the -N option.ru2004-03-261-2/+2
|
* -N without -M is pointless.ru2004-03-262-12/+10
|
* Not too much point specifying -N but not specifying -M.ru2004-03-262-14/+12
|
* Update information of how pstat(8) accesses the running system.ru2004-03-261-12/+15
|
* Avoid the manpage layering violation and low-level implementationru2004-03-262-6/+4
| | | | | details of libkvm, and just tell what the getbootfile(3) function will return, by using the text from netstat(1) and dmesg(8).
* Correct the description of options -N and -M to match reality.ru2004-03-261-4/+4
|
* Fixed some style bugs in or related to rev.1.13 (mainly misindentation ofbde2004-03-261-109/+128
| | | | the getopt() case statement).
* - Remove references to /dev/kmem -- ps(1) utilizes theru2004-03-261-11/+5
| | | | | | | sysctl(3) interface in kvm(3). - Document the correct default when no -N is specified. - Remove stale reference to /var/db/kvm_kernel.db. - Remove stale reference to /var/run/dev.db.
* Document that kvm_open(3) also accepts "/dev/null" as a specialru2004-03-261-4/+15
| | | | | "corefile" argument, to access the running system via sysctl(3) if possible, thus not requring special setgid privileges.
* Document that libkvm also uses /dev/kmem, to access KVM.ru2004-03-261-3/+7
|
* Apply style.Makefile(5).ru2004-03-261-6/+4
|
* Add ct(4) man page for ct SCSI host adapter device driver and attachnon2004-03-262-0/+149
| | | | it to the build.
* Correct the definition of the multilabel flag: it enables multilabelrwatson2004-03-261-3/+8
| | | | | | | MAC support on the file system, if supported, which causes MAC to treat each object as having its own label, rather than using a single label for all objects on the file system. This doesn't have to be used in combination with the tunefs/newfs flags -- it's an alternative.
* Send those -Debug messages to stderr, not stdout...gad2004-03-261-2/+2
|
* Add a debugging option, as I don't understand something that I'm seeing.gad2004-03-261-2/+18
| | | | (this is a probably temporary option, and is not to be documented)
* Remove a redundant check against mypid (the check is done later, ingad2004-03-261-1/+1
| | | | | | the "Take the appropriate action" section). Obtained from: the sysutils/pkill port
* Add a cast to get this to compile with WARNS=5 on sparc64. This isgad2004-03-262-2/+3
| | | | | | needed because off_t == __int64_t, while size_t == __uint64_t. This also compiles with WARNS=5 on amd64, but I haven't tested the other platforms yet.
* Fixes so this will compile with WARNS=5 on i386.gad2004-03-261-19/+22
|
* Fix two cosmetic style(9) issues.gad2004-03-251-2/+2
|
* Add a comment for when these utilities were added to FreeBSD, and addgad2004-03-251-0/+3
| | | | a cross-reference to killall(1).
* Add `-M' and `-N' options to `pkill' and `pgrep', similar togad2004-03-252-6/+35
| | | | | | | | | | | | what are supported in `ps': -M Extract values associated with the name list from the specified core instead of the default /dev/kmem. -N Extract the name list from the specified system instead of the default /kernel. Written by: Mario Sergio Fujikawa Ferreira <lioux@FreeBSD.org> Obtained from: the sysutils/pkill port
* Use the correct type for some casts, thus avoiding a few warning messagesgad2004-03-251-4/+4
| | | | | | | when compiling with WARNS=3 Written by: Mario Sergio Fujikawa Ferreira <lioux@FreeBSD.org> Obtained from: the sysutils/pkill port
* Change some routine and variable names to match the FreeBSD system.gad2004-03-252-35/+55
| | | | | Written by: Mario Sergio Fujikawa Ferreira <lioux@FreeBSD.org> Obtained from: the sysutils/pkill port
* Add support for a new variant of the prism3 that has appaered in theimp2004-03-251-0/+1
| | | | | | | wild. This one is marketed by D-Link model DWL-650, but appears to be a ISL3710P-10 under the hood. Reported by: Brian O'Shea
* Sync to pccarddevs 1.82imp2004-03-251-2/+5
|
* Add a new Intersil card that DLINK is selling as the DWL-650.imp2004-03-251-1/+2
| | | | Reported by: Brian O'Shea
* only do nfs rpc callouts if there is work to do.rees2004-03-254-11/+14
| | | | | Submitted by: kan Approved by: alfred
* - Only build a fixit floppy on i386 and pc98.jhb2004-03-251-2/+11
| | | | - Reenable boot floppies for Alpha.
* Enable splitfs in the Alpha boot loaders.jhb2004-03-251-0/+1
|
* Remove raidframe from the listscottl2004-03-251-1/+0
|
* 1. Better handle a return value of EINPROGRESS from bus_dmamap_load.vkashyap2004-03-253-22/+38
| | | | | | | 2. Check for bad return value from twe_map_request in places where there was no checking. Reviewed by: ps
* Add the `pkill' and `pgrep' commands from NetBSD. This is the sourcegad2004-03-253-0/+752
| | | | | | | | | straight from NetBSD (except to add the RCS-ID lines for FreeBSD). These will probably require a few updates before they are added to the FreeBSD buildworld. I might MFC these to 4.x-stable after 4.10. Discussed on: freebsd-arch Obtained from: NetBSD (and OpenBSD also has these)
* - In subr_ndis.c:ndis_init_event(), initialize events as notificationwpaul2004-03-252-4/+41
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | objects rather than synchronization objects. When a sync object is signaled, only the first thread waiting on it is woken up, and then it's automatically reset to the not-signaled state. When a notification object is signaled, all threads waiting on it will be woken up, and it remains in the signaled state until someone resets it manually. We want the latter behavior for NDIS events. - In kern_ndis.c:ndis_convert_res(), we have to create a temporary copy of the list returned by BUS_GET_RESOURCE_LIST(). When the PCI bus code probes resources for a given device, it enters them into a singly linked list, head first. The result is that traversing this list gives you the resources in reverse order. This means when we create the Windows resource list, it will be in reverse order too. Unfortunately, this can hose drivers for devices with multiple I/O ranges of the same type, like, say, two memory mapped I/O regions (one for registers, one to map the NVRAM/bootrom/whatever). Some drivers test the range size to figure out which region is which, but others just assume that the resources will be listed in ascending order from lowest numbered BAR to highest. Reversing the order means such drivers will choose the wrong resource as their I/O register range. Since we can't traverse the resource SLIST backwards, we have to make a temporary copy of the list in the right order and then build the Windows resource list from that. I suppose we could just fix the PCI bus code to use a TAILQ instead, but then I'd have to track down all the consumers of the BUS_GET_RESOURCE_LIST() and fix them too.
* More kosher mdoc(7).obrien2004-03-251-1/+2
| | | | Submitted by: ru
* Connect ctau driver (Cronyx-Tau/ISA) to modules build process.rik2004-03-251-0/+2
| | | | Approved by: imp (mentor)
* Remove unused function.pjd2004-03-252-11/+0
| | | | It was used in FreeBSD 4.x, but now we're using cr_canseesocket().
* Final step of the sbin -> usr.sbin move: cvs rm src/sbin/nologin/*cperciva2004-03-254-188/+0
| | | | I meant to do this a week ago, but I forgot.
* Move ct.4 to ctau.4. Step four: backout ct.4 via rm.rik2004-03-251-99/+0
| | | | Approved by: imp (mentor)
* Move ct.4 to ctau.4. Step three: change ct to ctau in Makefile.rik2004-03-251-1/+1
| | | | Approved by: imp (mentor)
* This commit was generated by cvs2svn to compensate for changes in r127403,des2004-03-251-22/+26
|\ | | | | | | which included commits to RCS files with non-trunk default branches.
| * Import the original directly from NetBSD instead of via OpenBSD.des2004-03-251-22/+26
| |
* | Respect decimal flag when dumping USER type records.phk2004-03-251-1/+4
| |
* | Document the existence of NET_RT_IFMALIST.bms2004-03-251-0/+7
| | | | | | | | Reviewed by: ru
* | [troff] removed the unnecessary use of \_ escapes.ru2004-03-251-96/+96
| |
* | Sort SRCS in Makefile and document -g option additions.bms2004-03-252-2/+3
| | | | | | | | Nudged by: ru
* | Output style: Get rid of an unnecessary newline.bms2004-03-251-1/+0
| |
* | Untangle IP multicast routing interaction with delayed payload checksums.ru2004-03-251-13/+3
| | | | | | | | | | | | | | | | | | | | Compute the payload checksum for a locally originated IP multicast where God intended, in ip_mloopback(), rather than doing it in ip_output() and only when multicast router is active. This is more correct as we do not fool ip_input() that the packet has the correct payload checksum when in fact it does not (when multicast router is inactive). This is also more efficient if we don't join the multicast group we send to, thus allowing the hardware to checksum the payload.
* | Teach netstat(1) how to print the multicast group memberships presentbms2004-03-254-2/+154
| | | | | | | | | | | | within the running system. Sponsored by: Ralf the Wonder Llama
* | - In kern_ndis.c, implement ndis_unsched(), the complement to ndis_sched(),wpaul2004-03-252-28/+86
| | | | | | | | | | | | | | | | | | | | | | | | | | | | which pulls a job off a thread work queue (assuming it hasn't run yet). This is needed for KeRemoveQueueDpc(). - In subr_ntoskrnl.c, implement KeInsertQueueDpc() and KeRemoveQueueDpc(), to go with KeInitializeDpc() to round out the API. Also change the KeTimer implementation to use this API instead of the private timer callout scheduler. Functionality of the timer API remains unchanged, but we get a couple new Windows kernel API routines and more closely imitate the way thing works in Windows. (As of yet I haven't encountered any drivers that use KeInsertQueueDpc() or KeRemoveQueueDpc(), but it doesn't hurt to have them.)
* | MFi386: correctly calculate the top-of-stack when a kthread is createdpeter2004-03-251-3/+4
| | | | | | | | with a larger kernel stack.
OpenPOWER on IntegriCloud