Lines Matching refs:xfa
510 struct fsxattr xfa; in fuse_fileattr_get() local
526 &xfa, sizeof(xfa)); in fuse_fileattr_get()
530 fileattr_fill_xflags(fa, xfa.fsx_xflags); in fuse_fileattr_get()
531 fa->fsx_extsize = xfa.fsx_extsize; in fuse_fileattr_get()
532 fa->fsx_nextents = xfa.fsx_nextents; in fuse_fileattr_get()
533 fa->fsx_projid = xfa.fsx_projid; in fuse_fileattr_get()
534 fa->fsx_cowextsize = xfa.fsx_cowextsize; in fuse_fileattr_get()
550 struct fsxattr xfa; in fuse_fileattr_set() local
563 memset(&xfa, 0, sizeof(xfa)); in fuse_fileattr_set()
564 xfa.fsx_xflags = fa->fsx_xflags; in fuse_fileattr_set()
565 xfa.fsx_extsize = fa->fsx_extsize; in fuse_fileattr_set()
566 xfa.fsx_nextents = fa->fsx_nextents; in fuse_fileattr_set()
567 xfa.fsx_projid = fa->fsx_projid; in fuse_fileattr_set()
568 xfa.fsx_cowextsize = fa->fsx_cowextsize; in fuse_fileattr_set()
571 &xfa, sizeof(xfa)); in fuse_fileattr_set()