From: Matthew Wilcox <willy@infradead.org>
To: rao.shoaib@oracle.com
Cc: linux-kernel@vger.kernel.org, paulmck@linux.vnet.ibm.com,
brouer@redhat.com, linux-mm@kvack.org
Subject: Re: [PATCH] Move kfree_call_rcu() to slab_common.c
Date: Thu, 21 Dec 2017 04:36:30 -0800 [thread overview]
Message-ID: <20171221123630.GB22405@bombadil.infradead.org> (raw)
In-Reply-To: <1513844387-2668-1-git-send-email-rao.shoaib@oracle.com>
On Thu, Dec 21, 2017 at 12:19:47AM -0800, rao.shoaib@oracle.com wrote:
> This patch moves kfree_call_rcu() and related macros out of rcu code. A new
> function __call_rcu_lazy() is created for calling __call_rcu() with the lazy
> flag.
Something you probably didn't know ... there are two RCU implementations
in the kernel; Tree and Tiny. It looks like you've only added
__call_rcu_lazy() to Tree and you'll also need to add it to Tiny.
> Also moving macros generated following checkpatch noise. I do not know
> how to silence checkpatch as there is nothing wrong.
>
> CHECK: Macro argument reuse 'offset' - possible side-effects?
> #91: FILE: include/linux/slab.h:348:
> +#define __kfree_rcu(head, offset) \
> + do { \
> + BUILD_BUG_ON(!__is_kfree_rcu_offset(offset)); \
> + kfree_call_rcu(head, (rcu_callback_t)(unsigned long)(offset)); \
> + } while (0)
What checkpatch is warning you about here is that somebody might call
__kfree_rcu(p, a++);
and this would expand into
do { \
BUILD_BUG_ON(!__is_kfree_rcu_offset(a++)); \
kfree_call_rcu(p, (rcu_callback_t)(unsigned long)(a++)); \
} while (0)
which would increment 'a' twice, and cause pain and suffering.
That's pretty unlikely usage of __kfree_rcu(), but I suppose it's not
impossible. We have various hacks to get around this kind of thing;
for example I might do this as::
#define __kfree_rcu(head, offset) \
do { \
unsigned long __o = offset;
BUILD_BUG_ON(!__is_kfree_rcu_offset(__o)); \
kfree_call_rcu(head, (rcu_callback_t)(unsigned long)(__o)); \
} while (0)
Now offset is only evaluated once per invocation of the macro. The other
two warnings are the same problem.
--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org. For more info on Linux MM,
see: http://www.linux-mm.org/ .
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>
next prev parent reply other threads:[~2017-12-21 12:36 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-12-21 8:19 rao.shoaib
2017-12-21 12:36 ` Matthew Wilcox [this message]
2017-12-21 17:31 ` Rao Shoaib
2017-12-22 1:39 ` Paul E. McKenney
2017-12-22 3:17 ` Rao Shoaib
2018-01-02 20:24 ` Paul E. McKenney
2017-12-21 15:54 ` Paul E. McKenney
2017-12-21 17:06 ` Matthew Wilcox
2017-12-22 1:27 ` Paul E. McKenney
2017-12-22 1:30 ` Paul E. McKenney
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20171221123630.GB22405@bombadil.infradead.org \
--to=willy@infradead.org \
--cc=brouer@redhat.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=paulmck@linux.vnet.ibm.com \
--cc=rao.shoaib@oracle.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox