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.c2329 struct dentry *dentry, int acc) in nfsd_permission() argument
2334 if ((acc & NFSD_MAY_MASK) == NFSD_MAY_NOP) in nfsd_permission()
2338 acc, in nfsd_permission()
2339 (acc & NFSD_MAY_READ)? " read" : "", in nfsd_permission()
2340 (acc & NFSD_MAY_WRITE)? " write" : "", in nfsd_permission()
2341 (acc & NFSD_MAY_EXEC)? " exec" : "", in nfsd_permission()
2342 (acc & NFSD_MAY_SATTR)? " sattr" : "", in nfsd_permission()
2343 (acc & NFSD_MAY_TRUNC)? " trunc" : "", in nfsd_permission()
2344 (acc & NFSD_MAY_LOCK)? " lock" : "", in nfsd_permission()
2345 (acc & NFSD_MAY_OWNER_OVERRIDE)? " owneroverride" : "", in nfsd_permission()
[all …]
Dnfs4state.c5767 int acc = (flags & RD_STATE) ? NFSD_MAY_READ : NFSD_MAY_WRITE; in nfs4_check_file() local
5774 acc | NFSD_MAY_OWNER_OVERRIDE); in nfs4_check_file()
5780 status = nfsd_file_acquire(rqstp, fhp, acc, &nf); in nfs4_check_file()
/fs/proc/
Dvmcore.c302 ssize_t acc = 0, tmp; in __read_vmcore() local
322 acc += tsz; in __read_vmcore()
326 return acc; in __read_vmcore()
354 acc += tsz; in __read_vmcore()
358 return acc; in __read_vmcore()
371 acc += tsz; in __read_vmcore()
375 return acc; in __read_vmcore()
391 acc += tsz; in __read_vmcore()
395 return acc; in __read_vmcore()
399 return acc; in __read_vmcore()
/fs/nfs/
Dnfs4xdr.c4262 uint32_t supp, acc; in decode_access() local
4272 acc = be32_to_cpup(p); in decode_access()
4274 *access = acc; in decode_access()