kref: Fix typo in kref documentation
authorJavi Merino <cibervicho@gmail.com>
Mon, 7 Mar 2011 21:13:07 +0000 (21:13 +0000)
committerGreg Kroah-Hartman <gregkh@suse.de>
Mon, 7 Mar 2011 21:20:05 +0000 (13:20 -0800)
container_of() should refer to the struct created in the example.

Signed-off-by: Javi Merino <cibervicho@gmail.com>
Cc: Randy Dunlap <rdunlap@xenotime.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Documentation/kref.txt

index ae203f91ee9b8a80e54f98d76f09457a665cad0f..48ba715d5a633fb246855aca0595ce47ecb5e187 100644 (file)
@@ -156,7 +156,7 @@ static struct my_data *get_entry()
        struct my_data *entry = NULL;
        mutex_lock(&mutex);
        if (!list_empty(&q)) {
-               entry = container_of(q.next, struct my_q_entry, link);
+               entry = container_of(q.next, struct my_data, link);
                kref_get(&entry->refcount);
        }
        mutex_unlock(&mutex);
This page took 0.026437 seconds and 5 git commands to generate.