]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/log
FreeBSD/FreeBSD.git
17 years agoAdd Inoue-san and Shiozaki-san.
Hajimu UMEMOTO [Sun, 1 Apr 2007 08:48:00 +0000 (08:48 +0000)]
Add Inoue-san and Shiozaki-san.

17 years agoAdd bge(4).
Marcel Moolenaar [Sun, 1 Apr 2007 06:24:19 +0000 (06:24 +0000)]
Add bge(4).
Fix a white-space nit while I'm here.

17 years agoWhen writing to PCI configuration registers, don't immediately
Marcel Moolenaar [Sun, 1 Apr 2007 06:15:53 +0000 (06:15 +0000)]
When writing to PCI configuration registers, don't immediately
read the same register back. It can cause hangs or machine
checks in certain cases. One particular case is with bge(4)
when a reset is initiated for the controller.

MFC after: 1 month

17 years agoAdd Suzuki-san and myself.
Hajimu UMEMOTO [Sun, 1 Apr 2007 05:53:52 +0000 (05:53 +0000)]
Add Suzuki-san and myself.

17 years agoAdd myself and grehan.
Benno Rice [Sun, 1 Apr 2007 01:11:50 +0000 (01:11 +0000)]
Add myself and grehan.

17 years agoFix typo
Warner Losh [Sun, 1 Apr 2007 00:47:08 +0000 (00:47 +0000)]
Fix typo

17 years agoRemove unused file.
Marcel Moolenaar [Sun, 1 Apr 2007 00:41:01 +0000 (00:41 +0000)]
Remove unused file.

17 years agoMake vdropl() public; zfs needs it. There is also plenty of existing
Dag-Erling Smørgrav [Sat, 31 Mar 2007 23:57:17 +0000 (23:57 +0000)]
Make vdropl() public; zfs needs it.  There is also plenty of existing
file system code (mostly *_reclaim()) which look like this:

    VOP_LOCK(vp);
    /* examine vp */
    VOP_UNLOCK(vp);
    vdrop(vp);

This can now be rewritten to:

    VOP_LOCK(vp);
    /* examine vp */
    vdropl(vp); /* will unlock vp */

MFC after: 1 week

17 years agoOptimize sx locks to use simple atomic operations for the common cases of
John Baldwin [Sat, 31 Mar 2007 23:23:42 +0000 (23:23 +0000)]
Optimize sx locks to use simple atomic operations for the common cases of
obtaining and releasing shared and exclusive locks.  The algorithms for
manipulating the lock cookie are very similar to that rwlocks.  This patch
also adds support for exclusive locks using the same algorithm as mutexes.

A new sx_init_flags() function has been added so that optional flags can be
specified to alter a given locks behavior.  The flags include SX_DUPOK,
SX_NOWITNESS, SX_NOPROFILE, and SX_QUITE which are all identical in nature
to the similar flags for mutexes.

Adaptive spinning on select locks may be enabled by enabling the
ADAPTIVE_SX kernel option.  Only locks initialized with the SX_ADAPTIVESPIN
flag via sx_init_flags() will adaptively spin.

The common cases for sx_slock(), sx_sunlock(), sx_xlock(), and sx_xunlock()
are now performed inline in non-debug kernels.  As a result, <sys/sx.h> now
requires <sys/lock.h> to be included prior to <sys/sx.h>.

The new kernel option SX_NOINLINE can be used to disable the aforementioned
inlining in non-debug kernels.

The size of struct sx has changed, so the kernel ABI is probably greatly
disturbed.

MFC after: 1 month
Submitted by: attilio
Tested by: kris, pjd

17 years agooops, another missed file from crypto api change
Sam Leffler [Sat, 31 Mar 2007 23:15:11 +0000 (23:15 +0000)]
oops, another missed file from crypto api change

17 years agoProvide a dummy compression-layer skip function which just reads data and
Colin Percival [Sat, 31 Mar 2007 22:59:43 +0000 (22:59 +0000)]
Provide a dummy compression-layer skip function which just reads data and
discards it, for use when the compression layer code doesn't know how to
skip data (e.g., everything other than the "none" compressor).  This makes
format level code simpler because that code can now assume that the
compression layer always knows how to skip and will always skip exactly
the requested number of bytes.

