[XFS] Fix a bad pointer dereference in the quota statvfs handling.
SGI-PV: 955993 SGI-Modid: xfs-linux-melb:xfs-kern:26934a Signed-off-by: Nathan Scott <nathans@sgi.com> Signed-off-by: David Chatterton <chatz@sgi.com>
This commit is contained in:
parent
0a8d17d090
commit
0edc7d0f37
1 changed files with 1 additions and 1 deletions
|
@ -203,7 +203,7 @@ xfs_qm_statvfs(
|
||||||
if (error || !vnode)
|
if (error || !vnode)
|
||||||
return error;
|
return error;
|
||||||
|
|
||||||
mp = XFS_BHVTOM(bhv);
|
mp = xfs_vfstom(bhvtovfs(bhv));
|
||||||
ip = xfs_vtoi(vnode);
|
ip = xfs_vtoi(vnode);
|
||||||
|
|
||||||
if (!(ip->i_d.di_flags & XFS_DIFLAG_PROJINHERIT))
|
if (!(ip->i_d.di_flags & XFS_DIFLAG_PROJINHERIT))
|
||||||
|
|
Loading…
Reference in a new issue