Whamcloud - gitweb
Branch b_release_1_8_1
authorjohann <johann>
Wed, 27 May 2009 23:05:02 +0000 (23:05 +0000)
committerjohann <johann>
Wed, 27 May 2009 23:05:02 +0000 (23:05 +0000)
b=19674

quiet compiler warning due to rcu.

lustre/obdclass/lustre_handles.c

index e830330..43b0125 100644 (file)
@@ -232,11 +232,12 @@ static void cleanup_all_handles(void)
         int i;
 
         for (i = 0; i < HANDLE_HASH_SIZE; i++) {
-                struct list_head *tmp, *pos;
+                struct list_head *pos, *n;
+                n = NULL;
                 spin_lock(&handle_hash[i].lock);
-                list_for_each_safe_rcu(tmp, pos, &(handle_hash[i].head)) {
+                list_for_each_safe_rcu(pos, n, &(handle_hash[i].head)) {
                         struct portals_handle *h;
-                        h = list_entry(tmp, struct portals_handle, h_link);
+                        h = list_entry(pos, struct portals_handle, h_link);
 
                         CERROR("force clean handle "LPX64" addr %p addref %p\n",
                                h->h_cookie, h, h->h_addref);