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
424 prot |= FIBF_NOEXECUTE; in affs_mode_to_prot()
426 prot |= FIBF_NOREAD; in affs_mode_to_prot()
428 prot |= FIBF_NOWRITE; in affs_mode_to_prot()
430 prot |= FIBF_GRP_EXECUTE; in affs_mode_to_prot()
432 prot |= FIBF_GRP_READ; in affs_mode_to_prot()
434 prot |= FIBF_GRP_WRITE; in affs_mode_to_prot()
436 prot |= FIBF_OTR_EXECUTE; in affs_mode_to_prot()
438 prot |= FIBF_OTR_READ; in affs_mode_to_prot()
440 prot |= FIBF_OTR_WRITE; in affs_mode_to_prot()
442 AFFS_I(inode)->i_protect = prot; in affs_mode_to_prot()