From: Pádraig Brady
Date: Tue, 29 Aug 2017 08:04:32 +0000 (-0700) Subject: stat,tail: support "AAFS" AppArmor file system X-Git-Tag: v8.28~12 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3ebdc3e1af846de4b488b04406e07c7bac12ae1b;p=thirdparty%2Fcoreutils.git stat,tail: support "AAFS" AppArmor file system * src/stat.c (human_fstype): This file system is used to manage AppArmor policy in the Linux kernel. --- diff --git a/src/stat.c b/src/stat.c index dcaa580dc8..87b3ff43fc 100644 --- a/src/stat.c +++ b/src/stat.c @@ -247,6 +247,8 @@ human_fstype (STRUCT_STATVFS const *statfsbuf) a comment. The S_MAGIC_... name and constant are automatically combined to produce the #define directives in fs.h. */ + case S_MAGIC_AAFS: /* 0x5A3C69F0 local */ + return "aafs"; case S_MAGIC_ACFS: /* 0x61636673 remote */ return "acfs"; case S_MAGIC_ADFS: /* 0xADF5 local */