Home
last modified time | relevance | path

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

/fs/cachefiles/
Dkey.c40 unsigned int acc; in cachefiles_cook_key() local
93 acc = *(uint16_t *) raw; in cachefiles_cook_key()
96 key[len + 1] = cachefiles_charmap[acc & 63]; in cachefiles_cook_key()
97 acc >>= 6; in cachefiles_cook_key()
98 key[len] = cachefiles_charmap[acc & 63]; in cachefiles_cook_key()
129 acc = *raw++; in cachefiles_cook_key()
130 acc |= *raw++ << 8; in cachefiles_cook_key()
131 acc |= *raw++ << 16; in cachefiles_cook_key()
133 _debug("acc: %06x", acc); in cachefiles_cook_key()
135 key[len++] = cachefiles_charmap[acc & 63]; in cachefiles_cook_key()
[all …]
/fs/nfsd/
Dvfs.c1966 struct dentry *dentry, int acc) in nfsd_permission() argument
1971 if ((acc & NFSD_MAY_MASK) == NFSD_MAY_NOP) in nfsd_permission()
1975 acc, in nfsd_permission()
1976 (acc & NFSD_MAY_READ)? " read" : "", in nfsd_permission()
1977 (acc & NFSD_MAY_WRITE)? " write" : "", in nfsd_permission()
1978 (acc & NFSD_MAY_EXEC)? " exec" : "", in nfsd_permission()
1979 (acc & NFSD_MAY_SATTR)? " sattr" : "", in nfsd_permission()
1980 (acc & NFSD_MAY_TRUNC)? " trunc" : "", in nfsd_permission()
1981 (acc & NFSD_MAY_LOCK)? " lock" : "", in nfsd_permission()
1982 (acc & NFSD_MAY_OWNER_OVERRIDE)? " owneroverride" : "", in nfsd_permission()
[all …]
Dnfs4state.c5088 int acc = (flags & RD_STATE) ? NFSD_MAY_READ : NFSD_MAY_WRITE; in nfs4_check_file() local
5095 acc | NFSD_MAY_OWNER_OVERRIDE); in nfs4_check_file()
5103 status = nfsd_open(rqstp, fhp, S_IFREG, acc, filpp); in nfs4_check_file()
/fs/proc/
Dvmcore.c197 ssize_t acc = 0, tmp; in __read_vmcore() local
217 acc += tsz; in __read_vmcore()
221 return acc; in __read_vmcore()
235 acc += tsz; in __read_vmcore()
239 return acc; in __read_vmcore()
254 acc += tsz; in __read_vmcore()
258 return acc; in __read_vmcore()
262 return acc; in __read_vmcore()
Dkcore.c450 ssize_t acc = 0; in read_kcore() local
490 acc += tsz; in read_kcore()
494 return acc; in read_kcore()
549 acc += tsz; in read_kcore()
554 return acc; in read_kcore()
/fs/nfs/
Dnfs4xdr.c4336 uint32_t supp, acc; in decode_access() local
4346 acc = be32_to_cpup(p); in decode_access()
4348 *access = acc; in decode_access()