Discussed with: kientzle (3 months ago)

17 years ago- Add retire dates for alumni where possible
Gabor Kovesdan [Sat, 31 Mar 2007 22:55:56 +0000 (22:55 +0000)]
- Add retire dates for alumni where possible

17 years agoAdd myself, mentor and mentee here
Mathieu Arnold [Sat, 31 Mar 2007 22:45:48 +0000 (22:45 +0000)]
Add myself, mentor and mentee here

17 years agoMake vfs_mount_destroy() and vfs_freeopts() non-static, I'd like to use them.
Pawel Jakub Dawidek [Sat, 31 Mar 2007 22:44:45 +0000 (22:44 +0000)]
Make vfs_mount_destroy() and vfs_freeopts() non-static, I'd like to use them.

17 years ago- Extend incomplete entries for asmodai, bmilekic, brooks, csjp, gibbs,
Gabor Kovesdan [Sat, 31 Mar 2007 22:42:27 +0000 (22:42 +0000)]
- Extend incomplete entries for asmodai, bmilekic, brooks, csjp, gibbs,
  jayanth, peter, ps

17 years agoFlesh in some more of my mentees. Add scottl and some other misc bits
Robert Watson [Sat, 31 Mar 2007 22:28:59 +0000 (22:28 +0000)]
Flesh in some more of my mentees.  Add scottl and some other misc bits
of history.

17 years ago- Fix a localized character. Please only use ASCII here, otherwise dot won't
Gabor Kovesdan [Sat, 31 Mar 2007 22:20:47 +0000 (22:20 +0000)]
- Fix a localized character. Please only use ASCII here, otherwise dot won't
  be able to produce the output

17 years ago- Extend the incomplete entries for knu, daichi, maho, nobutaka
Gabor Kovesdan [Sat, 31 Mar 2007 22:12:45 +0000 (22:12 +0000)]
- Extend the incomplete entries for knu, daichi, maho, nobutaka

17 years agoAdd tests for "bsdtar -t". These are useful primarily because they test
Colin Percival [Sat, 31 Mar 2007 22:04:36 +0000 (22:04 +0000)]
Add tests for "bsdtar -t".  These are useful primarily because they test
the archive_read_data_skip code.

17 years agoFix bug in njl's email address.
Philip Paeps [Sat, 31 Mar 2007 21:56:36 +0000 (21:56 +0000)]
Fix bug in njl's email address.

17 years agoAdd relationship between my mentor and my grand-mentor. While here, add
Philip Paeps [Sat, 31 Mar 2007 21:50:52 +0000 (21:50 +0000)]
Add relationship between my mentor and my grand-mentor.  While here, add
brother committers marks en sepotvin.

This is fun. :-)

17 years agoAdd constants for the fields in a BAR. Also, add two new macros
John Baldwin [Sat, 31 Mar 2007 21:39:02 +0000 (21:39 +0000)]
Add constants for the fields in a BAR.  Also, add two new macros
PCI_BAR_(IO|MEM)() that return true if the passed in value from a BAR
is for an IO or memory BAR, respectively.

Reviewed by: imp

17 years agoAdd my only ports mentee so far, koitsu.
Philip Paeps [Sat, 31 Mar 2007 21:13:29 +0000 (21:13 +0000)]
Add my only ports mentee so far, koitsu.

17 years agoFix compilation problem (add a const) for pre-7.0 compiles.
Matt Jacob [Sat, 31 Mar 2007 21:01:35 +0000 (21:01 +0000)]
Fix compilation problem (add a const) for pre-7.0 compiles.

17 years agoForced commit to note that the previous commit log was wrong for this
John Baldwin [Sat, 31 Mar 2007 20:59:11 +0000 (20:59 +0000)]
Forced commit to note that the previous commit log was wrong for this
file.  The previous commit fixed a bug in pci_pending_msix() where it
mis-calculated the word in the PBA to read to see if a message was
pending.  Nothing actually uses pci_pending_msix() yet though, so this
didn't result in any visible problems.

MFC after: 1 week

17 years ago- Add missing constants for subclasses.
John Baldwin [Sat, 31 Mar 2007 20:41:00 +0000 (20:41 +0000)]
- Add missing constants for subclasses.
- Add a few progif constants as well.

