Lines Matching refs:prot
391 affs_prot_to_mode(u32 prot) in affs_prot_to_mode() argument
395 if (!(prot & FIBF_NOWRITE)) in affs_prot_to_mode()
397 if (!(prot & FIBF_NOREAD)) in affs_prot_to_mode()
399 if (!(prot & FIBF_NOEXECUTE)) in affs_prot_to_mode()
401 if (prot & FIBF_GRP_WRITE) in affs_prot_to_mode()
403 if (prot & FIBF_GRP_READ) in affs_prot_to_mode()
405 if (prot & FIBF_GRP_EXECUTE) in affs_prot_to_mode()
407 if (prot & FIBF_OTR_WRITE) in affs_prot_to_mode()
409 if (prot & FIBF_OTR_READ) in affs_prot_to_mode()
411 if (prot & FIBF_OTR_EXECUTE) in affs_prot_to_mode()
420 u32 prot = AFFS_I(inode)->i_protect; in affs_mode_to_prot() local
435 prot &= ~(FIBF_NOEXECUTE | FIBF_NOREAD in affs_mode_to_prot()
444 prot |= FIBF_NOEXECUTE; in affs_mode_to_prot()
446 prot |= FIBF_NOREAD; in affs_mode_to_prot()
448 prot |= FIBF_NOWRITE; in affs_mode_to_prot()
452 prot |= FIBF_GRP_EXECUTE; in affs_mode_to_prot()
454 prot |= FIBF_GRP_READ; in affs_mode_to_prot()
456 prot |= FIBF_GRP_WRITE; in affs_mode_to_prot()
458 prot |= FIBF_GRP_DELETE; in affs_mode_to_prot()
461 prot |= FIBF_OTR_EXECUTE; in affs_mode_to_prot()
463 prot |= FIBF_OTR_READ; in affs_mode_to_prot()
465 prot |= FIBF_OTR_WRITE; in affs_mode_to_prot()
467 prot |= FIBF_OTR_DELETE; in affs_mode_to_prot()
469 AFFS_I(inode)->i_protect = prot; in affs_mode_to_prot()