summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* The .Nm librarycharnier2003-03-241-2/+3
|
* The .Fn functioncharnier2003-03-245-13/+23
| | | | The .Fa argument
* The .Fn functioncharnier2003-03-241-5/+10
| | | | The .Nm library
* Don't call sysbeep() in sc_bell() if either duration or pitch is zero.jhb2003-03-241-1/+1
| | | | | | | | | | Otherwise sysbeep() makes an annoying clicking sound on some systems. 'kbdcontrol -b off' just sets the duration and pitch to zero, it doesn't set the QUIET_BELL flag. Tested by: SorAlx <soralx@cydem.zp.ua> PR: misc/41772 MFC after: 1 week
* The ... utilitycharnier2003-03-241-2/+3
|
* Remove a trailing semicolon in SCHED_QUANTUM definition.mux2003-03-241-1/+1
| | | | | | Luckily this didn't cause any bugs. Spotted by: Samy Al Bahra <samy@kerneled.com>
* Turn /dev/geom.ctl from a GEOM class into a plain character device driverphk2003-03-243-94/+19
| | | | instead, it will never see a disk-I/O transaction, so this is a lot simpler.
* Save a lock: Grab the stall_events SX lock exclusively so it also serializephk2003-03-241-2/+2
| | | | OAM reqests.
* Forced commit.brueffer2003-03-240-0/+0
| | | | | | Revision 1.30 also removed the MLINK from rc.8 to rc.<arch>.8 Pointed out by: ru
* Fixed an errx format error in rev.1.81. This should have been fatalbde2003-03-241-2/+2
| | | | | | | | when WARNS was increased recently, but __printf0like() has been temporarily disabled for 8 months. Fixed related style bugs (disordered declaraction and silly type for maxpayload -- assume 16-bit ints like the rest of ping.c).
* Explain what the rot13 script does.tjr2003-03-241-0/+4
| | | | PR: 39044
* Better fix for the problem addressed by rev.1.79: don't loop inbde2003-03-241-8/+13
| | | | | | | | | | | | | fifo_open() waiting for another reader or writer if one arrived and departed while we were waiting (or a little earlier). Rev.1.79 broke blocking opens of fifos by making them time out after 1 second. This was bad for at least apsfilter. Tested by: "Simon 'corecode' Schubert" <corecode@corecode.ath.cx>, Alexander Leidinger <Alexander@leidinger.net>, phk MFC after: 4 weeks
* The descriptions of the -C and -M options were around the wrong way;tjr2003-03-241-10/+10
| | | | | | | fix this. PR: 49968 MFC after: 2 weeks
* Add -M, -Q, -S, and -T to the usage message.tjr2003-03-241-1/+1
|
* Disable interrupts while in kdb_trap() to handle cases where the callerbde2003-03-242-0/+14
| | | | | | | | | | doesn't do it. This fixes all known causes of "Context switches not allowed in the debugger" in mi_switch(). The main cause was trap_fatal() calling kdb_trap() with interrupts enabled. Switching to ithreads for interrupt handling then made fatal traps more fatal and harder to debug. The problem was limited in -current because most interrupt handlers are blocked by Giant, but it occurred almost deterministically for me because my clock interrupt handlers are non-fast and not blocked by Giant.
* Directories for Russian manpages.ru2003-03-241-0/+48
|
* - The payload of Write Request Quad must be network byte order.simokawa2003-03-241-1/+1
|
* - The payload of Write Request Quad and Read Response Quad must besimokawa2003-03-242-2/+9
| | | | | | network byte order. - Set ATRetries register after each bus reset because the value is 'undef' in OHCI spec.
* Safe PCI configuration.simokawa2003-03-241-2/+6
| | | | | | | | | | | - Clear PCIM_CMD_MWRICEN: some chips seem to have problem with write invalidate. clearing this bit fixes SBP timeout problem. Tested by: Michael Reifenberger <Michael.Reifenberger@Plaut.de> - Set PCIM_CMD_SERRESPEN and PCIM_CMD_PERRESPEN - Moderate value for latency timer.
* We don't have cat(1) and kill(1) on the miniroot disks.mbr2003-03-231-9/+15
| | | | | | | | This fix will be committed to the ISC repo later, but for now take this file out of the vendor tree. Reviewed by: phk Approved by: murray
* Document the -g option in the usage message.mtm2003-03-231-0/+1
| | | | Approved by: markm (mentor)(implicit)
* Introduce g_cancel_events() and use it a couple of places where it makesphk2003-03-233-0/+26
| | | | sense.
* Introduce an SX lock which allows us to stall event processingphk2003-03-232-0/+21
| | | | during OAM operations.
* s/discriptors/descriptors/cognet2003-03-231-1/+1
|
* Remove MAKEDEV.8. MAKEDEV itself has been nuked some time ago.brueffer2003-03-235-254/+0
| | | | | Approved by: ceri (mentor), phk Not objected by: ru
* Add a new -o option to tell xargs(1) to reopen /dev/tty as stdin inmux2003-03-232-5/+21
| | | | | | | | | | | | the child process, before executing the command. This is very useful when you do stuff like ``find ... | xargs interactive_application''. Without -o, the application would inherit the pipe as its stdin, and you thus lose any control over it. This flag has been carefully chosen to not conflit with other options of other xargs utilities like GNU xargs. Reviewed by: jmallett
* Remove unused mtx_lock_giant(), mtx_unlock_giant(), related globalstjr2003-03-233-95/+0
| | | | and sysctls.
* I forgot the evil ioctl census scripts: #include <geom/geom_ctl.h>phk2003-03-231-0/+1
|
* Marshalling stuff for OAM API.phk2003-03-232-0/+187
|
* Add marshalling functions for OAM api.phk2003-03-233-1/+262
|
* A note about which #include files may be used where.phk2003-03-231-0/+22
|
* Start leaking the AOM api into the tree.phk2003-03-232-0/+149
|
* Sync types with headers.ru2003-03-231-5/+5
|
* s/loaded as a module/available as a module/gobrien2003-03-232-2/+2
| | | | Submitted by: ru
* Garbage collect FREEBSD_MAC_EXTATTR_NAME and FREEBSD_MAC_EXTATTR_NAMESPACE,rwatson2003-03-232-16/+0
| | | | | | | | which are no longer required now that we have UFS2 with extended attribute transactions. Obtained from: TrustedBSD Project Sponsored by: DARPA, Network Associates Laboratories
* Clarify the proper bitmask for target mode with another example.njl2003-03-231-0/+1
|
* MFP4 27224 and 27225:imp2003-03-221-3/+18
| | | | | | | | | | | | | | Change 27224 by imp@imp_hammer on 2003/03/22 00:16:22 Put what I think are the correct TX RATE translation tables in place for LUCENT firmware. This is based on the 4.x driver. Maybe it should be table driven? ifconfig wi0 media DS/11Mbps still fails, but it fails before we even get to the txrate stuff, so other things are wrong. Change 27225 by imp@imp_hammer on 2003/03/22 00:45:11 Default ic_fixed_rate to -1. This is the same thing as autoselect. There really should be a #define for this...
* add missing `ipf -s'.ume2003-03-221-0/+1
| | | | Submitted by: Mark Huizer <xaa+freebsd@timewasters.nl>
* Go for the auto-tuned `maxusers'. This at least fixesru2003-03-224-17/+0
| | | | | | the ``panic: timeout table full'' on Alphas. Tested by: wilko
* Remove bitrot associated with `maxusers'.ru2003-03-229-11/+3
| | | | Submitted by: bde
* Document the net.inet.icmp branch of the sysctl(3) MIB.ru2003-03-221-1/+46
| | | | Submitted by: mdodd
* mdoc(7) police: Tidy up the formatting.ru2003-03-221-130/+197
|
* We shouldn't assert that a vode is locked in vop_lock_post()yar2003-03-221-1/+2
| | | | | | if VOP_LOCK() has failed. Reviewed by: jeff
* - Add a new ioctl to get the maximum number of ATA channels.mux2003-03-223-4/+14
| | | | | | | | | | - Use it in atacontrol(8) when listing ATA devices instead of stopping at the first ENXIO received. This makes atacontrol list work on my sparc64 where the two ATA channels I have are numbered 2 and 3. Reviewed by: sos
* Refine translation.rushani2003-03-221-5/+5
|
* Merge the following from the English version:rushani2003-03-221-1/+16
| | | | 1.31 -> 1.33 errata/article.sgml
* Make -c only set flag_c and not a toggle. With flag_c disabled bykeramida2003-03-221-1/+1
| | | | | default, this makes the behavior of gstat more predictable when -c is specified multiple times on the command line.
* Add a small manpage.keramida2003-03-221-0/+87
|
* Add & use a usage() function.keramida2003-03-221-2/+12
|
* Add error and range checking to strtoul() to avoid ending up with akeramida2003-03-221-1/+2
| | | | delay time of ULONG_MAX when -I is passed a non-numeric arg.
OpenPOWER on IntegriCloud