17 years agoLink myself up with my mentors.
Bruce A. Mah [Sat, 31 Mar 2007 20:27:31 +0000 (20:27 +0000)]
Link myself up with my mentors.

17 years agoAdd myself
Gregory Neil Shapiro [Sat, 31 Mar 2007 20:18:32 +0000 (20:18 +0000)]
Add myself

17 years agoMove dg back to the active list
Warner Losh [Sat, 31 Mar 2007 20:09:44 +0000 (20:09 +0000)]
Move dg back to the active list
Use 'alumni' jkh entry for active jkh (he's stilla round)
move my alumni mentees to that section
sort alumni section

17 years agoA few more chicken-scratchings.
Robert Watson [Sat, 31 Mar 2007 19:53:08 +0000 (19:53 +0000)]
A few more chicken-scratchings.

17 years agoAdd a pseudo-entry for "Birth of FreeBSD"
Poul-Henning Kamp [Sat, 31 Mar 2007 19:44:27 +0000 (19:44 +0000)]
Add a pseudo-entry for "Birth of FreeBSD"
Add entries for the six persons listed in the first version of
commit.allow in the old FreeBSD 1 CVS repo.
Correct joergs date, and link him to jkh.
Add my own entry.

17 years agoFlesh out some information on my mentees and indirect mentees. Flesh out
Robert Watson [Sat, 31 Mar 2007 19:36:51 +0000 (19:36 +0000)]
Flesh out some information on my mentees and indirect mentees.  Flesh out
jake's family tree a bit also, since he's inactive these days but
mentored quite a few interesting people.

17 years agoAdd all my mentees, both formal as well as the ones that I may have
Warner Losh [Sat, 31 Mar 2007 19:21:43 +0000 (19:21 +0000)]
Add all my mentees, both formal as well as the ones that I may have
just been the trigger man for core@'s approval in access.  Who knew
there were 21 of them...

17 years agoToss in my two bits.
Dag-Erling Smørgrav [Sat, 31 Mar 2007 19:18:22 +0000 (19:18 +0000)]
Toss in my two bits.

17 years agoAdd blackend to the team too, as mentored by me
Giorgos Keramidas [Sat, 31 Mar 2007 19:17:24 +0000 (19:17 +0000)]
Add blackend to the team too, as mentored by me

17 years agoAdd myself and my mentor apparent (jkh), although there was no mentoring
Warner Losh [Sat, 31 Mar 2007 18:52:29 +0000 (18:52 +0000)]
Add myself and my mentor apparent (jkh), although there was no mentoring
at the time, as such.  I'll add my mentees as soon as I can tease that
information from cvs.

17 years agoAdd my bits.
Matt Jacob [Sat, 31 Mar 2007 18:46:23 +0000 (18:46 +0000)]
Add my bits.

17 years agoFix bug in matteo entry.
Robert Watson [Sat, 31 Mar 2007 17:32:47 +0000 (17:32 +0000)]
Fix bug in matteo entry.

17 years agoadd myself
Wilko Bulte [Sat, 31 Mar 2007 17:28:45 +0000 (17:28 +0000)]
add myself

17 years agoFix a typo in rrs's entry.
Robert Watson [Sat, 31 Mar 2007 17:26:54 +0000 (17:26 +0000)]
Fix a typo in rrs's entry.

Document eivind's grand-mentorships unto the second generation via me, as
well as some related loose ends.

17 years agoRather than ignoring any error return from getnewvnode() in nameiinit(),
Robert Watson [Sat, 31 Mar 2007 16:08:50 +0000 (16:08 +0000)]
Rather than ignoring any error return from getnewvnode() in nameiinit(),
explicitly test and panic.  This should not ever happen, but if it does,
this is a preferred failure mode to a NULL pointer dereference in kernel.

Coverity CID: 1716
Found with: Coverity Prevent(tm)

17 years agoWe don't need spinning locks here. Change them to the adaptive mutexes. This
Wojciech A. Koszek [Sat, 31 Mar 2007 15:43:06 +0000 (15:43 +0000)]
We don't need spinning locks here. Change them to the adaptive mutexes. This
change should bring no performance decrease, as it did not in my tests.

Reviewed by: julian, glebius
Approved by: cognet (mentor)

17 years agoAdd myself and knu mafia I know:-).
Norikatsu Shigemura [Sat, 31 Mar 2007 15:16:38 +0000 (15:16 +0000)]
Add myself and knu mafia I know:-).

