Lines Matching refs:xfa
424 struct fsxattr xfa; in fuse_fileattr_get() local
440 &xfa, sizeof(xfa)); in fuse_fileattr_get()
444 fileattr_fill_xflags(fa, xfa.fsx_xflags); in fuse_fileattr_get()
445 fa->fsx_extsize = xfa.fsx_extsize; in fuse_fileattr_get()
446 fa->fsx_nextents = xfa.fsx_nextents; in fuse_fileattr_get()
447 fa->fsx_projid = xfa.fsx_projid; in fuse_fileattr_get()
448 fa->fsx_cowextsize = xfa.fsx_cowextsize; in fuse_fileattr_get()
462 struct fsxattr xfa; in fuse_fileattr_set() local
475 memset(&xfa, 0, sizeof(xfa)); in fuse_fileattr_set()
476 xfa.fsx_xflags = fa->fsx_xflags; in fuse_fileattr_set()
477 xfa.fsx_extsize = fa->fsx_extsize; in fuse_fileattr_set()
478 xfa.fsx_nextents = fa->fsx_nextents; in fuse_fileattr_set()
479 xfa.fsx_projid = fa->fsx_projid; in fuse_fileattr_set()
480 xfa.fsx_cowextsize = fa->fsx_cowextsize; in fuse_fileattr_set()
483 &xfa, sizeof(xfa)); in fuse_fileattr_set()