Lines Matching refs:vsec
1417 vsecattr_t vsec; in vn_createat() local
1419 vsec.vsa_aclcnt = 0; in vn_createat()
1420 vsec.vsa_aclentp = NULL; in vn_createat()
1421 vsec.vsa_dfaclcnt = 0; in vn_createat()
1422 vsec.vsa_dfaclentp = NULL; in vn_createat()
1423 vsec.vsa_mask = VSA_DFACLCNT; in vn_createat()
1424 error = VOP_GETSECATTR(dvp, &vsec, 0, CRED(), NULL); in vn_createat()
1440 if (vsec.vsa_dfaclcnt == 0) in vn_createat()
1448 if (vsec.vsa_aclcnt && vsec.vsa_aclentp != NULL) in vn_createat()
1449 kmem_free((caddr_t)vsec.vsa_aclentp, in vn_createat()
1450 vsec.vsa_aclcnt * sizeof (aclent_t)); in vn_createat()
1451 if (vsec.vsa_dfaclcnt && vsec.vsa_dfaclentp != NULL) in vn_createat()
1452 kmem_free((caddr_t)vsec.vsa_dfaclentp, in vn_createat()
1453 vsec.vsa_dfaclcnt * sizeof (aclent_t)); in vn_createat()