17 years agoAdd myself. nik@ was my doc/ mentor, I never had a mentor for my
Bruce A. Mah [Sat, 31 Mar 2007 14:29:39 +0000 (14:29 +0000)]
Add myself.  nik@ was my doc/ mentor, I never had a mentor for my
now-returned ports/ commit bit, and my src/ mentors (imp / rwatson)
aren't in committers-src.dot yet.

17 years agoAdd murray@
Xin LI [Sat, 31 Mar 2007 14:24:06 +0000 (14:24 +0000)]
Add murray@

17 years agoAdd myself and chinsan@
Xin LI [Sat, 31 Mar 2007 14:20:56 +0000 (14:20 +0000)]
Add myself and chinsan@

17 years agoTell interested readers of the source that the return value is not
Alexander Leidinger [Sat, 31 Mar 2007 13:38:12 +0000 (13:38 +0000)]
Tell interested readers of the source that the return value is not
checked by intend.

Found by: Coverity Prevent (tm)
CID: 55
Reviewed by: ariff

17 years agoFill in a bit of the tree around me and iedowse.
David Malone [Sat, 31 Mar 2007 13:05:32 +0000 (13:05 +0000)]
Fill in a bit of the tree around me and iedowse.

17 years agoAdd myself.
Alex Dupre [Sat, 31 Mar 2007 12:56:07 +0000 (12:56 +0000)]
Add myself.

17 years ago- Add myself.
Tim Bishop [Sat, 31 Mar 2007 11:48:18 +0000 (11:48 +0000)]
- Add myself.

17 years ago- Found bug in min split point bundling which caused
Randall Stewart [Sat, 31 Mar 2007 11:47:30 +0000 (11:47 +0000)]
- Found bug in min split point bundling which caused
  incorrect, non-bundlable fragmentation.
- Added min residual to better control split points for
  both how big a msg must be as well as how much needs
  to be left over.
- With our new algo in place, we need to implicitly
  set "end of msg" on the sp-> structure otherwise we
  end up with "hung" associations.
- Room reserved up front in IP header by pushing IP
  header to back of mbuf.
- Fix so FR's peg count of retransmissions needed.
- Fix so an unlucky chunk that never gets across
  will kill the assoc via the kill timer and send an
  abort too.
- Fix bug in sctp_input which can result in a crash.
- Do not strip off IP options anymore.
- Clean up sctp_calculate_rto().
- Get rid of unused sysctl.
- Fixed so we discard all M-Cast
- Fixed so port check done AFTER checksum
- Fixed bug in fragmentation code that prevented
  us from fragmenting a small complete message when
  we needed to.
- Window probes were not marked back to unsent and
  flight adjusted when a sack came in with no
  window change or accepting of the probe data.
  We now fix this with having a mark on the net and
  the chunk so we can clear it out when the sack arrives
  forcing it to retran just like it was "new" this
  improves the handling of window probes, which were
  dropped by the receiver.
- Tighten AUTH protocol error checks during INIT/INIT-ACK exchange

17 years agoAdd my mentees bsam and ariff, my mentors steve (date not determined) and
Alexander Leidinger [Sat, 31 Mar 2007 11:40:36 +0000 (11:40 +0000)]
Add my mentees bsam and ariff, my mentors steve (date not determined) and
joerg (to the ports file only, he is already listed in the src one) and
myself.

17 years agoAdd myself.
Randall Stewart [Sat, 31 Mar 2007 11:33:32 +0000 (11:33 +0000)]
Add myself.

17 years agoSplit the append_archive function (used for processing @<archive> directives)
Colin Percival [Sat, 31 Mar 2007 10:14:03 +0000 (10:14 +0000)]
Split the append_archive function (used for processing @<archive> directives)
into separate append_archive and append_archive_filename functions; the first
takes a "struct archive *" as input, while the second takes a filename, opens
the archive, and calls the first.

