diff options
Diffstat (limited to 'fs/compat.c')
| -rw-r--r-- | fs/compat.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/fs/compat.c b/fs/compat.c index 040a8be38a48..72e5e6923828 100644 --- a/fs/compat.c +++ b/fs/compat.c | |||
| @@ -371,13 +371,14 @@ static void compat_ioctl_error(struct file *filp, unsigned int fd, | |||
| 371 | fn = "?"; | 371 | fn = "?"; |
| 372 | } | 372 | } |
| 373 | 373 | ||
| 374 | sprintf(buf,"'%c'", (cmd>>24) & 0x3f); | 374 | sprintf(buf,"'%c'", (cmd>>_IOC_TYPESHIFT) & _IOC_TYPEMASK); |
| 375 | if (!isprint(buf[1])) | 375 | if (!isprint(buf[1])) |
| 376 | sprintf(buf, "%02x", buf[1]); | 376 | sprintf(buf, "%02x", buf[1]); |
| 377 | compat_printk("ioctl32(%s:%d): Unknown cmd fd(%d) " | 377 | compat_printk("ioctl32(%s:%d): Unknown cmd fd(%d) " |
| 378 | "cmd(%08x){%s} arg(%08x) on %s\n", | 378 | "cmd(%08x){t:%s;sz:%u} arg(%08x) on %s\n", |
| 379 | current->comm, current->pid, | 379 | current->comm, current->pid, |
| 380 | (int)fd, (unsigned int)cmd, buf, | 380 | (int)fd, (unsigned int)cmd, buf, |
| 381 | (cmd >> _IOC_SIZESHIFT) & _IOC_SIZEMASK, | ||
| 381 | (unsigned int)arg, fn); | 382 | (unsigned int)arg, fn); |
| 382 | 383 | ||
| 383 | if (path) | 384 | if (path) |
