Skip to content
Snippets Groups Projects
Commit 5abe91ef authored by Andrew Perepechko's avatar Andrew Perepechko
Browse files

Branch b1_6

b=15779
i=Johann
i=ZhiYong

Do not LBUG when different versions of lquota.ko and fsfilt_ldiskfs.ko used
parent 23cc7c5f
No related branches found
No related tags found
No related merge requests found
...@@ -2085,8 +2085,10 @@ static int fsfilt_ext3_quotainfo(struct lustre_quota_info *lqi, int type, ...@@ -2085,8 +2085,10 @@ static int fsfilt_ext3_quotainfo(struct lustre_quota_info *lqi, int type,
rc = lustre_quota_convert(lqi, type); rc = lustre_quota_convert(lqi, type);
break; break;
default: default:
CERROR("Unsupported admin quota file cmd %d\n", cmd); rc = -ENOTSUPP;
LBUG(); CERROR("Unsupported admin quota file cmd %d\n"
"Are lquota.ko and fsfilt_ldiskfs.ko modules in sync?\n",
cmd);
break; break;
} }
RETURN(rc); RETURN(rc);
......
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