There should be no changes in behaviour as a result of this commit; it simply
reorganizes code to make more sense.  At some point in the future it may be
possible to share code between append_archive and read_archive, but not yet.

Discussed with: kientzle

17 years agoMake the comment for cspace() match reality.
Yaroslav Tykhiy [Sat, 31 Mar 2007 09:08:22 +0000 (09:08 +0000)]
Make the comment for cspace() match reality.

17 years agoMake subroutine names more conformant with other scripts in rc.d.
Mike Makonnen [Sat, 31 Mar 2007 09:03:38 +0000 (09:03 +0000)]
Make subroutine names more conformant with other scripts in rc.d.

MFC After: 2 weeks

17 years agoAdd my entry as a src committer
Ralf S. Engelschall [Sat, 31 Mar 2007 07:38:26 +0000 (07:38 +0000)]
Add my entry as a src committer

17 years agoBack out last commit, which should not have been committed in the first
Simon L. B. Nielsen [Sat, 31 Mar 2007 07:28:53 +0000 (07:28 +0000)]
Back out last commit, which should not have been committed in the first
place.

Note to self: Do not commit when not really awake yet.

Pointy hat to: simon

17 years ago- add myself
Cheng-Lung Sung [Sat, 31 Mar 2007 07:23:22 +0000 (07:23 +0000)]
- add myself
- my mentor is not there, yet.

17 years ago- Add myself.
Simon L. B. Nielsen [Sat, 31 Mar 2007 07:12:56 +0000 (07:12 +0000)]
- Add myself.

17 years ago- Use my (almost) full name. My old mentor should have learned that
Simon L. B. Nielsen [Sat, 31 Mar 2007 06:58:35 +0000 (06:58 +0000)]
- Use my (almost) full name.  My old mentor should have learned that
  by now... ;-).
- Add my mentees (josef and remko).
- Sort names.

17 years agoAdd myself and my three mentees, bland, eik, and jmallett.
Joe Marcus Clarke [Sat, 31 Mar 2007 06:18:15 +0000 (06:18 +0000)]
Add myself and my three mentees, bland, eik, and jmallett.

17 years agoAdd myself.
Joel Dahl [Sat, 31 Mar 2007 06:09:10 +0000 (06:09 +0000)]
Add myself.

17 years agoAdd grand-mentor (njl), mentor (philip), me (matteo) and the other
Matteo Riondato [Sat, 31 Mar 2007 06:03:01 +0000 (06:03 +0000)]
Add grand-mentor (njl), mentor (philip), me (matteo) and the other
philip's mentee (jls)

17 years agoCorrect BB-profiling and adjust comments.
Jung-uk Kim [Sat, 31 Mar 2007 01:47:37 +0000 (01:47 +0000)]
Correct BB-profiling and adjust comments.

Pointed out by: bde
Reviewed by: bde

17 years ago- Add myself and my mentor
Rong-En Fan [Sat, 31 Mar 2007 01:47:17 +0000 (01:47 +0000)]
- Add myself and my mentor
- While I'm here, add my grand-mentor in ports

17 years agoFix off-by-4 error in address validation for i386, reduce PCB reloading, and
Jung-uk Kim [Fri, 30 Mar 2007 23:19:08 +0000 (23:19 +0000)]
Fix off-by-4 error in address validation for i386, reduce PCB reloading, and
fix more style(9) nits.

Pointed out by: bde
Discussed with: kib
Reviewd by: bde

17 years agoAdd myself and my former mentee qingli. Sort.
Andre Oppermann [Fri, 30 Mar 2007 23:06:13 +0000 (23:06 +0000)]
Add myself and my former mentee qingli.  Sort.

17 years ago- Fix my name.
Marcus Alves Grando [Fri, 30 Mar 2007 23:03:49 +0000 (23:03 +0000)]
- Fix my name.

17 years agoTeardown interrupt only when sc->ih is not NULL.
Hidetoshi Shimokawa [Fri, 30 Mar 2007 22:25:26 +0000 (22:25 +0000)]
Teardown interrupt only when sc->ih is not NULL.

MFC after: 3 days

