[Patch] fs/proc/base.c: remove a useless local variable

From: AmÃrico Wang
Date: Thu Dec 25 2008 - 06:18:27 EST




Remove a useless variable 'inode' in proc_pident_lookup().

Signed-off-by: WANG Cong <wangcong@xxxxxxxxx>
Cc: Alexey Dobriyan <adobriyan@xxxxxxxxx>


---
diff --git a/fs/proc/base.c b/fs/proc/base.c
index d467760..966603e 100644
--- a/fs/proc/base.c
+++ b/fs/proc/base.c
@@ -1960,13 +1960,11 @@ static struct dentry *proc_pident_lookup(struct inode *dir,
const struct pid_entry *ents,
unsigned int nents)
{
- struct inode *inode;
struct dentry *error;
struct task_struct *task = get_proc_task(dir);
const struct pid_entry *p, *last;

error = ERR_PTR(-ENOENT);
- inode = NULL;

if (!task)
goto out_no_task;

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/