Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f5579f8c authored by Josef 'Jeff' Sipek's avatar Josef 'Jeff' Sipek Committed by Linus Torvalds
Browse files

[PATCH] VFS: Use SEEK_{SET, CUR, END} instead of hardcoded values



VFS: Use SEEK_{SET,CUR,END} instead of hardcoded values

Signed-off-by: default avatarJosef 'Jeff' Sipek <jeffpc@josefsipek.net>
Acked-by: default avatarTrond Myklebust <trond.myklebust@fys.uio.no>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent 4636d93b
Loading
Loading
Loading
Loading
+6 −6
Original line number Diff line number Diff line
@@ -314,13 +314,13 @@ static int flock_to_posix_lock(struct file *filp, struct file_lock *fl,
	off_t start, end;

	switch (l->l_whence) {
	case 0: /*SEEK_SET*/
	case SEEK_SET:
		start = 0;
		break;
	case 1: /*SEEK_CUR*/
	case SEEK_CUR:
		start = filp->f_pos;
		break;
	case 2: /*SEEK_END*/
	case SEEK_END:
		start = i_size_read(filp->f_dentry->d_inode);
		break;
	default:
@@ -364,13 +364,13 @@ static int flock64_to_posix_lock(struct file *filp, struct file_lock *fl,
	loff_t start;

	switch (l->l_whence) {
	case 0: /*SEEK_SET*/
	case SEEK_SET:
		start = 0;
		break;
	case 1: /*SEEK_CUR*/
	case SEEK_CUR:
		start = filp->f_pos;
		break;
	case 2: /*SEEK_END*/
	case SEEK_END:
		start = i_size_read(filp->f_dentry->d_inode);
		break;
	default: