Symbol: F_WRLCK
arch/um/os-Linux/file.c
576
int type = excl ? F_WRLCK : F_RDLCK;
fs/9p/vfs_file.c
147
case F_WRLCK:
fs/9p/vfs_file.c
265
fl->c.flc_type = F_WRLCK;
fs/afs/flock.c
120
type = F_WRLCK;
fs/afs/flock.c
748
fl->c.flc_type = F_WRLCK;
fs/ceph/locks.c
136
fl->c.flc_type = F_WRLCK;
fs/ceph/locks.c
426
case F_WRLCK:
fs/dlm/plock.c
463
fl->c.flc_type = (op->info.ex) ? F_WRLCK : F_RDLCK;
fs/fuse/file.c
2466
case F_WRLCK:
fs/lockd/clnt4xdr.c
285
fl->c.flc_type = exclusive != 0 ? F_WRLCK : F_RDLCK;
fs/lockd/clnt4xdr.c
361
encode_bool(xdr, lock->fl.c.flc_type == F_WRLCK);
fs/lockd/clnt4xdr.c
384
encode_bool(xdr, lock->fl.c.flc_type == F_WRLCK);
fs/lockd/clnt4xdr.c
407
encode_bool(xdr, lock->fl.c.flc_type == F_WRLCK);
fs/lockd/clntxdr.c
281
fl->c.flc_type = exclusive != 0 ? F_WRLCK : F_RDLCK;
fs/lockd/clntxdr.c
362
encode_bool(xdr, lock->fl.c.flc_type == F_WRLCK);
fs/lockd/clntxdr.c
385
encode_bool(xdr, lock->fl.c.flc_type == F_WRLCK);
fs/lockd/clntxdr.c
408
encode_bool(xdr, lock->fl.c.flc_type == F_WRLCK);
fs/lockd/svc4proc.c
252
unsigned char type = argp->xdrgen.exclusive ? F_WRLCK : F_RDLCK;
fs/lockd/svc4proc.c
301
unsigned char type = argp->xdrgen.exclusive ? F_WRLCK : F_RDLCK;
fs/lockd/svc4proc.c
411
unsigned char type = argp->xdrgen.exclusive ? F_WRLCK : F_RDLCK;
fs/lockd/svc4proc.c
594
unsigned char type = argp->xdrgen.exclusive ? F_WRLCK : F_RDLCK;
fs/lockd/svc4proc.c
654
unsigned char type = argp->xdrgen.exclusive ? F_WRLCK : F_RDLCK;
fs/lockd/svc4proc.c
716
unsigned char type = argp->xdrgen.exclusive ? F_WRLCK : F_RDLCK;
fs/lockd/svcproc.c
268
unsigned char type = argp->xdrgen.exclusive ? F_WRLCK : F_RDLCK;
fs/lockd/svcproc.c
322
unsigned char type = argp->xdrgen.exclusive ? F_WRLCK : F_RDLCK;
fs/lockd/svcproc.c
418
unsigned char type = argp->xdrgen.exclusive ? F_WRLCK : F_RDLCK;
fs/lockd/svcproc.c
604
unsigned char type = argp->xdrgen.exclusive ? F_WRLCK : F_RDLCK;
fs/lockd/svcproc.c
669
unsigned char type = argp->xdrgen.exclusive ? F_WRLCK : F_RDLCK;
fs/lockd/svcproc.c
733
unsigned char type = argp->xdrgen.exclusive ? F_WRLCK : F_RDLCK;
fs/locks.c
1692
new_fl = lease_alloc(NULL, type, want_write ? F_WRLCK : F_RDLCK);
fs/locks.c
1814
if (flc && flc->flc_type == F_WRLCK)
fs/locks.c
1949
if (arg == F_WRLCK)
fs/locks.c
2056
case F_WRLCK:
fs/locks.c
2447
&& flock->l_type != F_WRLCK)
fs/locks.c
2555
case F_WRLCK:
fs/locks.c
2656
&& flock->l_type != F_WRLCK)
fs/locks.c
2977
seq_printf(f, "%s ", (type == F_WRLCK) ? "WRITE" :
fs/locks.c
476
return F_WRLCK;
fs/locks.c
500
case F_WRLCK:
fs/locks.c
616
else if (arg != F_WRLCK)
fs/locks.c
948
if (sys_flc->flc_type == F_WRLCK)
fs/locks.c
950
if (caller_flc->flc_type == F_WRLCK)
fs/nfs/nfs4proc.c
7743
case F_WRLCK:
fs/nfs/nfs4proc.c
7783
case F_WRLCK:
fs/nfs/nfs4xdr.c
5131
fl->c.flc_type = F_WRLCK;
fs/nfsd/nfs4state.c
6055
fl->c.flc_type = deleg_is_read(dp->dl_type) ? F_RDLCK : F_WRLCK;
fs/nfsd/nfs4state.c
8533
type = F_WRLCK;
fs/nfsd/nfs4state.c
8731
file_lock->c.flc_type = F_WRLCK;
fs/nfsd/nfs4state.c
9505
if (fl->c.flc_type == F_WRLCK) {
fs/smb/client/cifsfs.c
1153
((arg == F_WRLCK) && CIFS_CACHE_WRITE(CIFS_I(inode))))
fs/smb/client/cifssmb.c
2381
pLockData->c.flc_type = F_WRLCK;
fs/smb/client/file.c
1720
flock->c.flc_type = F_WRLCK;
fs/smb/client/file.c
2163
flock->c.flc_type = F_WRLCK;
fs/smb/client/file.c
2180
flock->c.flc_type = F_WRLCK;
fs/smb/server/smb2pdu.c
7977
flock->c.flc_type = F_WRLCK;
fs/smb/server/smb2pdu.c
7990
flock->c.flc_type = F_WRLCK;
include/linux/filelock.h
191
return fl->c.flc_type == F_WRLCK;
include/trace/events/afs.h
454
EM(F_WRLCK, "WRLCK") \
include/trace/events/filelock.h
39
{ F_WRLCK, "F_WRLCK" }, \
include/trace/misc/fs.h
99
{ F_WRLCK, "WRLCK" }, \
security/apparmor/lsm.c
550
if (cmd == F_WRLCK)
tools/hv/hv_kvp_daemon.c
136
struct flock fl = {F_WRLCK, SEEK_SET, 0, 0, 0};
tools/testing/selftests/filelock/ofdlocks.c
70
fl.l_type = F_WRLCK;