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:
6cf4d66
)
b=9678
author
alex
<alex>
Thu, 5 Jan 2006 19:46:14 +0000
(19:46 +0000)
committer
alex
<alex>
Thu, 5 Jan 2006 19:46:14 +0000
(19:46 +0000)
r=adilger
- free pool after client_obd_cleanup() because the latter may abort in-flight requests from the pool
lustre/osc/osc_request.c
patch
|
blob
|
history
diff --git
a/lustre/osc/osc_request.c
b/lustre/osc/osc_request.c
index
c65b2ee
..
b715d93
100644
(file)
--- a/
lustre/osc/osc_request.c
+++ b/
lustre/osc/osc_request.c
@@
-3352,9
+3352,9
@@
int osc_cleanup(struct obd_device *obd)
/* free memory of osc quota cache */
lquota_cleanup(quota_interface, obd);
+ rc = client_obd_cleanup(obd);
ptlrpc_free_rq_pool(cli->cl_rq_pool);
- rc = client_obd_cleanup(obd);
ptlrpcd_decref();
RETURN(rc);
}