Whamcloud - gitweb
Branch b1_6
authorbwzhou <bwzhou>
Thu, 27 Sep 2007 03:15:17 +0000 (03:15 +0000)
committerbwzhou <bwzhou>
Thu, 27 Sep 2007 03:15:17 +0000 (03:15 +0000)
b=12840
i=green
i=johann

prevent self-evicting through procfs

lustre/obdclass/genops.c

index 81765de..89a7b5c 100644 (file)
@@ -1243,6 +1243,10 @@ int obd_export_evict_by_uuid(struct obd_device *obd, char *uuid)
         int exports_evicted = 0;
 
         obd_str2uuid(&doomed, uuid);
+        if(obd_uuid_equals(&doomed, &obd->obd_uuid)) {
+                CERROR("%s: can't evict myself\n", obd->obd_name);
+                return exports_evicted;
+        }
 
         doomed_exp = lustre_hash_get_object_by_key(obd->obd_uuid_hash_body, 
                                                    &doomed);