* [patch] avoid kmemcheck warning in epoll
@ 2008-02-10 21:32 Davide Libenzi
2008-02-11 22:56 ` Andrew Morton
0 siblings, 1 reply; 5+ messages in thread
From: Davide Libenzi @ 2008-02-10 21:32 UTC (permalink / raw)
To: Linux Kernel Mailing List; +Cc: Andrew Morton, Andrea Arcangeli, Vegard Nossum
Epoll calls rb_set_parent(n, n) to initialize the rb-tree node, but
rb_set_parent() accesses node's pointer in its code. This creates a
warning in kmemcheck (reported by Vegard Nossum) about an uninitialized
memory access. The warning is harmless since the following rb-tree node
insert is going to overwrite the node data. In any case I think it's
better to not have that happening at all, and fix it by properly
initializing the data.
Signed-off-by: Davide Libenzi <davidel@xmailserver.org>
- Davide
---
fs/eventpoll.c | 2 +-
include/linux/rbtree.h | 12 ++++++++++++
2 files changed, 13 insertions(+), 1 deletion(-)
Index: linux-2.6.mod/fs/eventpoll.c
===================================================================
--- linux-2.6.mod.orig/fs/eventpoll.c 2008-02-10 12:36:20.000000000 -0800
+++ linux-2.6.mod/fs/eventpoll.c 2008-02-10 12:50:41.000000000 -0800
@@ -260,7 +260,7 @@
/* Special initialization for the RB tree node to detect linkage */
static inline void ep_rb_initnode(struct rb_node *n)
{
- rb_set_parent(n, n);
+ rb_init_node(n, n);
}
/* Removes a node from the RB tree and marks it for a fast is-linked check */
Index: linux-2.6.mod/include/linux/rbtree.h
===================================================================
--- linux-2.6.mod.orig/include/linux/rbtree.h 2008-02-10 12:36:13.000000000 -0800
+++ linux-2.6.mod/include/linux/rbtree.h 2008-02-10 12:51:57.000000000 -0800
@@ -112,6 +112,18 @@
struct rb_node *rb_node;
};
+/**
+ * rb_init_node - Initializes the node internal data
+ *
+ * @node: Pointer to the RB-Tree node
+ * @parent: Pointer to the parent node, or NULL
+ *
+ */
+static inline void rb_init_node(struct rb_node *node, struct rb_node *parent)
+{
+ node->rb_parent_color = (unsigned long) parent;
+ node->rb_left = node->rb_right = NULL;
+}
#define rb_parent(r) ((struct rb_node *)((r)->rb_parent_color & ~3))
#define rb_color(r) ((r)->rb_parent_color & 1)
^ permalink raw reply [flat|nested] 5+ messages in thread* Re: [patch] avoid kmemcheck warning in epoll
2008-02-10 21:32 [patch] avoid kmemcheck warning in epoll Davide Libenzi
@ 2008-02-11 22:56 ` Andrew Morton
2008-02-11 23:37 ` Davide Libenzi
0 siblings, 1 reply; 5+ messages in thread
From: Andrew Morton @ 2008-02-11 22:56 UTC (permalink / raw)
To: Davide Libenzi; +Cc: linux-kernel, andrea, vegard.nossum
On Sun, 10 Feb 2008 13:32:01 -0800 (PST)
Davide Libenzi <davidel@xmailserver.org> wrote:
> Epoll calls rb_set_parent(n, n) to initialize the rb-tree node, but
> rb_set_parent() accesses node's pointer in its code. This creates a
> warning in kmemcheck (reported by Vegard Nossum) about an uninitialized
> memory access. The warning is harmless since the following rb-tree node
> insert is going to overwrite the node data. In any case I think it's
> better to not have that happening at all, and fix it by properly
> initializing the data.
>
>
> Signed-off-by: Davide Libenzi <davidel@xmailserver.org>
>
>
> - Davide
>
>
> ---
> fs/eventpoll.c | 2 +-
> include/linux/rbtree.h | 12 ++++++++++++
> 2 files changed, 13 insertions(+), 1 deletion(-)
>
> Index: linux-2.6.mod/fs/eventpoll.c
> ===================================================================
> --- linux-2.6.mod.orig/fs/eventpoll.c 2008-02-10 12:36:20.000000000 -0800
> +++ linux-2.6.mod/fs/eventpoll.c 2008-02-10 12:50:41.000000000 -0800
> @@ -260,7 +260,7 @@
> /* Special initialization for the RB tree node to detect linkage */
> static inline void ep_rb_initnode(struct rb_node *n)
> {
> - rb_set_parent(n, n);
> + rb_init_node(n, n);
> }
>
> /* Removes a node from the RB tree and marks it for a fast is-linked check */
> Index: linux-2.6.mod/include/linux/rbtree.h
> ===================================================================
> --- linux-2.6.mod.orig/include/linux/rbtree.h 2008-02-10 12:36:13.000000000 -0800
> +++ linux-2.6.mod/include/linux/rbtree.h 2008-02-10 12:51:57.000000000 -0800
> @@ -112,6 +112,18 @@
> struct rb_node *rb_node;
> };
>
> +/**
> + * rb_init_node - Initializes the node internal data
> + *
> + * @node: Pointer to the RB-Tree node
> + * @parent: Pointer to the parent node, or NULL
> + *
> + */
> +static inline void rb_init_node(struct rb_node *node, struct rb_node *parent)
> +{
> + node->rb_parent_color = (unsigned long) parent;
> + node->rb_left = node->rb_right = NULL;
> +}
Is epoll the only rbtree-using code which exhibits this problem? If so,
what is epoll doing differently from all the others?
^ permalink raw reply [flat|nested] 5+ messages in thread* Re: [patch] avoid kmemcheck warning in epoll
2008-02-11 22:56 ` Andrew Morton
@ 2008-02-11 23:37 ` Davide Libenzi
0 siblings, 0 replies; 5+ messages in thread
From: Davide Libenzi @ 2008-02-11 23:37 UTC (permalink / raw)
To: Andrew Morton; +Cc: Linux Kernel Mailing List, andrea, vegard.nossum
On Mon, 11 Feb 2008, Andrew Morton wrote:
> On Sun, 10 Feb 2008 13:32:01 -0800 (PST)
> Davide Libenzi <davidel@xmailserver.org> wrote:
>
> > Epoll calls rb_set_parent(n, n) to initialize the rb-tree node, but
> > rb_set_parent() accesses node's pointer in its code. This creates a
> > warning in kmemcheck (reported by Vegard Nossum) about an uninitialized
> > memory access. The warning is harmless since the following rb-tree node
> > insert is going to overwrite the node data. In any case I think it's
> > better to not have that happening at all, and fix it by properly
> > initializing the data.
> >
> >
> > Signed-off-by: Davide Libenzi <davidel@xmailserver.org>
> >
> >
> > - Davide
> >
> >
> > ---
> > fs/eventpoll.c | 2 +-
> > include/linux/rbtree.h | 12 ++++++++++++
> > 2 files changed, 13 insertions(+), 1 deletion(-)
> >
> > Index: linux-2.6.mod/fs/eventpoll.c
> > ===================================================================
> > --- linux-2.6.mod.orig/fs/eventpoll.c 2008-02-10 12:36:20.000000000 -0800
> > +++ linux-2.6.mod/fs/eventpoll.c 2008-02-10 12:50:41.000000000 -0800
> > @@ -260,7 +260,7 @@
> > /* Special initialization for the RB tree node to detect linkage */
> > static inline void ep_rb_initnode(struct rb_node *n)
> > {
> > - rb_set_parent(n, n);
> > + rb_init_node(n, n);
> > }
> >
> > /* Removes a node from the RB tree and marks it for a fast is-linked check */
> > Index: linux-2.6.mod/include/linux/rbtree.h
> > ===================================================================
> > --- linux-2.6.mod.orig/include/linux/rbtree.h 2008-02-10 12:36:13.000000000 -0800
> > +++ linux-2.6.mod/include/linux/rbtree.h 2008-02-10 12:51:57.000000000 -0800
> > @@ -112,6 +112,18 @@
> > struct rb_node *rb_node;
> > };
> >
> > +/**
> > + * rb_init_node - Initializes the node internal data
> > + *
> > + * @node: Pointer to the RB-Tree node
> > + * @parent: Pointer to the parent node, or NULL
> > + *
> > + */
> > +static inline void rb_init_node(struct rb_node *node, struct rb_node *parent)
> > +{
> > + node->rb_parent_color = (unsigned long) parent;
> > + node->rb_left = node->rb_right = NULL;
> > +}
>
> Is epoll the only rbtree-using code which exhibits this problem? If so,
> what is epoll doing differently from all the others?
Dunno, but I don't think so. Epoll initializes the node to a state so that
later on can check if the file-fd item is inserted or not. And it uses the
"parent" information for that. But rb_set_parent() (that is used in the
current initialization code) uses the data in the node, and this triggers
the uninitialized memory access.
Taking a better look at it, the code (after the latest changes) has no
more point-of-failures after the rb-tree insert, so I can probably avoid
doing the node's parent-initialization and check altogether.
Yeah, let's that ;)
eventpoll.c | 27 +++------------------------
1 file changed, 3 insertions(+), 24 deletions(-)
Andrew, drop that one. I'm gonna send the new one after some test...
- Davide
^ permalink raw reply [flat|nested] 5+ messages in thread
* [patch] avoid kmemcheck warning in epoll
@ 2008-02-12 6:03 Davide Libenzi
2008-02-12 6:21 ` Andrew Morton
0 siblings, 1 reply; 5+ messages in thread
From: Davide Libenzi @ 2008-02-12 6:03 UTC (permalink / raw)
To: Linux Kernel Mailing List; +Cc: Andrew Morton, Vegard Nossum
Epoll calls rb_set_parent(n, n) to initialize the rb-tree node, but
rb_set_parent() accesses node's pointer in its code. This creates a
warning in kmemcheck (reported by Vegard Nossum) about an uninitialized
memory access. The warning is harmless since the following rb-tree node
insert is going to overwrite the node data. In any case I think it's
better to not have that happening at all, and fix it by simplifying the
code to get rid of a few lines that became superfluous after the previous
epoll changes.
Signed-off-by: Davide Libenzi <davidel@xmailserver.org>
- Davide
---
fs/eventpoll.c | 27 +++------------------------
1 file changed, 3 insertions(+), 24 deletions(-)
Index: linux-2.6.mod/fs/eventpoll.c
===================================================================
--- linux-2.6.mod.orig/fs/eventpoll.c 2008-02-11 15:31:02.000000000 -0800
+++ linux-2.6.mod/fs/eventpoll.c 2008-02-11 15:32:46.000000000 -0800
@@ -257,25 +257,6 @@
(p1->file < p2->file ? -1 : p1->fd - p2->fd));
}
-/* Special initialization for the RB tree node to detect linkage */
-static inline void ep_rb_initnode(struct rb_node *n)
-{
- rb_set_parent(n, n);
-}
-
-/* Removes a node from the RB tree and marks it for a fast is-linked check */
-static inline void ep_rb_erase(struct rb_node *n, struct rb_root *r)
-{
- rb_erase(n, r);
- rb_set_parent(n, n);
-}
-
-/* Fast check to verify that the item is linked to the main RB tree */
-static inline int ep_rb_linked(struct rb_node *n)
-{
- return rb_parent(n) != n;
-}
-
/* Tells us if the item is currently linked */
static inline int ep_is_linked(struct list_head *p)
{
@@ -283,13 +264,13 @@
}
/* Get the "struct epitem" from a wait queue pointer */
-static inline struct epitem * ep_item_from_wait(wait_queue_t *p)
+static inline struct epitem *ep_item_from_wait(wait_queue_t *p)
{
return container_of(p, struct eppoll_entry, wait)->base;
}
/* Get the "struct epitem" from an epoll queue wrapper */
-static inline struct epitem * ep_item_from_epqueue(poll_table *p)
+static inline struct epitem *ep_item_from_epqueue(poll_table *p)
{
return container_of(p, struct ep_pqueue, pt)->epi;
}
@@ -411,8 +392,7 @@
list_del_init(&epi->fllink);
spin_unlock(&file->f_ep_lock);
- if (ep_rb_linked(&epi->rbn))
- ep_rb_erase(&epi->rbn, &ep->rbr);
+ rb_erase(&epi->rbn, &ep->rbr);
spin_lock_irqsave(&ep->lock, flags);
if (ep_is_linked(&epi->rdllink))
@@ -728,7 +708,6 @@
goto error_return;
/* Item initialization follow here ... */
- ep_rb_initnode(&epi->rbn);
INIT_LIST_HEAD(&epi->rdllink);
INIT_LIST_HEAD(&epi->fllink);
INIT_LIST_HEAD(&epi->pwqlist);
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2008-02-12 6:23 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-02-10 21:32 [patch] avoid kmemcheck warning in epoll Davide Libenzi
2008-02-11 22:56 ` Andrew Morton
2008-02-11 23:37 ` Davide Libenzi
-- strict thread matches above, loose matches on Subject: below --
2008-02-12 6:03 Davide Libenzi
2008-02-12 6:21 ` Andrew Morton
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.