Remove asserts that Giant is not held on entrance into geom KPI, which

outlived their usefulness.  This allows to remove drop/pickup Giant
wrappers around GEOM calls.

Discussed with:	alfred, imp, phk
Sponsored by:	The FreeBSD Foundation
This commit is contained in:
Konstantin Belousov 2016-05-20 08:22:20 +00:00
parent 82d2623e5a
commit dff9131e58
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=300287
3 changed files with 0 additions and 5 deletions

View File

@ -371,7 +371,6 @@ g_free(void *ptr)
#define g_topology_lock() \
do { \
mtx_assert(&Giant, MA_NOTOWNED); \
sx_xlock(&topology_lock); \
} while (0)

View File

@ -83,7 +83,6 @@ g_waitidle(void)
{
g_topology_assert_not();
mtx_assert(&Giant, MA_NOTOWNED);
mtx_lock(&g_eventlock);
while (!TAILQ_EMPTY(&g_events))

View File

@ -90,7 +90,6 @@ static void
g_up_procbody(void *arg)
{
mtx_assert(&Giant, MA_NOTOWNED);
thread_lock(g_up_td);
sched_prio(g_up_td, PRIBIO);
thread_unlock(g_up_td);
@ -103,7 +102,6 @@ static void
g_down_procbody(void *arg)
{
mtx_assert(&Giant, MA_NOTOWNED);
thread_lock(g_down_td);
sched_prio(g_down_td, PRIBIO);
thread_unlock(g_down_td);
@ -116,7 +114,6 @@ static void
g_event_procbody(void *arg)
{
mtx_assert(&Giant, MA_NOTOWNED);
thread_lock(g_event_td);
sched_prio(g_event_td, PRIBIO);
thread_unlock(g_event_td);