diff options
| author | Vitaliy Gusev <vgusev@openvz.org> | 2009-09-11 10:28:48 +0200 | 
|---|---|---|
| committer | Martin Schwidefsky <schwidefsky@de.ibm.com> | 2009-09-11 10:29:49 +0200 | 
| commit | 2395ecd98f028b16a6200eb81108a0f67461d16b (patch) | |
| tree | bcd30764897a84cedf22b57ff7761509f669c32d | |
| parent | c114728af2acdca0bd8b1d2f5792e393c775f5fc (diff) | |
[S390] hypfs: remove useless variable qname
Local variable 'qname' in the function hypfs_create_file() really is not
used for any purpose.
Signed-off-by: Vitaliy Gusev <vgusev@openvz.org>
Cc: Michael Holzheu <holzheu@de.ibm.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
| -rw-r--r-- | arch/s390/hypfs/inode.c | 4 | 
1 files changed, 0 insertions, 4 deletions
diff --git a/arch/s390/hypfs/inode.c b/arch/s390/hypfs/inode.c index 5a805df216bb..e760b5b01411 100644 --- a/arch/s390/hypfs/inode.c +++ b/arch/s390/hypfs/inode.c @@ -355,11 +355,7 @@ static struct dentry *hypfs_create_file(struct super_block *sb,  {  	struct dentry *dentry;  	struct inode *inode; -	struct qstr qname; -	qname.name = name; -	qname.len = strlen(name); -	qname.hash = full_name_hash(name, qname.len);  	mutex_lock(&parent->d_inode->i_mutex);  	dentry = lookup_one_len(name, parent, strlen(name));  	if (IS_ERR(dentry)) {  | 
