lkml.org 
[lkml]   [2022]   [Nov]   [14]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
From
SubjectRe: [PATCH] sbitmap: Use single per-bitmap counting to wake up queued tags
Date
Jan Kara <jack@suse.cz> writes:

> Now this may be also problematic - when we were checking the number of woken
> waiters in the older version of the patch (for others: internal version of
> the patch) this was fine but now it may happen that the 'ws' we have
> selected has no waiters anymore. And in that case we need to find another
> waitqueue because otherwise we'd be loosing too many wakeups and we could
> deadlock. So I think this rather needs to be something like:
>
> do {
> if (atomic_read(&sbq->completion_cnt) - wakeups < wake_batch)
> return;
> } while (!atomic_try_cmpxchg(&sbq->wakeup_cnt,
> &wakeups, wakeups + wake_batch));
>
> do {
> ws = sbq_wake_ptr(sbq);
> if (!ws)
> return;

Jan,

Does this really solve it? There is no guarantee there will be another
waiter in the queues when we check here. So, once again we could not
wake up anyone and return it this if leg. If that is the case, don't we
end up overshooting wakeups and end up again with less completions than
required to wake up an incoming io?

--
Gabriel Krisman Bertazi

\
 
 \ /
  Last update: 2022-11-15 04:53    [W:0.162 / U:0.228 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site