17 years agoAdd myself, fjoe, sergei, sem, sat, miwi, brooks and philip.
Kirill Ponomarev [Fri, 30 Mar 2007 22:25:17 +0000 (22:25 +0000)]
Add myself, fjoe, sergei, sem, sat, miwi, brooks and philip.

17 years agoAdd dates for joerg@ and obrien@.
Lukas Ertl [Fri, 30 Mar 2007 22:20:43 +0000 (22:20 +0000)]
Add dates for joerg@ and obrien@.

17 years agoAdd my mentor and mentees.
Ceri Davies [Fri, 30 Mar 2007 22:06:56 +0000 (22:06 +0000)]
Add my mentor and mentees.
Add a comment clarifying the date format as it wasn't immediately
obvious from the current entries.

17 years agoAdd danger, garys, pav, jim, and trhodes to the list of committers, and
Giorgos Keramidas [Fri, 30 Mar 2007 21:59:58 +0000 (21:59 +0000)]
Add danger, garys, pav, jim, and trhodes to the list of committers, and
list the first three as my mentees, and trhodes as co-mentor of danger.

17 years agoNew line for new sentense.
Takanori Watanabe [Fri, 30 Mar 2007 21:59:55 +0000 (21:59 +0000)]
New line for new sentense.

Pointed out by: brueffer

17 years agoNote that it was Nik Clayton who lured me into doc-committers.
Giorgos Keramidas [Fri, 30 Mar 2007 21:45:08 +0000 (21:45 +0000)]
Note that it was Nik Clayton who lured me into doc-committers.

17 years agoHook acpi_aiboost man page and modify the man page a bit.
Takanori Watanabe [Fri, 30 Mar 2007 21:19:10 +0000 (21:19 +0000)]
Hook acpi_aiboost man page and modify the man page a bit.

17 years agoAdd man page for acpi_aiboost. Based on man page for NetBSD.
Takanori Watanabe [Fri, 30 Mar 2007 20:35:37 +0000 (20:35 +0000)]
Add man page for acpi_aiboost. Based on man page for NetBSD.

17 years agoFix more style(9) nits[1] and remove unnecessary use of '#if !defined(_KERNEL)'.
Jung-uk Kim [Fri, 30 Mar 2007 19:33:53 +0000 (19:33 +0000)]
Fix more style(9) nits[1] and remove unnecessary use of '#if !defined(_KERNEL)'.

Pointed out by: bde[1]

17 years agoRecord rc.d/nfslocking dependency on rc.d/rpcbind.
Mike Makonnen [Fri, 30 Mar 2007 19:08:58 +0000 (19:08 +0000)]
Record rc.d/nfslocking dependency on rc.d/rpcbind.

PR: conf/105465
Submitted By: ru (with minor cosmetic change)
MFC-After: 1 month

17 years agoAdd my mentor
Emanuel Haupt [Fri, 30 Mar 2007 19:08:33 +0000 (19:08 +0000)]
Add my mentor

17 years agoAdd myself and mentor and grand-mentor. All the dates are from access log.
Jung-uk Kim [Fri, 30 Mar 2007 19:01:36 +0000 (19:01 +0000)]
Add myself and mentor and grand-mentor.  All the dates are from access log.

17 years agoFix \n on clement entry
Renato Botelho [Fri, 30 Mar 2007 18:53:15 +0000 (18:53 +0000)]
Fix \n on clement entry

17 years agoAdd my two mentors, grog@ and joerg@, and myself.
Lukas Ertl [Fri, 30 Mar 2007 18:49:36 +0000 (18:49 +0000)]
Add my two mentors, grog@ and joerg@, and myself.

Correct date for schweikh@.

17 years agoAdd myself + offspring, grand- and co-mentors.
Max Laier [Fri, 30 Mar 2007 18:39:12 +0000 (18:39 +0000)]
Add myself + offspring, grand- and co-mentors.

17 years agoSome rc.d commands (such as stop|restart etc.) won't automagically work
Mike Makonnen [Fri, 30 Mar 2007 18:36:45 +0000 (18:36 +0000)]
Some rc.d commands (such as stop|restart etc.) won't automagically work
if we don't explicitly set the name of the executable program.

PR: conf/104408

