lkml.org 
[lkml]   [2016]   [Sep]   [19]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
Date
From
SubjectRe: [PATCH v3 03/15] lockdep: Refactor lookup_chain_cache()
On Mon, Sep 19, 2016 at 11:36:25AM -0500, Nilay Vaish wrote:
> On 18 September 2016 at 22:05, Byungchul Park <byungchul.park@lge.com> wrote:
> > On Thu, Sep 15, 2016 at 10:33:46AM -0500, Nilay Vaish wrote:
> >> On 13 September 2016 at 04:45, Byungchul Park <byungchul.park@lge.com> wrote:
> >> > @@ -2215,6 +2178,75 @@ cache_hit:
> >> > return 1;
> >> > }
> >> >
> >> > +/*
> >> > + * Look up a dependency chain.
> >> > + */
> >> > +static inline struct lock_chain *lookup_chain_cache(u64 chain_key)
> >> > +{
> >> > + struct hlist_head *hash_head = chainhashentry(chain_key);
> >> > + struct lock_chain *chain;
> >> > +
> >> > + /*
> >> > + * We can walk it lock-free, because entries only get added
> >> > + * to the hash:
> >> > + */
> >> > + hlist_for_each_entry_rcu(chain, hash_head, entry) {
> >> > + if (chain->chain_key == chain_key) {
> >> > + debug_atomic_inc(chain_lookup_hits);
> >> > + return chain;
> >> > + }
> >> > + }
> >> > + return NULL;
> >> > +}
> >>
> >> Byungchul, do you think we should increment chain_lookup_misses
> >> before returning NULL from the above function?
> >
> > Hello,
> >
> > No, I don't think so.
> > It will be done in add_chain_cache().
> >
>
> I think you are assuming that a call to lookup will always be followed
> by add. I thought the point of breaking the original function into
> two was that each of the functions can be used individually, without
> the other being called. This means we would not increment the number

Right.

But, we have to remind that counting for cache miss can happen twice if
it's handled in lookup_chain_cache(), because chain_lookup_misses() is
called twice every lookup. One is 'lockless access' for fast path, the
other is 'lock-protected access' for guarranting real miss.

So only when the miss is indentified under lock-protected,
chain_lookup_misses has to be counted. Current chain_lookup_misses means
that "cache miss happened and was _added_ into cache", semantically.
Thus I think it's not bad to handle it in add().

> of misses when only lookup() gets called, but not add(). Or we would

lookup() might be called locklessly for fast path. It would be useful, but
it guarrantees nothing but cache bit. So we cannot count miss in lookup().
Furthermore, we have to assume add() is called when cache miss.

> increment the number of misses when only add() is called and not
> lookup().

Actually add() will not be called without calling lookup(). Anyway, I can
see what you're concerning.. Is there any alterative which is better?

>
> It really seems odd to me that hits get incremented in lookup and misses don't.
>
> --
> Nilay

\
 
 \ /
  Last update: 2016-09-20 04:10    [W:0.087 / U:1.236 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site