lkml.org 
[lkml]   [2007]   [Mar]   [22]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
Date
From
Subject[PATCH -mm] Fix lseek on /proc/kcore
Signed-off-by: Alexey Dobriyan <adobriyan@sw.ru>
---

fs/proc/inode.c | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)

--- a/fs/proc/inode.c
+++ b/fs/proc/inode.c
@@ -167,8 +167,9 @@ static loff_t proc_reg_llseek(struct fil
llseek = pde->proc_fops->llseek;
spin_unlock(&pde->pde_unload_lock);

- if (llseek)
- rv = llseek(file, offset, whence);
+ if (!llseek)
+ llseek = default_llseek;
+ rv = llseek(file, offset, whence);

spin_lock(&pde->pde_unload_lock);
pde->pde_users--;
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/

\
 
 \ /
  Last update: 2007-03-22 10:53    [W:0.071 / U:1.208 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site