summaryrefslogtreecommitdiffstats
path: root/share
Commit message (Collapse)AuthorAgeFilesLines
* Add "maxfilesize" mount option for tmpfs to allow specifying thejh2010-01-291-0/+2
| | | | | | | | | | | | | | maximum file size limit. Default is UINT64_MAX when the option is not specified. It was useless to set the limit to the total amount of memory and swap in the system. Use tmpfs_mem_info() rather than get_swpgtotal() in tmpfs_mount() to check if there is enough memory available. Remove now unused get_swpgtotal(). Reviewed by: Gleb Kurtsou Approved by: trasz (mentor)
* Hook run(4) to the build.thompsa2010-01-281-0/+1
|
* Add run(4), a driver for Ralink RT2700U/RT2800U/RT3000U USB 802.11agn devices.thompsa2010-01-281-0/+219
| | | | | This driver was written for OpenBSD by Damien Bergamini and ported over by Akinori Furukoshi.
* Cosmetic fixes.trasz2010-01-281-19/+19
|
* Add description of bounded sleep vs unbounded sleep (aka blocking). Movetrasz2010-01-281-80/+61
| | | | rules into their own section.
* Add myself.uqs2010-01-281-0/+2
| | | | Approved by: philip (mentor)
* Fix typo in xref (it accidentally referenced itself).joerg2010-01-281-1/+1
| | | | MFC after: 1 day
* Note added FIS-based switching support.mav2010-01-281-6/+7
|
* Improve descriptions, remove turnstiles (since, from what I understand,trasz2010-01-281-61/+92
| | | | | they are only used to implement other synchronization primitives), tweak formatting.
* Clean up rc.subr man page after removing leftover NetBSD compat. Alsoemaste2010-01-281-38/+2
| | | | | | switch to 2-clause license per NetBSD rc.subr.8 r1.19. Submitted by: Alex Kozlov
* Add a manual page for nvram(4).delphij2010-01-272-0/+95
| | | | MFC after: 2 weeks
* Revised revision 199201 (add interface description capability as inspireddelphij2010-01-271-1/+37
| | | | | | | | by OpenBSD), based on comments from many, including rwatson, jhb, brooks and others. Sponsored by: iXsystems, Inc. MFC after: 1 month
* Add myself to the list of ports committers.romain2010-01-261-0/+2
| | | | Approved by: flz (mentor)
* Add myself.avilla2010-01-261-0/+3
| | | | Approved by: tabthorpe (mentor)
* MFV of tzdata2010b, r203017edwin2010-01-262-9/+102
| | | | | | | | Mexico's House of Representatives has approved a proposal for northern Mexico's border cities to share the same daylight saving schedule as the United States. MFC after: now
* Add an example, derived from the basic demo phk once sent me.joerg2010-01-251-0/+33
|
* Add man pages for the gpib(4), pcii(4), and tnt4882(4) drivers.joerg2010-01-244-0/+222
| | | | MFC after: 3 days
* - Fix the kthread_{suspend, resume, suspend_check}() locking.attilio2010-01-241-7/+4
| | | | | | | | | | | | | | | | | | | | | | | In the current code, the locking is completely broken and may lead easilly to deadlocks. Fix it by using the proc_mtx, linked to the suspending thread, as lock for the operation. Keep using the thread_lock for setting and reading the flag even if it is not entirely necessary (atomic ops may do it as well, but this way the code is more readable). - Fix a deadlock within kthread_suspend(). The suspender should not sleep on a different channel wrt the suspended thread, or, otherwise, the awaker should wakeup both. Uniform the interface to what the kproc_* counterparts do (sleeping on the same channel). - Change the kthread_suspend_check() prototype. kthread_suspend_check() always assumes curthread and must only refer to it, so skip the thread pointer as it may be easilly mistaken. If curthread is not a kthread, the system will panic. In collabouration with: jhb Tested by: Giovanni Trematerra <giovanni dot trematerra at gmail dot com> MFC: 2 weeks
* Document pthread_timedjoin_np.kib2010-01-231-4/+38
| | | | | | | Note implementation-defined EOPNOTSUPP error [1]. PR: threads/143115 [1] MFC after: 3 days
* Move USD documents from /usr/share/doc/papers to to /usr/share/doc/usd.delphij2010-01-223-0/+20
| | | | Reviewed by: gabor
* Introduce two new flags PO_CFLAGS and PO_CXXFLAGS to make it possiblesepotvin2010-01-222-4/+6
| | | | | | to have different flags when building profiled objects. MFC after: 1 month
* Add "MIXER CONTROLS" chapter.mav2010-01-221-1/+37
|
* Correct a minor mistake in my previous commit.ed2010-01-211-1/+1
| | | | getutxent is in category 3, not 5.
* Remove stale references to utmp(5) and its corresponding filenames.ed2010-01-213-7/+11
| | | | I removed utmp and its manpage, but not other manpages referring to it.
* Sort NDHASGIANT.9 link properly.jhb2010-01-191-2/+2
|
* MFV of tzdata2010a:edwin2010-01-181-5/+5
| | | | Administrative only: Fix AT fields for Asia/Dhaka
* Include unistd.h for read(), write() and stdlib.h for exit().wkoszek2010-01-182-3/+6
| | | | Bump WARNS to 5 while being here.
* Small cleanup while being here:wkoszek2010-01-182-14/+6
| | | | | | | | | | - sort includes - remove usage(), since it seems to come from older version of the KLD - remove unnecessary variable - mark argc/argv as unused Bring WARNS = 5 to the Makefile.
* Include stdlib.h for exit(3) and unistd.h for syscall(2). This makeswkoszek2010-01-181-0/+2
| | | | this program to compile cleanly.
* Small fix for making this KLD to compile.wkoszek2010-01-181-1/+1
|
* Undo r169961, removing WITH_GCC3, added as a temporary workaround threetrasz2010-01-181-2/+0
| | | | years ago.
* Allow the CTAGS to be set to something other than "gtags" or "ctags",ru2010-01-181-8/+6
| | | | | | | | but assume it supports a ctags(1)-compatible syntax. PR: 46676 Submitted by: Lyndon Nerenberg MFC after: 3 days
* If CTAGS is not set or set to something other than "ctags" or "gtags",ru2010-01-181-0/+2
| | | | | | | "cleandepend" was not removing the .depend file; fixed. PR: 126747 MFC after: 3 days
* Fix HISTORY section to detail the history of the driver, not the man page.gavin2010-01-161-2/+2
| | | | Approved by: ed (mentor, implicit)
* Fix loader.conf(5) Xrefgavin2010-01-161-1/+1
| | | | Approved by: ed (mentor, implicit)
* Xref sysctl(3)gavin2010-01-161-1/+2
| | | | Approved by: ed (mentor)
* regenantoine2010-01-161-1/+5
| | | | MFC after: 2 weeks
* Unbreak world WITHOUT_NETGRAPH.antoine2010-01-161-0/+5
| | | | | | | PR: 137487 Submitted by: bf (previous version) No objections: net@ MFC after: 2 weeks
* Manpage for the siba(4) Sonic Inc. Silicon Backplane driver.brueffer2010-01-152-0/+91
| | | | Submitted by: weongyo
* Use the newly brought %U macro.ru2010-01-1539-53/+53
|
* Add manpages for ipwfw(4) and iwifw(4), based on iwnfw(4).brueffer2010-01-143-0/+152
| | | | MFC after: 2 weeks
* - Note that if_xname, if_dname, and if_dunit are usually initialized viajhb2010-01-141-16/+40
| | | | | | | | | | | | if_initname(). - Document if_drv_flags and replace references to IFF_(RUNNING|OACTIVE) with references to IFF_DRV_(RUNNING|OACTIVE). - Complete truncated sentence in the description of if_transmit by copying from the description in if_qflush. - Add missing line breaks for translators. Reviewed by: brooks (1) MFC after: 3 days
* - Update required headers for namei() to add <sys/fcntl.h> and removejhb2010-01-142-2/+31
| | | | | | | | | | <sys/proc.h>. - Add RETURN VALUES and ERROR sections for namei()'s error return values. - Add a missing link to NDHASGIANT.9. PR: docs/142815, docs/142816 Submitted by: Lachlan Kang (1, 2) MFC after: 3 days
* Document that the IEEE80211_DEBUG kernel option is needed forroam2010-01-141-1/+4
| | | | | | | | | using the wlan(4) debugging controls with wording slightly different from that in the PR. PR: 142367 Submitted by: Matthew Thyer <matt.thyer@gmail.com> MFC after: 2 weeks
* Grammar nits.thompsa2010-01-141-3/+3
| | | | Submitted by: Ben Kaduk
* Remove the 1000 pseudo terminal limit from pts(4).ed2010-01-131-26/+0
| | | | | Even with the old utmp format, we could in fact go to pts/9999, because ut_line wasn't guaranteed to be null terminated there.
* Update to Fredrik's latest uhso driver. This changes port detection, addsthompsa2010-01-131-6/+17
| | | | | | comments and other code nits. Submitted by: Fredrik Lindberg <fli@shapeshifter.se>
* Remove <utmp.h> and its corresponding manual page.ed2010-01-132-269/+0
|
* Add a driver by Fredrik Lindberg for Option HSDPA USB devices. These differthompsa2010-01-132-0/+116
| | | | | | | | from standard 3G wireless units by supplying a raw IP/IPv6 endpoint rather than using PPP over serial. uhsoctl(1) is used to initiate and close the WAN connection. Obtained from: Fredrik Lindberg <fli@shapeshifter.se>
* Various fixes.brueffer2010-01-122-20/+21
|
OpenPOWER on IntegriCloud