Lines Matching defs:xvap

2506 	xvattr_t *xvap = (xvattr_t *)vap;	/* vap may be an xvattr_t * */
2562 if ((xoap = xva_getxoptattr(xvap)) != NULL && zfsvfs->z_use_fuids) {
2563 if (XVA_ISSET_REQ(xvap, XAT_ARCHIVE)) {
2566 XVA_SET_RTN(xvap, XAT_ARCHIVE);
2569 if (XVA_ISSET_REQ(xvap, XAT_READONLY)) {
2572 XVA_SET_RTN(xvap, XAT_READONLY);
2575 if (XVA_ISSET_REQ(xvap, XAT_SYSTEM)) {
2578 XVA_SET_RTN(xvap, XAT_SYSTEM);
2581 if (XVA_ISSET_REQ(xvap, XAT_HIDDEN)) {
2584 XVA_SET_RTN(xvap, XAT_HIDDEN);
2587 if (XVA_ISSET_REQ(xvap, XAT_NOUNLINK)) {
2590 XVA_SET_RTN(xvap, XAT_NOUNLINK);
2593 if (XVA_ISSET_REQ(xvap, XAT_IMMUTABLE)) {
2596 XVA_SET_RTN(xvap, XAT_IMMUTABLE);
2599 if (XVA_ISSET_REQ(xvap, XAT_APPENDONLY)) {
2602 XVA_SET_RTN(xvap, XAT_APPENDONLY);
2605 if (XVA_ISSET_REQ(xvap, XAT_NODUMP)) {
2608 XVA_SET_RTN(xvap, XAT_NODUMP);
2611 if (XVA_ISSET_REQ(xvap, XAT_OPAQUE)) {
2614 XVA_SET_RTN(xvap, XAT_OPAQUE);
2617 if (XVA_ISSET_REQ(xvap, XAT_AV_QUARANTINED)) {
2620 XVA_SET_RTN(xvap, XAT_AV_QUARANTINED);
2623 if (XVA_ISSET_REQ(xvap, XAT_AV_MODIFIED)) {
2626 XVA_SET_RTN(xvap, XAT_AV_MODIFIED);
2629 if (XVA_ISSET_REQ(xvap, XAT_AV_SCANSTAMP) &&
2631 zfs_sa_get_scanstamp(zp, xvap);
2634 if (XVA_ISSET_REQ(xvap, XAT_CREATETIME)) {
2640 XVA_SET_RTN(xvap, XAT_CREATETIME);
2643 if (XVA_ISSET_REQ(xvap, XAT_REPARSE)) {
2645 XVA_SET_RTN(xvap, XAT_REPARSE);
2647 if (XVA_ISSET_REQ(xvap, XAT_GEN)) {
2649 XVA_SET_RTN(xvap, XAT_GEN);
2652 if (XVA_ISSET_REQ(xvap, XAT_OFFLINE)) {
2655 XVA_SET_RTN(xvap, XAT_OFFLINE);
2658 if (XVA_ISSET_REQ(xvap, XAT_SPARSE)) {
2661 XVA_SET_RTN(xvap, XAT_SPARSE);
2723 xvattr_t *xvap = (xvattr_t *)vap; /* vap may be an xvattr_t * */
2769 xoap = xva_getxoptattr(xvap);
2778 ((mask & AT_XVATTR) && XVA_ISSET_REQ(xvap, XAT_CREATETIME)))) {
2840 ((mask & AT_XVATTR) && (XVA_ISSET_REQ(xvap, XAT_HIDDEN) ||
2841 XVA_ISSET_REQ(xvap, XAT_READONLY) ||
2842 XVA_ISSET_REQ(xvap, XAT_ARCHIVE) ||
2843 XVA_ISSET_REQ(xvap, XAT_OFFLINE) ||
2844 XVA_ISSET_REQ(xvap, XAT_SPARSE) ||
2845 XVA_ISSET_REQ(xvap, XAT_CREATETIME) ||
2846 XVA_ISSET_REQ(xvap, XAT_SYSTEM)))) {
2910 if (XVA_ISSET_REQ(xvap, XAT_APPENDONLY)) {
2915 XVA_CLR_REQ(xvap, XAT_APPENDONLY);
2920 if (XVA_ISSET_REQ(xvap, XAT_NOUNLINK)) {
2925 XVA_CLR_REQ(xvap, XAT_NOUNLINK);
2930 if (XVA_ISSET_REQ(xvap, XAT_IMMUTABLE)) {
2935 XVA_CLR_REQ(xvap, XAT_IMMUTABLE);
2940 if (XVA_ISSET_REQ(xvap, XAT_NODUMP)) {
2945 XVA_CLR_REQ(xvap, XAT_NODUMP);
2950 if (XVA_ISSET_REQ(xvap, XAT_AV_MODIFIED)) {
2955 XVA_CLR_REQ(xvap, XAT_AV_MODIFIED);
2960 if (XVA_ISSET_REQ(xvap, XAT_AV_QUARANTINED)) {
2967 XVA_CLR_REQ(xvap, XAT_AV_QUARANTINED);
2972 if (XVA_ISSET_REQ(xvap, XAT_REPARSE)) {
2979 (XVA_ISSET_REQ(xvap, XAT_AV_SCANSTAMP) ||
2980 XVA_ISSET_REQ(xvap, XAT_OPAQUE))) {
3105 XVA_ISSET_REQ(xvap, XAT_AV_SCANSTAMP))
3249 XVA_SET_REQ(xvap, XAT_APPENDONLY);
3252 XVA_SET_REQ(xvap, XAT_NOUNLINK);
3255 XVA_SET_REQ(xvap, XAT_IMMUTABLE);
3258 XVA_SET_REQ(xvap, XAT_NODUMP);
3261 XVA_SET_REQ(xvap, XAT_AV_MODIFIED);
3264 XVA_SET_REQ(xvap, XAT_AV_QUARANTINED);
3267 if (XVA_ISSET_REQ(xvap, XAT_AV_SCANSTAMP))
3270 zfs_xvattr_set(zp, xvap, tx);