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:
5efe632
)
- fixed missed braces in mdc_clear_open_replay_data()
author
yury
<yury>
Tue, 10 Oct 2006 14:02:10 +0000
(14:02 +0000)
committer
yury
<yury>
Tue, 10 Oct 2006 14:02:10 +0000
(14:02 +0000)
lustre/mdc/mdc_request.c
patch
|
blob
|
history
diff --git
a/lustre/mdc/mdc_request.c
b/lustre/mdc/mdc_request.c
index
8209f23
..
18b2ebf
100644
(file)
--- a/
lustre/mdc/mdc_request.c
+++ b/
lustre/mdc/mdc_request.c
@@
-744,11
+744,12
@@
int mdc_clear_open_replay_data(struct obd_export *exp,
* be freed.
*/
LASSERT(mod != LP_POISON);
- if (mod != NULL)
+ if (mod != NULL)
{
if (mod->mod_open_req != NULL)
ptlrpc_req_finished(mod->mod_open_req);
mod->mod_och = NULL;
-
+ }
+
och->och_mod = NULL;
RETURN(0);
}