17 years agoUse the same wisdom of sys/i386/i386/support.s 1.97 to remove obfuscation.
Jung-uk Kim [Fri, 30 Mar 2007 18:27:57 +0000 (18:27 +0000)]
Use the same wisdom of sys/i386/i386/support.s 1.97 to remove obfuscation.

Pointed out by: bde

17 years ago- acardenas -> acm
Florent Thoumie [Fri, 30 Mar 2007 18:22:53 +0000 (18:22 +0000)]
- acardenas -> acm
- Sort alphabetically.

17 years ago- Add myself and mnag.
Jean Milanez Melo [Fri, 30 Mar 2007 18:16:22 +0000 (18:16 +0000)]
- Add myself and mnag.

17 years agodon't display ssid cloaking status as "ssid HIDE", use the cmd line
Sam Leffler [Fri, 30 Mar 2007 18:14:04 +0000 (18:14 +0000)]
don't display ssid cloaking status as "ssid HIDE", use the cmd line
parameter like everything else

MFC after: 2 weeks

17 years ago- Use PARTIAL_PICKUP_GIANT() to implement PICKUP_GIANT().
John Baldwin [Fri, 30 Mar 2007 18:10:08 +0000 (18:10 +0000)]
- Use PARTIAL_PICKUP_GIANT() to implement PICKUP_GIANT().
- Move UGAR() macro up to the comment that describes it.
- Fix a couple of typos.

17 years ago- Drop memory barriers in rw_try_upgrade(). We don't need an 'acq' memory
John Baldwin [Fri, 30 Mar 2007 18:08:55 +0000 (18:08 +0000)]
- Drop memory barriers in rw_try_upgrade().  We don't need an 'acq' memory
  barrier here as the earlier rw_rlock() already contained one.
- Comment fix.

17 years agoAdd myself and db
Emanuel Haupt [Fri, 30 Mar 2007 18:08:51 +0000 (18:08 +0000)]
Add myself and db

17 years agoAdd some cross references to locking.9 from related pages.
Julian Elischer [Fri, 30 Mar 2007 18:07:26 +0000 (18:07 +0000)]
Add some cross references to locking.9 from related pages.

17 years ago- Use lock_init/lock_destroy() to setup the lock_object inside of lockmgr.
John Baldwin [Fri, 30 Mar 2007 18:07:24 +0000 (18:07 +0000)]
- Use lock_init/lock_destroy() to setup the lock_object inside of lockmgr.
  We can now use LOCK_CLASS() as a stronger check in lockmgr_chain() as a
  result.  This required putting back lk_flags as lockmgr's use of flags
  conflicted with other flags in lo_flags otherwise.
- Tweak 'show lock' output for lockmgr to match sx, rw, and mtx.

17 years agoAdd my 3 mentees (acm@, alepulver@ and vd@)
Renato Botelho [Fri, 30 Mar 2007 18:05:28 +0000 (18:05 +0000)]
Add my 3 mentees (acm@, alepulver@ and vd@)

17 years agoAdd my mentor, edwin, and my mentees clement, lth, simon and lbr.
Erwin Lansing [Fri, 30 Mar 2007 18:04:00 +0000 (18:04 +0000)]
Add my mentor, edwin, and my mentees clement, lth, simon and lbr.
gabor already added himself.

17 years agoUse underlying structures instead of kernel_sysctlbyname() for msginfo and
Jung-uk Kim [Fri, 30 Mar 2007 17:56:44 +0000 (17:56 +0000)]
Use underlying structures instead of kernel_sysctlbyname() for msginfo and
seminfo because kernel_sysctlbyname() is slow.  There is no dependency
problem since linux module depends on both sysvmsg and sysvsem and linprocfs
depends on it in turn.

Pointed out by: des
Reviewed by: des

17 years agoConnect the locking man page to the build.
Julian Elischer [Fri, 30 Mar 2007 17:56:19 +0000 (17:56 +0000)]
Connect the locking man page to the build.
Next step is to add it as a "See Also" to related man pages.

17 years agoAdd an entry for schweikh. I couldn't find the commit bit date though.
Florent Thoumie [Fri, 30 Mar 2007 17:47:04 +0000 (17:47 +0000)]
Add an entry for schweikh. I couldn't find the commit bit date though.