| /Linux-v5.4/fs/ | 
| D | locks.c | 416 	new->fl_start = fl->fl_start;  in locks_copy_conflock()523 		fl->fl_start = 0;  in flock64_to_posix_lock()
 526 		fl->fl_start = filp->f_pos;  in flock64_to_posix_lock()
 529 		fl->fl_start = i_size_read(file_inode(filp));  in flock64_to_posix_lock()
 534 	if (l->l_start > OFFSET_MAX - fl->fl_start)  in flock64_to_posix_lock()
 536 	fl->fl_start += l->l_start;  in flock64_to_posix_lock()
 537 	if (fl->fl_start < 0)  in flock64_to_posix_lock()
 543 		if (l->l_len - 1 > OFFSET_MAX - fl->fl_start)  in flock64_to_posix_lock()
 545 		fl->fl_end = fl->fl_start + l->l_len - 1;  in flock64_to_posix_lock()
 548 		if (fl->fl_start + l->l_len < 0)  in flock64_to_posix_lock()
 [all …]
 
 | 
| /Linux-v5.4/fs/lockd/ | 
| D | svclock.c | 152 				(long long)lock->fl.fl_start,  in nlmsvc_lookup_block()158 				(long long)fl->fl_start,  in nlmsvc_lookup_block()
 498 				(long long)lock->fl.fl_start,  in nlmsvc_lock()
 605 				(long long)lock->fl.fl_start,  in nlmsvc_testlock()
 632 		lock->fl.fl_type, (long long)lock->fl.fl_start,  in nlmsvc_testlock()
 639 	conflock->fl.fl_start = lock->fl.fl_start;  in nlmsvc_testlock()
 668 				(long long)lock->fl.fl_start,  in nlmsvc_unlock()
 697 				(long long)lock->fl.fl_start,  in nlmsvc_cancel_blocked()
 813 	loff_t			fl_start, fl_end;  in nlmsvc_grant_blocked()  local
 835 	fl_start = lock->fl.fl_start;  in nlmsvc_grant_blocked()
 [all …]
 
 | 
| D | xdr4.c | 127 	fl->fl_start = s64_to_loff_t(start);  in nlm4_decode_lock()159 		start = loff_t_to_s64(fl->fl_start);  in nlm4_encode_testres()
 163 			len = loff_t_to_s64(fl->fl_end - fl->fl_start + 1);  in nlm4_encode_testres()
 169 			(long long)fl->fl_start,  (long long)fl->fl_end);  in nlm4_encode_testres()
 
 | 
| D | xdr.c | 135 	fl->fl_start = s32_to_loff_t(start);  in nlm_decode_lock()166 		start = loff_t_to_s32(fl->fl_start);  in nlm_encode_testres()
 170 			len = loff_t_to_s32(fl->fl_end - fl->fl_start + 1);  in nlm_encode_testres()
 
 | 
| D | clntlock.c | 179 		if (fl_blocked->fl_start != fl->fl_start)  in nlmclnt_grant()
 | 
| D | clnt4xdr.c | 70 	*l_offset = loff_t_to_s64(fl->fl_start);  in nlm4_compute_offsets()74 		*l_len = loff_t_to_s64(fl->fl_end - fl->fl_start + 1);  in nlm4_compute_offsets()
 290 	fl->fl_start = (loff_t)l_offset;  in decode_nlm4_holder()
 
 | 
| D | clntxdr.c | 66 	*l_offset = loff_t_to_s32(fl->fl_start);  in nlm_compute_offsets()70 		*l_len = loff_t_to_s32(fl->fl_end - fl->fl_start + 1);  in nlm_compute_offsets()
 284 	fl->fl_start = (loff_t)l_offset;  in decode_nlm_holder()
 
 | 
| D | clntproc.c | 140 	lock->fl.fl_start = fl->fl_start;  in nlmclnt_setlockargs()444 			fl->fl_start = req->a_res.lock.fl.fl_start;  in nlmclnt_test()
 
 | 
| D | svcsubs.c | 189 			lock.fl_start = 0;  in nlm_traverse_locks()
 | 
| /Linux-v5.4/fs/ceph/ | 
| D | locks.c | 97 		length = fl->fl_end - fl->fl_start + 1;  in ceph_lock_message()103 	     (int)operation, owner, (u64)fl->fl_pid, fl->fl_start, length,  in ceph_lock_message()
 110 	req->r_args.filelock_change.start = cpu_to_le64(fl->fl_start);  in ceph_lock_message()
 127 		fl->fl_start = le64_to_cpu(req->r_reply_info.filelock_reply->start);  in ceph_lock_message()
 139 	     (int)operation, (u64)fl->fl_pid, fl->fl_start,  in ceph_lock_message()
 360 	cephlock->start = cpu_to_le64(lock->fl_start);  in lock_to_ceph_filelock()
 361 	cephlock->length = cpu_to_le64(lock->fl_end - lock->fl_start + 1);  in lock_to_ceph_filelock()
 
 | 
| /Linux-v5.4/include/trace/events/ | 
| D | filelock.h | 76 		__field(loff_t, fl_start)90 		__entry->fl_start = fl ? fl->fl_start : 0;
 100 		__entry->fl_start, __entry->fl_end, __entry->ret)
 
 | 
| D | afs.h | 1153 		    __entry->from = fl->fl_start;1154 		    __entry->len = fl->fl_end - fl->fl_start + 1;
 
 | 
