Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 8274
b: refs/heads/master
c: 35311d6
h: refs/heads/master
v: v3
  • Loading branch information
Kirill Korotaev authored and Linus Torvalds committed Sep 9, 2005
1 parent 414b6bd commit 44ae00a
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 5 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: b95adac775aad29f79ffbbaf5db0e4d8d57f2714
refs/heads/master: 35311d6478077f7bfe35c1c653193e658bf32686
17 changes: 13 additions & 4 deletions trunk/arch/x86_64/ia32/ia32_ioctl.c
Original file line number Diff line number Diff line change
Expand Up @@ -24,17 +24,26 @@
static int tiocgdev(unsigned fd, unsigned cmd, unsigned int __user *ptr)
{

struct file *file = fget(fd);
struct file *file;
struct tty_struct *real_tty;
int fput_needed, ret;

file = fget_light(fd, &fput_needed);
if (!file)
return -EBADF;

ret = -EINVAL;
if (file->f_op->ioctl != tty_ioctl)
return -EINVAL;
goto out;
real_tty = (struct tty_struct *)file->private_data;
if (!real_tty)
return -EINVAL;
return put_user(new_encode_dev(tty_devnum(real_tty)), ptr);
goto out;

ret = put_user(new_encode_dev(tty_devnum(real_tty)), ptr);

out:
fput_light(file, fput_needed);
return ret;
}

#define RTC_IRQP_READ32 _IOR('p', 0x0b, unsigned int) /* Read IRQ rate */
Expand Down

0 comments on commit 44ae00a

Please sign in to comment.