Lines Matching refs:vsec
1366 vsecattr_t vsec; in vn_createat() local
1368 vsec.vsa_aclcnt = 0; in vn_createat()
1369 vsec.vsa_aclentp = NULL; in vn_createat()
1370 vsec.vsa_dfaclcnt = 0; in vn_createat()
1371 vsec.vsa_dfaclentp = NULL; in vn_createat()
1372 vsec.vsa_mask = VSA_DFACLCNT; in vn_createat()
1373 error = VOP_GETSECATTR(dvp, &vsec, 0, CRED(), NULL); in vn_createat()
1389 if (vsec.vsa_dfaclcnt == 0) in vn_createat()
1397 if (vsec.vsa_aclcnt && vsec.vsa_aclentp != NULL) in vn_createat()
1398 kmem_free((caddr_t)vsec.vsa_aclentp, in vn_createat()
1399 vsec.vsa_aclcnt * sizeof (aclent_t)); in vn_createat()
1400 if (vsec.vsa_dfaclcnt && vsec.vsa_dfaclentp != NULL) in vn_createat()
1401 kmem_free((caddr_t)vsec.vsa_dfaclentp, in vn_createat()
1402 vsec.vsa_dfaclcnt * sizeof (aclent_t)); in vn_createat()