tree fbeffafc1b3161bba4767676a53a177fd4c5c33b
parent 0481990b758628e12f4b0a9e15094e70cefc7cd1
author Linus Torvalds <[EMAIL PROTECTED]> Thu, 08 Sep 2005 07:50:58 -0700
committer Linus Torvalds <[EMAIL PROTECTED]> Thu, 08 Sep 2005 07:50:58 -0700

[SCSI] Revert "final klist fixes"

Revert commit 2b7d6a8cb9718fc1d9e826201b64909c44a915f4.

The "fix" was known to not even compile.  Duh.  That's not a fix.
That's just stupid.

Signed-off-by: Linus Torvalds <[EMAIL PROTECTED]>

 drivers/base/attribute_container.c |   24 ++++--------------------
 1 files changed, 4 insertions(+), 20 deletions(-)

diff --git a/drivers/base/attribute_container.c 
b/drivers/base/attribute_container.c
--- a/drivers/base/attribute_container.c
+++ b/drivers/base/attribute_container.c
@@ -27,21 +27,6 @@ struct internal_container {
        struct class_device classdev;
 };
 
-static void internal_container_klist_get(struct klist_node *n)
-{
-       struct internal_container *ic =
-               container_of(n, struct internal_container, node);
-       class_device_get(&ic->classdev);
-}
-
-static void internal_container_klist_put(struct klist_node *n)
-{
-       struct internal_container *ic =
-               container_of(n, struct internal_container, node);
-       class_device_put(&ic->classdev);
-}
-
-
 /**
  * attribute_container_classdev_to_container - given a classdev, return the 
container
  *
@@ -72,8 +57,7 @@ int
 attribute_container_register(struct attribute_container *cont)
 {
        INIT_LIST_HEAD(&cont->node);
-       klist_init(&cont->containers,internal_container_klist_get,
-                  internal_container_klist_put);
+       klist_init(&cont->containers);
                
        down(&attribute_container_mutex);
        list_add_tail(&cont->node, &attribute_container_list);
@@ -179,8 +163,8 @@ attribute_container_add_device(struct de
 #define klist_for_each_entry(pos, head, member, iter) \
        for (klist_iter_init(head, iter); (pos = ({ \
                struct klist_node *n = klist_next(iter); \
-               n ? container_of(n, typeof(*pos), member) : \
-                       ({ klist_iter_exit(iter) ; NULL; }); \
+               n ? ({ klist_iter_exit(iter) ; NULL; }) : \
+                       container_of(n, typeof(*pos), member);\
        }) ) != NULL; )
                        
 
@@ -222,7 +206,7 @@ attribute_container_remove_device(struct
                klist_for_each_entry(ic, &cont->containers, node, &iter) {
                        if (dev != ic->classdev.dev)
                                continue;
-                       klist_del(&ic->node);
+                       klist_remove(&ic->node);
                        if (fn)
                                fn(cont, dev, &ic->classdev);
                        else {
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to