| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
| |
Remove /^\.\\"\n\.\\"\s*\$FreeBSD\$$\n/
Similar commit in main:
(cherry picked from commit fa9896e082a1)
|
|
|
|
|
|
|
|
|
|
| |
No date change as there is no new information.
Submitted by: sigsys@gmail.com
Differential Revision: https://reviews.freebsd.org/D26341
Notes:
svn path=/head/; revision=365367
|
|
|
|
|
|
|
| |
The flag itself was removed in r341593
Notes:
svn path=/head/; revision=363113
|
|
|
|
|
|
|
|
|
|
| |
Avoid duplication in their macro definitions, and document them. No
functional change intended.
MFC after: 1 week
Notes:
svn path=/head/; revision=326060
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
This corrects an error in r296947 in that it is not possible to assert
which thread holds a shared (or read) lock, but it is possible to assert
that one is held. Just not very useful.
MFC after: 1 week
Submitted by: wblock, jhb
Reviewed by: kib (earlier version), jhb, wblock
Sponsored by: EMC / Isilon Storage Division
Differential Revision: https://reviews.freebsd.org/D5659
Notes:
svn path=/head/; revision=297394
|
|
|
|
|
|
|
|
|
|
| |
For non-WITNESS< assertion support for SA_UNLOCKED was added in r125421 and
made to panic in r126316.
MFC after: 1 week
Notes:
svn path=/head/; revision=296947
|
|
|
|
|
|
|
|
|
| |
The default changed in r193011.
MFC after: 1 week
Notes:
svn path=/head/; revision=296819
|
|
|
|
|
|
|
|
|
| |
Differential Revision: https://reviews.freebsd.org/D1314
Reviewed by: wblock
MFC after: 1 Month
Notes:
svn path=/head/; revision=275813
|
|
|
|
|
|
|
|
|
|
|
| |
A _NEW flag passed to _init_flags() to avoid check for double-init.
Differential Revision: https://reviews.freebsd.org/D1208
Reviewed by: jhb, wblock
MFC after: 1 Month
Notes:
svn path=/head/; revision=275751
|
|
|
|
|
|
|
|
|
|
| |
This enables locking consumers to pass their own structures around as const and
be able to assert locks embedded into those structures.
Reviewed by: ed, kib, jhb
Notes:
svn path=/head/; revision=227588
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Introduce for this operation the reverse NO_ADAPTIVE_SX option.
The flag SX_ADAPTIVESPIN to be passed to sx_init_flags(9) gets suppressed
and the new flag, offering the reversed logic, SX_NOADAPTIVE is added.
Additively implements adaptive spininning for sx held in shared mode.
The spinning limit can be handled through sysctls in order to be tuned
while the code doesn't reach the release, after which time they should
be dropped probabilly.
This change has made been necessary by recent benchmarks where it does
improve concurrency of workloads in presence of high contention
(ie. ZFS).
KPI breakage is documented by __FreeBSD_version bumping, manpage and
UPDATING updates.
Requested by: jeff, kmacy
Reviewed by: jeff
Tested by: pho
Notes:
svn path=/head/; revision=193011
|
|
|
|
| |
Notes:
svn path=/head/; revision=173940
|
|
|
|
|
|
|
| |
sx_slock_sig() and sx_xlock_sig() and their respective explanation.
Notes:
svn path=/head/; revision=173888
|
|
|
|
|
|
|
|
|
|
| |
SA_* to match mutexes and rwlocks. The old flags still exist for
backwards compatiblity.
Requested by: attilio
Notes:
svn path=/head/; revision=169780
|
|
|
|
| |
Notes:
svn path=/head/; revision=169777
|
|
|
|
| |
Notes:
svn path=/head/; revision=169770
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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
Notes:
svn path=/head/; revision=168191
|
|
|
|
| |
Notes:
svn path=/head/; revision=168071
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
event. Locking primitives that support this (mtx, rw, and sx) now each
include their own foo_sleep() routine.
- Rename msleep() to _sleep() and change it's 'struct mtx' object to a
'struct lock_object' pointer. _sleep() uses the recently added
lc_unlock() and lc_lock() function pointers for the lock class of the
specified lock to release the lock while the thread is suspended.
- Add wrappers around _sleep() for mutexes (mtx_sleep()), rw locks
(rw_sleep()), and sx locks (sx_sleep()). msleep() still exists and
is now identical to mtx_sleep(), but it is deprecated.
- Rename SLEEPQ_MSLEEP to SLEEPQ_SLEEP.
- Rewrite much of sleep.9 to not be msleep(9) centric.
- Flesh out the 'RETURN VALUES' section in sleep.9 and add an 'ERRORS'
section.
- Add __nonnull(1) to _sleep() and msleep_spin() so that the compiler will
warn if you try to pass a NULL wait channel. The functions already have
a KASSERT to that effect.
Notes:
svn path=/head/; revision=167387
|
|
|
|
|
|
|
|
|
|
|
|
| |
- Markup sx_unlock() as a function rather than saying it is a macro.
The macro part is an implementation detail, and all the other sx_*lock()
functions are actually macros, too.
- Use the same style as rwlock(9) and mutex(9) to markup sx_assert() and
SX_SYSINIT() with respect to headers and kernel options.
- Add a missing MLINK.
Notes:
svn path=/head/; revision=167371
|
|
|
|
|
|
|
| |
Submitted by: ssouhlal
Notes:
svn path=/head/; revision=160300
|
|
|
|
| |
Notes:
svn path=/head/; revision=157880
|
|
|
|
|
|
|
| |
Reviewed by: ru
Notes:
svn path=/head/; revision=155193
|
|
|
|
| |
Notes:
svn path=/head/; revision=140140
|
|
|
|
|
|
|
|
|
|
|
| |
after acquiring a mutex(9).
PR: docs/75571
Submitted by: darrenr
Explanation by: jhb
Notes:
svn path=/head/; revision=139736
|
|
|
|
|
|
|
|
| |
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.
Notes:
svn path=/head/; revision=131985
|
|
|
|
| |
Notes:
svn path=/head/; revision=130582
|
|
|
|
|
|
|
|
|
|
|
|
| |
a single lock at the same time.
- Avoid using "own" to refer to holding either a shared or exclusive lock
as it is only really correct for exclusive locks.
- Reword the sentence about sleep-ability to read easier.
Requested by: truckman (1)
Notes:
svn path=/head/; revision=126202
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
PS. There is a inconsistency in this manual page, because in
non-WITNESS case sx_assert(9) does not panics, it only prints
the warning. I haven't fixed this, because jhb@ is planing to
replace those printf()s with panic()s.
Reviewed by: jhb
Approved by: jhb, scottl (mentor)
Notes:
svn path=/head/; revision=125422
|
|
|
|
|
|
|
|
|
|
|
| |
synopsis, with supporting text in the body of the manual page.
Add a cross-reference to panic(9) for completeness.
Reviewed by: ru (synopsis changes)
Notes:
svn path=/head/; revision=124037
|
|
|
|
|
|
|
|
|
| |
- A #include of <sys/mutex.h> is no longer needed to use sx(9) (since
2001/05/01).
- Use of the SX_SYSINIT() macro requires inclusion of '<sys/kernel.h>'
Notes:
svn path=/head/; revision=123918
|
|
|
|
| |
Notes:
svn path=/head/; revision=123891
|
|
|
|
| |
Notes:
svn path=/head/; revision=120054
|
|
|
|
|
|
|
| |
Discussed with: jhb@
Notes:
svn path=/head/; revision=116255
|
|
|
|
| |
Notes:
svn path=/head/; revision=97493
|
|
|
|
| |
Notes:
svn path=/head/; revision=94964
|
|
|
|
| |
Notes:
svn path=/head/; revision=94474
|
|
|
|
|
|
|
|
| |
recent additions of these macros.
- Add in a MLINK to create SX_SYSINIT.9 and MTX_SYSINIT.9.
Notes:
svn path=/head/; revision=93680
|
|
|
|
|
|
|
| |
Submitted by: Garrett Rooney <rooneg@electricjellyfish.net>
Notes:
svn path=/head/; revision=93337
|
|
|
|
| |
Notes:
svn path=/head/; revision=86723
|
|
|
|
| |
Notes:
svn path=/head/; revision=86722
|
|
|
|
| |
Notes:
svn path=/head/; revision=85392
|
|
|
|
| |
Notes:
svn path=/head/; revision=84453
|
|
|
|
| |
Notes:
svn path=/head/; revision=84306
|
|
|
|
|
|
|
| |
man pages to their brethren.
Notes:
svn path=/head/; revision=83567
|
|
|
|
| |
Notes:
svn path=/head/; revision=81633
|
|
|
|
| |
Notes:
svn path=/head/; revision=81616
|
|
|
|
|
|
|
| |
Submitted by: Alexander Kabaev <ak03@gte.com>
Notes:
svn path=/head/; revision=81599
|
|
|
|
| |
Notes:
svn path=/head/; revision=81588
|
|
|
|
| |
Notes:
svn path=/head/; revision=81223
|