| /Linux-v5.4/fs/cifs/ | 
| D | smb2file.c | 126 	__u64 length = 1 + flock->fl_end - flock->fl_start;  in smb2_unlock_range()150 		if (flock->fl_start > li->offset ||  in smb2_unlock_range()
 151 		    (flock->fl_start + length) <  in smb2_unlock_range()
 
 | 
| D | file.c | 1017 		flock->fl_start = conf_lock->offset;  in cifs_lock_test()1295 		length = 1 + flock->fl_end - flock->fl_start;  in cifs_push_posix_locks()
 1305 		lck->offset = flock->fl_start;  in cifs_push_posix_locks()
 1411 	__u64 length = 1 + flock->fl_end - flock->fl_start;  in cifs_getlk()
 1430 				      flock->fl_start, length, flock,  in cifs_getlk()
 1435 	rc = cifs_lock_test(cfile, flock->fl_start, length, type, flock);  in cifs_getlk()
 1440 	rc = server->ops->mand_lock(xid, cfile, flock->fl_start, length, type,  in cifs_getlk()
 1443 		rc = server->ops->mand_lock(xid, cfile, flock->fl_start, length,  in cifs_getlk()
 1459 	rc = server->ops->mand_lock(xid, cfile, flock->fl_start, length,  in cifs_getlk()
 1463 		rc = server->ops->mand_lock(xid, cfile, flock->fl_start, length,  in cifs_getlk()
 [all …]
 
 | 
| /Linux-v5.4/fs/9p/ | 
| D | vfs_file.c | 168 	flock.start = fl->fl_start;  in v9fs_file_do_lock()172 		flock.length = fl->fl_end - fl->fl_start + 1;  in v9fs_file_do_lock()
 261 	glock.start = fl->fl_start;  in v9fs_file_getlock()
 265 		glock.length = fl->fl_end - fl->fl_start + 1;  in v9fs_file_getlock()
 285 		fl->fl_start = glock.start;  in v9fs_file_getlock()
 
 | 
| /Linux-v5.4/fs/dlm/ | 
| D | plock.c | 126 	op->info.start		= fl->fl_start;  in dlm_posix_lock()276 	op->info.start		= fl->fl_start;  in dlm_posix_unlock()
 337 	op->info.start		= fl->fl_start;  in dlm_posix_get()
 368 		fl->fl_start = op->info.start;  in dlm_posix_get()
 
 | 
| /Linux-v5.4/include/linux/lockd/ | 
| D | lockd.h | 369 	     && fl1->fl_start == fl2->fl_start  in nlm_compare_locks()
 | 
| /Linux-v5.4/fs/afs/ | 
| D | flock.c | 478 	       fl->fl_start, fl->fl_end, fl->fl_type, mode);  in afs_do_setlk()484 	partial = (fl->fl_start != 0 || fl->fl_end != OFFSET_MAX);  in afs_do_setlk()
 760 			fl->fl_start = 0;  in afs_do_getlk()
 784 	       (long long) fl->fl_start, (long long) fl->fl_end);  in afs_lock()
 
 | 
| /Linux-v5.4/fs/nfs/ | 
| D | proc.c | 661 	start = (__s32)fl->fl_start;  in nfs_lock_check_bounds()662 	if ((loff_t)start != fl->fl_start)  in nfs_lock_check_bounds()
 
 | 
| D | file.c | 774 			(long long)fl->fl_start, (long long)fl->fl_end);  in nfs_lock()
 | 
| D | nfs4trace.h | 827 			__entry->start = request->fl_start;899 			__entry->start = request->fl_start;
 
 | 
| D | nfs4xdr.c | 1308 	return fl->fl_end - fl->fl_start + 1;  in nfs4_lock_length()1335 	p = xdr_encode_hyper(p, args->fl->fl_start);  in encode_lock()
 1357 	p = xdr_encode_hyper(p, args->fl->fl_start);  in encode_lockt()
 1371 	p = xdr_encode_hyper(p, args->fl->fl_start);  in encode_locku()
 4917 		fl->fl_start = (loff_t)offset;  in decode_lock_denied()
 4918 		fl->fl_end = fl->fl_start + (loff_t)length - 1;  in decode_lock_denied()
 
 | 
| D | write.c | 1302 	return fl->fl_start == 0 && fl->fl_end == OFFSET_MAX &&  in is_whole_file_wrlock()
 | 
| /Linux-v5.4/fs/nfsd/ | 
| D | nfs4state.c | 6081 	if (lock->fl_start < 0)  in nfs4_transform_lock_offset()6082 		lock->fl_start = OFFSET_MAX;  in nfs4_transform_lock_offset()
 6154 	deny->ld_start = fl->fl_start;  in nfs4_set_lock_denied()
 6157 		deny->ld_length = fl->fl_end - fl->fl_start + 1;          in nfs4_set_lock_denied()
 6536 	file_lock->fl_start = lock->lk_offset;  in nfsd4_lock()
 6691 	file_lock->fl_start = lockt->lt_offset;  in nfsd4_lockt()
 6754 	file_lock->fl_start = locku->lu_offset;  in nfsd4_locku()
 
 | 
| /Linux-v5.4/fs/fuse/ | 
| D | file.c | 2314 		fl->fl_start = ffl->start;  in convert_fuse_file_lock()2344 	inarg->lk.start = fl->fl_start;  in fuse_lk_fill()
 
 |