From f93be58429d77a7928d96205e7ee34e4bbb7cc9c Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Wed, 16 Aug 2017 13:42:04 +0200 Subject: sys: add some known xattr names Move xattr syscalls to own file and better describe xattr names. They usually have prefix+name structure and there are some known values. --- sys/xattr_ppc64le.const | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 sys/xattr_ppc64le.const (limited to 'sys/xattr_ppc64le.const') diff --git a/sys/xattr_ppc64le.const b/sys/xattr_ppc64le.const new file mode 100644 index 000000000..592ffbbb2 --- /dev/null +++ b/sys/xattr_ppc64le.const @@ -0,0 +1,15 @@ +# AUTOGENERATED FILE +XATTR_CREATE = 1 +XATTR_REPLACE = 2 +__NR_fgetxattr = 214 +__NR_flistxattr = 217 +__NR_fremovexattr = 220 +__NR_fsetxattr = 211 +__NR_getxattr = 212 +__NR_lgetxattr = 213 +__NR_listxattr = 215 +__NR_llistxattr = 216 +__NR_lremovexattr = 219 +__NR_lsetxattr = 210 +__NR_removexattr = 218 +__NR_setxattr = 209 -- cgit mrf-deployment