perf data: Add is_perf_data function
[linux-2.6-microblaze.git] / fs / statfs.c
index 2616424..59f3375 100644 (file)
@@ -29,6 +29,8 @@ static int flags_by_mnt(int mnt_flags)
                flags |= ST_NODIRATIME;
        if (mnt_flags & MNT_RELATIME)
                flags |= ST_RELATIME;
+       if (mnt_flags & MNT_NOSYMFOLLOW)
+               flags |= ST_NOSYMFOLLOW;
        return flags;
 }