Skip to content
Snippets Groups Projects
Commit 45cc6b8e authored by alex's avatar alex
Browse files

- lustre exploits pdirops feature if presented. we need this to pass test

  #8 from CMD acceptance series
parent 59e7897e
No related branches found
No related tags found
No related merge requests found
...@@ -241,6 +241,12 @@ int lustre_common_fill_super(struct super_block *sb, char *mdc, char *osc) ...@@ -241,6 +241,12 @@ int lustre_common_fill_super(struct super_block *sb, char *mdc, char *osc)
#endif #endif
sb->s_root = d_alloc_root(root); sb->s_root = d_alloc_root(root);
#ifdef S_PDIROPS
CWARN("Enabling PDIROPS\n");
sb->s_flags |= S_PDIROPS;
#endif
RETURN(err); RETURN(err);
out_root: out_root:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment