Whamcloud - gitweb
git://git.whamcloud.com
/
fs
/
lustre-release.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b729270
)
Branch b1_6
author
bwzhou
<bwzhou>
Thu, 27 Sep 2007 03:15:17 +0000
(
03:15
+0000)
committer
bwzhou
<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
patch
|
blob
|
history
diff --git
a/lustre/obdclass/genops.c
b/lustre/obdclass/genops.c
index
81765de
..
89a7b5c
100644
(file)
--- a/
lustre/obdclass/genops.c
+++ b/
lustre/obdclass/genops.c
@@
-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);