John Baldwin
39fb485701
Catch up to rev 1.52 of sys/kern/kern_condvar.c. cv_signal() and
...
cv_broadcast() no longer require that the interlock mutex be held when
called.
Reminded by: das
2004-11-08 18:15:11 +00:00
Bruce M Simpson
f674e945aa
Correct a misspelling, 'task_fn' -> 'task_fn_t'.
...
Noticed by: sah at softcardsystems dot com
MFC after: 3 days
2004-10-26 17:14:45 +00:00
Scott Long
0f3a007844
Correct and clarify some very incorrect text.
2004-10-22 05:21:20 +00:00
Joseph Koshy
9bd82b5c5d
Add a manual page for hashinit(9), hashdestroy(9) and phashinit(9).
...
Reviewed by: ru
2004-10-12 02:36:24 +00:00
Joseph Koshy
1bd2c518ef
Use the "normal form" for copyright text.
2004-10-12 02:04:11 +00:00
Gleb Smirnoff
bb978628ec
- Document RT_[UN]LOCK, RT_ADDREF, RT_REMREF.
...
- Describe how RT_FREE actually works.
Grammar check: ru
Reviewed by: sam
MFC after: 1 month
2004-10-11 20:48:36 +00:00
Brian Feldman
dd44434547
s/ENOBUF/ENOBUFS/
2004-10-11 18:40:50 +00:00
Gleb Smirnoff
8c4a75be4a
Revert last commit since it breaks API.
...
Requested by: sam
2004-10-10 09:16:48 +00:00
Gleb Smirnoff
42c5607501
Remove inlined m_tag_free(). Rename _m_tag_free() to m_tag_free()
...
and make it visible (same way as in OpenBSD). Describe usage in manpage.
This change is useful for creating custom free methods, which
call default free method at their end.
While here, make malloc declaration for mbuf tags more informative.
Approved by: julian (mentor), sam
MFC after: 1 month
2004-10-09 13:25:19 +00:00
Max Laier
85bba4455a
Change pfil starvation prevention from fail-open to fail-close.
...
We return ENOBUF to indicate the problem, which is an errno that should be
handled well everywhere.
Requested & Submitted by: green
Silently okay'ed by: The rest of the firewall gang
MFC after: 3 days
2004-10-08 12:07:20 +00:00
Gleb Smirnoff
6534d075cc
- sort struct rtentry fields in man page in some order as they are in struct
...
- remove RTF_PRCLONING
- add rt_mtx field
- rename rt_metrics -> rt_metrics_lite
- mention that only 3 metrics are really used in rt_metrics_lite
Reviewed by: ru, andre
2004-10-08 09:57:12 +00:00
Gleb Smirnoff
d7e6966d45
Add more MLINKS for rtalloc.9
...
Approved by: ru
2004-10-08 09:52:56 +00:00
Gleb Smirnoff
5428d18c74
More grammar cleanups from MDocGuard^WRuslan.
2004-10-08 09:52:00 +00:00
Max Laier
f6b2c4eca5
Add a minimal altq.4 manpage to tell about the kernel options and where to
...
find more information. Also move the "SUPPORTED DEVICES" section from altq.9
to altq.4, where is belongs.
Requested by: green
MFC after: 2 days
2004-10-07 12:10:25 +00:00
Gleb Smirnoff
650c2669ee
Mdoc and grammar fixes.
...
Submitted by: ru
2004-10-07 10:59:09 +00:00
Gleb Smirnoff
729df1bb28
- note that RTF_PRCLONING is obsoleted
...
- explain locking differencies between rtalloc(), rtalloc_ign(), rtalloc1()
and rtfree(), RTFREE().
Reviewed by: andre (1.5 months ago)
OK'd by: ru
2004-10-07 10:14:23 +00:00
Max Laier
2f510328e4
dc(4) is now supported as well. While here sort the list and remove awi,
...
which isn't yet supported.
2004-10-01 20:44:48 +00:00
Max Laier
d6a8d58875
Add an additional struct inpcb * argument to pfil(9) in order to enable
...
passing along socket information. This is required to work around a LOR with
the socket code which results in an easy reproducible hard lockup with
debug.mpsafenet=1. This commit does *not* fix the LOR, but enables us to do
so later. The missing piece is to turn the filter locking into a leaf lock
and will follow in a seperate (later) commit.
This will hopefully be MT5'ed in order to fix the problem for RELENG_5 in
forseeable future.
Suggested by: rwatson
A lot of work by: csjp (he'd be even more helpful w/o mentor-reviews ;)
Reviewed by: rwatson, csjp
Tested by: -pf, -ipfw, LINT, csjp and myself
MFC after: 3 days
LOR IDs: 14 - 17 (not fixed yet)
2004-09-29 04:54:33 +00:00
Alan Cox
c97680825c
Add cross references to vm_map_entry_resize_free.9.
...
Submitted by: Mark W. Krentel
2004-09-27 05:44:28 +00:00
Alan Cox
af3db1449f
Document the O(log n) algorithm for finding free space.
...
Submitted by: Mark W. Krentel
2004-09-27 04:22:41 +00:00
Alan Cox
0a7c173775
Document the flags field.
...
Submitted by: Mark W. Krentel
2004-09-27 03:59:36 +00:00
Joerg Wunsch
cf2acd69e3
Document that kthread_exit()ing will cause a wakeup(9) on the thread
...
handle.
MFC after: 1 week
2004-09-24 19:58:47 +00:00
Ruslan Ermilov
346763649a
Sort MAN and MLINKS in dictionary order ignoring case.
2004-09-19 05:17:21 +00:00
John-Mark Gurney
0283f35b4b
add MLINKs for the mbuf.9 man page..
...
MFC after: 3 days
2004-09-18 19:04:24 +00:00
Brooks Davis
35779bdbd1
Bring kernel time variable and access function docs up to date by
...
updating the list of variables and mentioning the bin(up)time functions.
2004-09-17 07:24:18 +00:00
Brooks Davis
31a5aa8a1c
Document the struct if_data members ifi_datalen, ifi_epoch, and
...
ifi_link_state.
Reminded by: ru
2004-09-17 06:49:43 +00:00
Alan Cox
acf359aa98
Update to reflect recent changes such as the fields for O(log n) address
...
space allocation.
Submitted by: Mark W. Krentel
2004-09-15 18:41:10 +00:00
John-Mark Gurney
b7131a2672
document that m_free returns m_next of the free'd mbuf
2004-08-28 03:46:18 +00:00
Andre Oppermann
c21fd23260
Always compile PFIL_HOOKS into the kernel and remove the associated kernel
...
compile option. All FreeBSD packet filters now use the PFIL_HOOKS API and
thus it becomes a standard part of the network stack.
If no hooks are connected the entire packet filter hooks section and related
activities are jumped over. This removes any performance impact if no hooks
are active.
Both OpenBSD and DragonFlyBSD have integrated PFIL_HOOKS permanently as well.
2004-08-27 15:16:24 +00:00
Warner Losh
490ec740c8
Add reference to vslock(9) for locking user address pages into core.
...
Suggested by: alc
2004-08-26 04:16:55 +00:00
Max Laier
8e7c23d74f
Document supported devices here (for lack of a better place). Users
...
interested in ALTQ are likely to type in "man altq" at some point and maybe
they will scroll down to the bottom as well.
MFC after: 3 days
2004-08-25 18:49:32 +00:00
Warner Losh
4d855643d1
Clarify what the lockfunc is used for. When it will be called and
...
when it won't be called. The old wording was correct, but not
sufficiently specific to understand when and how it would be called.
The new wording describes the current implementation's usage (which
should be updated if other appropriate times are decided upon),
specifically that it is called only when the load operation is
deferred to keep the locking state consistent. When the operation
isn't deferred, the calling routine is assumed to have a coherent
locking world.
Reviewed by: scottl
2004-08-24 23:09:57 +00:00
Warner Losh
95929b661e
Even in a 80 column, fixed point font, there's plenty of room for all
...
the arguments to bus_dmamap_load, so don't use '...' but list the
actual args. '...' usually means a variable number of args (cf
printf(3)), but bus_dmamap_load takes a fixed number of arguments.
2004-08-23 23:28:02 +00:00
Warner Losh
cbfef69c64
In the SYNOPSIS section, move the bus_dmamem_alloc function prototype
...
to just before bus_dmamem_free, which is (a) more logical; (b) likely
what was originally intended and (c) matches the order in the NAME and
FUNCTIONS sections.
2004-08-23 23:17:31 +00:00
Simon L. B. Nielsen
4af04cb81c
mdoc(7) janitor:
...
- Fix hard sentence breaks.
MFC after: 3 days
2004-08-21 12:58:09 +00:00
John Baldwin
68fdba2eb1
Catch up to recent API changes including the removal of the signal_caught
...
argument to sleepq_timedwait() and the enhancements to the flags argument
passed to sleepq_add().
2004-08-19 12:46:02 +00:00
John-Mark Gurney
000968010a
add options MPROF_BUFFERS and MPROF_HASH_SIZE that adjust the sizes of
...
the mutex profiling buffers. Document them in the man page and in NOTES.
Ensure _HASH_SIZE is larger than _BUFFERS with a cpp error.
2004-08-19 06:38:26 +00:00
Brian Feldman
fec07e9be0
Remove the BUGS entry for vslock(9) not actually holding user memory in place.
2004-08-16 03:12:10 +00:00
Warner Losh
13dbaef46a
Be explicit that a driver may assume softc is preserved when returning 0
2004-08-11 21:52:31 +00:00
John-Mark Gurney
e8c9966d55
fix description of the macros for BUS_DMASYNC opertions. It's from the CPU's
...
point of view... Add a reference to a better description of what the ops
do...
Reviewed by: scottl
2004-08-11 14:52:33 +00:00
Brian Feldman
ea84c8dc30
Update "documentation date" fields.
2004-08-10 16:38:19 +00:00
Brian Feldman
2a1bb291d5
Document exactly how vslock(9) is broken.
2004-08-10 15:01:00 +00:00
Brian Feldman
5b2bbd83fc
Update contigmalloc(9)'s manpage to reflect usage of the malloc_type
...
argument and that allocation occurs from the end of the address space
backward (still first-fit).
2004-08-10 14:47:12 +00:00
Joerg Wunsch
0da40ab229
Add documentation for log(9).
...
MFC after: 1 week
2004-08-10 09:19:08 +00:00
Max Laier
424e9d7165
mdoc(7) and english grammar makeover.
...
Submitted by: ru
2004-08-09 15:58:39 +00:00
John-Mark Gurney
227559d11f
rearange some code that handles the thread taskqueue so that it is more
...
generic. Introduce a new define TASKQUEUE_DEFINE_THREAD that takes a
single arg, which is the name of the queue.
Document these changes.
2004-08-08 02:37:22 +00:00
Max Laier
251b8d4557
Add altq(9) explaining about the IFQ_* and IFQ_DRV_* macros in if_var.h and
...
how to convert drivers.
Obtained from: NetBSD (with changes)
Reviewed by: josef
2004-08-07 12:35:56 +00:00
Warner Losh
899eeaa62f
It appears that cdevsw_add/remove were removed quite a while ago, so
...
remove them from here.
2004-08-07 04:59:16 +00:00
Pawel Jakub Dawidek
51385a3c00
- Add two fields to bio structure: 'bio_cflags' which can be used by
...
consumer and 'bio_pflags' which can be used by provider.
- Remove BIO_FLAG1 and BIO_FLAG2 flags. From now on new fields should be
used for internal flags.
- Update g_bio(9) manual page.
- Update some comments.
- Update GEOM_MIRROR, which was the only one using BIO_FLAGs.
Idea from: phk
Reviewed by: phk
2004-08-04 21:35:05 +00:00
John-Mark Gurney
47df0a78eb
after reading the commit mail, I better understand what cnt_hold is for..
...
improve the verbage in the manpage so others are more likely to understand
it...
Reviewed by: rwatson
2004-07-27 04:23:00 +00:00
John-Mark Gurney
b5e60d3288
document that times are in microseconds, yes it's at the end in the NOTES
...
section, but this makes it easier to find.
2004-07-26 21:21:08 +00:00
Colin Percival
56f21b9d74
Rename suser_cred()'s PRISON_ROOT flag to SUSER_ALLOWJAIL. This is
...
somewhat clearer, but more importantly allows for a consistent naming
scheme for suser_cred flags.
The old name is still defined, but will be removed in a few days (unless I
hear any complaints...)
Discussed with: rwatson, scottl
Requested by: jhb
2004-07-26 07:24:04 +00:00
Colin Percival
75877b7564
Document the SUSER_RUID flag.
...
Reminded by: pjd
2004-07-17 15:21:34 +00:00
Colin Percival
ebf89b8e17
Add a BUGS entry pointing out that the ASU flag isn't being set. This was
...
disabled by rwatson in revision 1.60 of sys/kern/kern_prot.c in August 2000.
2004-07-17 15:14:43 +00:00
Poul-Henning Kamp
65a311fcb2
Give kldunload a -f(orce) argument.
...
Add a MOD_QUIESCE event for modules. This should return error (EBUSY)
of the module is in use.
MOD_UNLOAD should now only fail if it is impossible (as opposed to
inconvenient) to unload the module. Valid reasons are memory references
into the module which cannot be tracked down and eliminated.
When kldunloading, we abandon if MOD_UNLOAD fails, and if -force is
not given, MOD_QUIESCE failing will also prevent the unload.
For backwards compatibility, we treat EOPNOTSUPP from MOD_QUIESCE as
success.
Document that modules should return EOPNOTSUPP for unknown events.
2004-07-13 19:36:59 +00:00
Alfred Perlstein
2e168c9b37
Document thread parameter passed to VFS_ROOT and vflush.
2004-07-12 09:06:51 +00:00
Darren Reed
52865ee591
Document that sx_unlock() exists as a macro.
...
Remove redundant include file, <sys/kernel.h>, and clean up the function
list at the top with the addition of a "Sx utility macro" section.
2004-07-11 16:08:25 +00:00
Warner Losh
cd4d01d8a0
Modernize description of physio. Make explicit that this creates a
...
request that's passed to the driver's strategy.
2004-07-10 01:10:17 +00:00
Alfred Perlstein
cf92b47413
document vfs_suser.
2004-07-09 22:33:43 +00:00
Dag-Erling Smørgrav
9f5965dded
Bump document date.
...
Reminded by: ru
2004-07-09 11:44:49 +00:00
Dag-Erling Smørgrav
4aa90de352
The type and name of sbuf_b{cat,cpy}()'s second argument have changed.
2004-07-09 11:38:59 +00:00
Ruslan Ermilov
092cc6b2ab
Revise markup.
2004-07-08 10:47:13 +00:00
Alfred Perlstein
c438d25d9e
There is no VOP_TRUNCATE anymore.
...
style(9) (parenthesis around return values) the example.
2004-07-08 00:43:50 +00:00
Alfred Perlstein
ad5d91b7b1
s/proc/thread
2004-07-08 00:38:28 +00:00
Alfred Perlstein
f6bd5d1e6d
Update comments in example as well.
2004-07-08 00:36:58 +00:00
Alfred Perlstein
dc7bf98cd1
Update because struct componentname now has a thread pointer instead
...
of a proc pointer.
2004-07-08 00:11:43 +00:00
Alfred Perlstein
7f67dadf9f
Update in the face of NDFREE.
...
Basically the advice on freeing the componentname buffers is no
longer correct.
Update the example code.
2004-07-08 00:08:18 +00:00
Ruslan Ermilov
2410103c1d
mdoc(7) fixes.
2004-07-07 19:57:16 +00:00
Maxim Konovalov
9193b9a5a1
MT_TAG is dead.
2004-07-07 16:48:16 +00:00
Ruslan Ermilov
65bb31b863
Slight content fixes.
2004-07-07 13:21:46 +00:00
Ruslan Ermilov
2e77778053
Fixed document title (should be in all uppercase).
...
List all functions in the NAME section so they appear in whatis(1).
Assorted fixes (mostly markup).
2004-07-07 12:59:39 +00:00
Ruslan Ermilov
db79bbff16
Sweep formatting and assorted fixes.
2004-07-07 07:56:58 +00:00
Ruslan Ermilov
ceba39a73b
Tabs here upset my automatic checker, so replaced them with spaces.
2004-07-07 07:56:36 +00:00
Ruslan Ermilov
6f39ea8888
Tiny markup fixes.
2004-07-06 08:21:12 +00:00
Ruslan Ermilov
6ac051ece6
Fixed markup.
2004-07-06 07:39:50 +00:00
Ruslan Ermilov
3f7440e2ee
mdoc(7) fixes.
2004-07-06 07:33:49 +00:00
Ruslan Ermilov
c8cbcbce5c
mdoc(7) fixes.
2004-07-06 07:26:23 +00:00
Ruslan Ermilov
2c5470d09e
Correct typos in the function name.
...
mdoc(7) tweaks.
2004-07-06 07:12:34 +00:00
Ruslan Ermilov
b4ca3754a4
Fixed the .Os call (missing or wrong).
2004-07-06 07:02:31 +00:00
Ruslan Ermilov
a970c85ca9
mdoc(7) fixes.
2004-07-06 06:53:42 +00:00
Ruslan Ermilov
1772ac3f49
Slightly improve the markup.
2004-07-05 18:13:50 +00:00
Ruslan Ermilov
51f98e585b
Fix the NAME section making whatis(1) happy in particular.
2004-07-05 17:12:53 +00:00
Ruslan Ermilov
1c85060a13
Sort SEE ALSO references (in dictionary order, ignoring case).
2004-07-04 20:55:50 +00:00
Bruce M Simpson
df550d3259
Add documentation for the ieee80211_node.c functions.
...
Submitted by: Darron Broad
2004-07-04 18:07:58 +00:00
Scott Long
ab0b83b529
Document that boundaries cannot be smaller than the max segment size.
2004-07-04 04:50:00 +00:00
Ruslan Ermilov
651aa6348e
Merge junk.
2004-07-03 22:53:50 +00:00
Ruslan Ermilov
5203edcdc5
Mechanically kill hard sentence breaks and double whitespaces.
2004-07-03 18:29:24 +00:00
Ruslan Ermilov
d37ea99837
Removed trailing whitespace.
2004-07-02 19:07:33 +00:00
Scott Long
2da554d8f2
Small grammar fix.
2004-07-02 15:52:44 +00:00
Bruce Evans
00ff1f7c0a
Fixed a style bug in the previous commit.
2004-06-26 09:02:44 +00:00
David E. O'Brien
7549cb8489
Embellish the getopt(3) example with mixed case.
...
Reviewed by: bde
2004-06-26 05:15:00 +00:00
Lukas Ertl
05344e57f6
Catch up with the dev_t -> struct cdev change.
2004-06-22 20:18:15 +00:00
Mike Pritchard
2988974b58
Spelling fixes.
2004-06-21 14:11:45 +00:00
Ruslan Ermilov
d07b8cff88
Markup fixes.
2004-06-16 15:57:59 +00:00
Ruslan Ermilov
fa08fb73a5
Tiny markup fixes.
2004-06-16 15:47:45 +00:00
Ruslan Ermilov
bf7f20c2b6
Assorted markup, spelling, and grammar fixes.
2004-06-16 08:33:57 +00:00
Ruslan Ermilov
1c83e80830
Overhaul the markup.
2004-06-15 19:26:11 +00:00
John Polstra
adc0f4a221
Update the .Dd date for previous commit.
...
Gently nudged by: krion
2004-06-14 18:33:21 +00:00
John Polstra
4717d22a7c
Change the return value of sema_timedwait() so it returns 0 on
...
success and a proper errno value on failure. This makes it
consistent with cv_timedwait(), and paves the way for the
introduction of functions such as sema_timedwait_sig() which can
fail in multiple ways.
Bump __FreeBSD_version and add a note to UPDATING.
Approved by: scottl (ips driver), arch
2004-06-14 18:19:05 +00:00
Lukas Ertl
63b3701deb
What world have we come to when even style(9) isn't unfailable:
...
correct style nit in an example.
2004-06-13 21:24:56 +00:00