diff options
| author | Jiri Slaby <jslaby@suse.cz> | 2012-10-18 22:26:28 +0200 | 
|---|---|---|
| committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-10-22 16:50:12 -0700 | 
| commit | 162b97cfa21f816f39ede1944f2a4220e3cf8969 (patch) | |
| tree | 6cd663b2b17c3013285148efd43a145d6dea9a5e /fs/devpts | |
| parent | 8fcbaa2b7f5b70dba9ed1c7f91d0a270ce752e2c (diff) | |
| download | linux-162b97cfa21f816f39ede1944f2a4220e3cf8969.tar.bz2 | |
TTY: devpts, return created inode from devpts_pty_new
The goal is to stop setting and using tty->driver_data in devpts code.
It should be used solely by the driver's code, pty in this case.
For the cleanup of layering, we will need the inode created in
devpts_pty_new to be stored into slave's driver_data. So we convert
devpts_pty_new to return the inode or an ERR_PTR-encoded error in case
of failure.
The move of 'inode = new_inode(sb);' from declarators to the code is
only cosmetical, but it makes the code easier to read.
Signed-off-by: Jiri Slaby <jslaby@suse.cz>
Acked-by: Alan Cox <alan@linux.intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'fs/devpts')
| -rw-r--r-- | fs/devpts/inode.c | 12 | 
1 files changed, 6 insertions, 6 deletions
| diff --git a/fs/devpts/inode.c b/fs/devpts/inode.c index 47965807884d..ec3bab716c05 100644 --- a/fs/devpts/inode.c +++ b/fs/devpts/inode.c @@ -545,7 +545,7 @@ void devpts_kill_index(struct inode *ptmx_inode, int idx)  	mutex_unlock(&allocated_ptys_lock);  } -int devpts_pty_new(struct inode *ptmx_inode, struct tty_struct *tty) +struct inode *devpts_pty_new(struct inode *ptmx_inode, struct tty_struct *tty)  {  	/* tty layer puts index from devpts_new_index() in here */  	int number = tty->index; @@ -553,19 +553,19 @@ int devpts_pty_new(struct inode *ptmx_inode, struct tty_struct *tty)  	dev_t device = MKDEV(driver->major, driver->minor_start+number);  	struct dentry *dentry;  	struct super_block *sb = pts_sb_from_inode(ptmx_inode); -	struct inode *inode = new_inode(sb); +	struct inode *inode;  	struct dentry *root = sb->s_root;  	struct pts_fs_info *fsi = DEVPTS_SB(sb);  	struct pts_mount_opts *opts = &fsi->mount_opts; -	int ret = 0;  	char s[12];  	/* We're supposed to be given the slave end of a pty */  	BUG_ON(driver->type != TTY_DRIVER_TYPE_PTY);  	BUG_ON(driver->subtype != PTY_TYPE_SLAVE); +	inode = new_inode(sb);  	if (!inode) -		return -ENOMEM; +		return ERR_PTR(-ENOMEM);  	inode->i_ino = number + 3;  	inode->i_uid = opts->setuid ? opts->uid : current_fsuid(); @@ -585,12 +585,12 @@ int devpts_pty_new(struct inode *ptmx_inode, struct tty_struct *tty)  		fsnotify_create(root->d_inode, dentry);  	} else {  		iput(inode); -		ret = -ENOMEM; +		inode = ERR_PTR(-ENOMEM);  	}  	mutex_unlock(&root->d_inode->i_mutex); -	return ret; +	return inode;  }  void *devpts_get_priv(struct inode *pts_inode) |