]> rtime.felk.cvut.cz Git - linux-imx.git/commitdiff
cpqphp_sysfs: switch to fixed_size_llseek()
authorAl Viro <viro@zeniv.linux.org.uk>
Sun, 23 Jun 2013 08:46:49 +0000 (12:46 +0400)
committerAl Viro <viro@zeniv.linux.org.uk>
Sat, 29 Jun 2013 08:57:52 +0000 (12:57 +0400)
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
drivers/pci/hotplug/cpqphp_sysfs.c

index 4cb30447a4860cf684155f18c79faad88f3989c6..17c1f36315d191b46bf81734efa69fff344bfa84 100644 (file)
@@ -167,26 +167,8 @@ exit:
 
 static loff_t lseek(struct file *file, loff_t off, int whence)
 {
-       struct ctrl_dbg *dbg;
-       loff_t new = -1;
-
-       mutex_lock(&cpqphp_mutex);
-       dbg = file->private_data;
-
-       switch (whence) {
-       case 0:
-               new = off;
-               break;
-       case 1:
-               new = file->f_pos + off;
-               break;
-       }
-       if (new < 0 || new > dbg->size) {
-               mutex_unlock(&cpqphp_mutex);
-               return -EINVAL;
-       }
-       mutex_unlock(&cpqphp_mutex);
-       return (file->f_pos = new);
+       struct ctrl_dbg *dbg = file->private_data;
+       return fixed_size_llseek(file, off, whence, dbg->size);
 }
 
 static ssize_t read(struct file *file, char __user *buf,