Commit 6d1823cc authored by Boqun Feng's avatar Boqun Feng Committed by Peter Zijlstra

lockdep: Optimize the memory usage of circular queue

Qian Cai reported a BFS_EQUEUEFULL warning [1] after read recursive
deadlock detection merged into tip tree recently. Unlike the previous
lockep graph searching, which iterate every lock class (every node in
the graph) exactly once, the graph searching for read recurisve deadlock
detection needs to iterate every lock dependency (every edge in the
graph) once, as a result, the maximum memory cost of the circular queue
changes from O(V), where V is the number of lock classes (nodes or
vertices) in the graph, to O(E), where E is the number of lock
dependencies (edges), because every lock class or dependency gets
enqueued once in the BFS. Therefore we hit the BFS_EQUEUEFULL case.

However, actually we don't need to enqueue all dependencies for the BFS,
because every time we enqueue a dependency, we almostly enqueue all
other dependencies in the same dependency list ("almostly" is because
we currently check before enqueue, so if a dependency doesn't pass the
check stage we won't enqueue it, however, we can always do in reverse
ordering), based on this, we can only enqueue the first dependency from
a dependency list and every time we want to fetch a new dependency to
work, we can either:

  1)	fetch the dependency next to the current dependency in the
	dependency list
or

  2)	if the dependency in 1) doesn't exist, fetch the dependency from
	the queue.

With this approach, the "max bfs queue depth" for a x86_64_defconfig +
lockdep and selftest config kernel can get descreased from:

        max bfs queue depth:                   201

to (after apply this patch)

        max bfs queue depth:                   61

While I'm at it, clean up the code logic a little (e.g. directly return
other than set a "ret" value and goto the "exit" label).

[1]: https://lore.kernel.org/lkml/17343f6f7f2438fc376125384133c5ba70c2a681.camel@redhat.com/Reported-by: default avatarQian Cai <cai@redhat.com>
Reported-by: syzbot+62ebe501c1ce9a91f68c@syzkaller.appspotmail.com
Signed-off-by: default avatarBoqun Feng <boqun.feng@gmail.com>
Signed-off-by: default avatarPeter Zijlstra (Intel) <peterz@infradead.org>
Link: https://lkml.kernel.org/r/20200917080210.108095-1-boqun.feng@gmail.com
parent 267580db
...@@ -1606,6 +1606,15 @@ static inline void bfs_init_rootb(struct lock_list *lock, ...@@ -1606,6 +1606,15 @@ static inline void bfs_init_rootb(struct lock_list *lock,
lock->only_xr = (hlock->read != 0); lock->only_xr = (hlock->read != 0);
} }
static inline struct lock_list *__bfs_next(struct lock_list *lock, int offset)
{
if (!lock || !lock->parent)
return NULL;
return list_next_or_null_rcu(get_dep_list(lock->parent, offset),
&lock->entry, struct lock_list, entry);
}
/* /*
* Breadth-First Search to find a strong path in the dependency graph. * Breadth-First Search to find a strong path in the dependency graph.
* *
...@@ -1639,36 +1648,25 @@ static enum bfs_result __bfs(struct lock_list *source_entry, ...@@ -1639,36 +1648,25 @@ static enum bfs_result __bfs(struct lock_list *source_entry,
struct lock_list **target_entry, struct lock_list **target_entry,
int offset) int offset)
{ {
struct circular_queue *cq = &lock_cq;
struct lock_list *lock = NULL;
struct lock_list *entry; struct lock_list *entry;
struct lock_list *lock;
struct list_head *head; struct list_head *head;
struct circular_queue *cq = &lock_cq; unsigned int cq_depth;
enum bfs_result ret = BFS_RNOMATCH; bool first;
lockdep_assert_locked(); lockdep_assert_locked();
if (match(source_entry, data)) {
*target_entry = source_entry;
ret = BFS_RMATCH;
goto exit;
}
head = get_dep_list(source_entry, offset);
if (list_empty(head))
goto exit;
__cq_init(cq); __cq_init(cq);
__cq_enqueue(cq, source_entry); __cq_enqueue(cq, source_entry);
while ((lock = __cq_dequeue(cq))) { while ((lock = __bfs_next(lock, offset)) || (lock = __cq_dequeue(cq))) {
bool prev_only_xr; if (!lock->class)
return BFS_EINVALIDNODE;
if (!lock->class) {
ret = BFS_EINVALIDNODE;
goto exit;
}
/* /*
* Step 1: check whether we already finish on this one.
*
* If we have visited all the dependencies from this @lock to * If we have visited all the dependencies from this @lock to
* others (iow, if we have visited all lock_list entries in * others (iow, if we have visited all lock_list entries in
* @lock->class->locks_{after,before}) we skip, otherwise go * @lock->class->locks_{after,before}) we skip, otherwise go
...@@ -1680,13 +1678,13 @@ static enum bfs_result __bfs(struct lock_list *source_entry, ...@@ -1680,13 +1678,13 @@ static enum bfs_result __bfs(struct lock_list *source_entry,
else else
mark_lock_accessed(lock); mark_lock_accessed(lock);
head = get_dep_list(lock, offset); /*
* Step 2: check whether prev dependency and this form a strong
prev_only_xr = lock->only_xr; * dependency path.
*/
list_for_each_entry_rcu(entry, head, entry) { if (lock->parent) { /* Parent exists, check prev dependency */
unsigned int cq_depth; u8 dep = lock->dep;
u8 dep = entry->dep; bool prev_only_xr = lock->parent->only_xr;
/* /*
* Mask out all -(S*)-> if we only have *R in previous * Mask out all -(S*)-> if we only have *R in previous
...@@ -1701,26 +1699,49 @@ static enum bfs_result __bfs(struct lock_list *source_entry, ...@@ -1701,26 +1699,49 @@ static enum bfs_result __bfs(struct lock_list *source_entry,
continue; continue;
/* If there are only -(*R)-> left, set that for the next step */ /* If there are only -(*R)-> left, set that for the next step */
entry->only_xr = !(dep & (DEP_SN_MASK | DEP_EN_MASK)); lock->only_xr = !(dep & (DEP_SN_MASK | DEP_EN_MASK));
visit_lock_entry(entry, lock);
if (match(entry, data)) {
*target_entry = entry;
ret = BFS_RMATCH;
goto exit;
} }
if (__cq_enqueue(cq, entry)) { /*
ret = BFS_EQUEUEFULL; * Step 3: we haven't visited this and there is a strong
goto exit; * dependency path to this, so check with @match.
*/
if (match(lock, data)) {
*target_entry = lock;
return BFS_RMATCH;
} }
/*
* Step 4: if not match, expand the path by adding the
* forward or backwards dependencis in the search
*
*/
first = true;
head = get_dep_list(lock, offset);
list_for_each_entry_rcu(entry, head, entry) {
visit_lock_entry(entry, lock);
/*
* Note we only enqueue the first of the list into the
* queue, because we can always find a sibling
* dependency from one (see __bfs_next()), as a result
* the space of queue is saved.
*/
if (!first)
continue;
first = false;
if (__cq_enqueue(cq, entry))
return BFS_EQUEUEFULL;
cq_depth = __cq_get_elem_count(cq); cq_depth = __cq_get_elem_count(cq);
if (max_bfs_queue_depth < cq_depth) if (max_bfs_queue_depth < cq_depth)
max_bfs_queue_depth = cq_depth; max_bfs_queue_depth = cq_depth;
} }
} }
exit:
return ret; return BFS_RNOMATCH;
} }
static inline enum bfs_result static inline enum bfs_result
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment