Home
last modified time | relevance | path

Searched refs:acc (Results 1 – 5 of 5) sorted by relevance

/fs/cachefiles/
Dkey.c36 unsigned int acc; in cachefiles_cook_key() local
89 acc = *(uint16_t *) raw; in cachefiles_cook_key()
92 key[len + 1] = cachefiles_charmap[acc & 63]; in cachefiles_cook_key()
93 acc >>= 6; in cachefiles_cook_key()
94 key[len] = cachefiles_charmap[acc & 63]; in cachefiles_cook_key()
125 acc = *raw++; in cachefiles_cook_key()
126 acc |= *raw++ << 8; in cachefiles_cook_key()
127 acc |= *raw++ << 16; in cachefiles_cook_key()
129 _debug("acc: %06x", acc); in cachefiles_cook_key()
131 key[len++] = cachefiles_charmap[acc & 63]; in cachefiles_cook_key()
[all …]
/fs/nfsd/
Dvfs.c2021 struct dentry *dentry, int acc) in nfsd_permission() argument
2026 if ((acc & NFSD_MAY_MASK) == NFSD_MAY_NOP) in nfsd_permission()
2030 acc, in nfsd_permission()
2031 (acc & NFSD_MAY_READ)? " read" : "", in nfsd_permission()
2032 (acc & NFSD_MAY_WRITE)? " write" : "", in nfsd_permission()
2033 (acc & NFSD_MAY_EXEC)? " exec" : "", in nfsd_permission()
2034 (acc & NFSD_MAY_SATTR)? " sattr" : "", in nfsd_permission()
2035 (acc & NFSD_MAY_TRUNC)? " trunc" : "", in nfsd_permission()
2036 (acc & NFSD_MAY_LOCK)? " lock" : "", in nfsd_permission()
2037 (acc & NFSD_MAY_OWNER_OVERRIDE)? " owneroverride" : "", in nfsd_permission()
[all …]
Dnfs4state.c5624 int acc = (flags & RD_STATE) ? NFSD_MAY_READ : NFSD_MAY_WRITE; in nfs4_check_file() local
5631 acc | NFSD_MAY_OWNER_OVERRIDE); in nfs4_check_file()
5637 status = nfsd_file_acquire(rqstp, fhp, acc, &nf); in nfs4_check_file()
/fs/proc/
Dvmcore.c303 ssize_t acc = 0, tmp; in __read_vmcore() local
323 acc += tsz; in __read_vmcore()
327 return acc; in __read_vmcore()
355 acc += tsz; in __read_vmcore()
359 return acc; in __read_vmcore()
372 acc += tsz; in __read_vmcore()
376 return acc; in __read_vmcore()
392 acc += tsz; in __read_vmcore()
396 return acc; in __read_vmcore()
400 return acc; in __read_vmcore()
/fs/nfs/
Dnfs4xdr.c4245 uint32_t supp, acc; in decode_access() local
4255 acc = be32_to_cpup(p); in decode_access()
4257 *access = acc; in decode_access()