diff options
-rw-r--r-- | drivers/mtd/mtdchar.c | 29 | ||||
-rw-r--r-- | fs/compat_ioctl.c | 1 | ||||
-rw-r--r-- | include/mtd/mtd-abi.h | 6 |
3 files changed, 28 insertions, 8 deletions
diff --git a/drivers/mtd/mtdchar.c b/drivers/mtd/mtdchar.c index 763d3f0a1f42..ad4b8618977d 100644 --- a/drivers/mtd/mtdchar.c +++ b/drivers/mtd/mtdchar.c | |||
@@ -417,6 +417,7 @@ static int mtd_ioctl(struct inode *inode, struct file *file, | |||
417 | break; | 417 | break; |
418 | 418 | ||
419 | case MEMERASE: | 419 | case MEMERASE: |
420 | case MEMERASE64: | ||
420 | { | 421 | { |
421 | struct erase_info *erase; | 422 | struct erase_info *erase; |
422 | 423 | ||
@@ -427,20 +428,32 @@ static int mtd_ioctl(struct inode *inode, struct file *file, | |||
427 | if (!erase) | 428 | if (!erase) |
428 | ret = -ENOMEM; | 429 | ret = -ENOMEM; |
429 | else { | 430 | else { |
430 | struct erase_info_user einfo; | ||
431 | |||
432 | wait_queue_head_t waitq; | 431 | wait_queue_head_t waitq; |
433 | DECLARE_WAITQUEUE(wait, current); | 432 | DECLARE_WAITQUEUE(wait, current); |
434 | 433 | ||
435 | init_waitqueue_head(&waitq); | 434 | init_waitqueue_head(&waitq); |
436 | 435 | ||
437 | if (copy_from_user(&einfo, argp, | 436 | if (cmd == MEMERASE64) { |
438 | sizeof(struct erase_info_user))) { | 437 | struct erase_info_user64 einfo64; |
439 | kfree(erase); | 438 | |
440 | return -EFAULT; | 439 | if (copy_from_user(&einfo64, argp, |
440 | sizeof(struct erase_info_user64))) { | ||
441 | kfree(erase); | ||
442 | return -EFAULT; | ||
443 | } | ||
444 | erase->addr = einfo64.start; | ||
445 | erase->len = einfo64.length; | ||
446 | } else { | ||
447 | struct erase_info_user einfo32; | ||
448 | |||
449 | if (copy_from_user(&einfo32, argp, | ||
450 | sizeof(struct erase_info_user))) { | ||
451 | kfree(erase); | ||
452 | return -EFAULT; | ||
453 | } | ||
454 | erase->addr = einfo32.start; | ||
455 | erase->len = einfo32.length; | ||
441 | } | 456 | } |
442 | erase->addr = einfo.start; | ||
443 | erase->len = einfo.length; | ||
444 | erase->mtd = mtd; | 457 | erase->mtd = mtd; |
445 | erase->callback = mtdchar_erase_callback; | 458 | erase->callback = mtdchar_erase_callback; |
446 | erase->priv = (unsigned long)&waitq; | 459 | erase->priv = (unsigned long)&waitq; |
diff --git a/fs/compat_ioctl.c b/fs/compat_ioctl.c index b83f6bcfa51a..c603ca2c223a 100644 --- a/fs/compat_ioctl.c +++ b/fs/compat_ioctl.c | |||
@@ -2441,6 +2441,7 @@ COMPATIBLE_IOCTL(MEMGETREGIONCOUNT) | |||
2441 | COMPATIBLE_IOCTL(MEMGETREGIONINFO) | 2441 | COMPATIBLE_IOCTL(MEMGETREGIONINFO) |
2442 | COMPATIBLE_IOCTL(MEMGETBADBLOCK) | 2442 | COMPATIBLE_IOCTL(MEMGETBADBLOCK) |
2443 | COMPATIBLE_IOCTL(MEMSETBADBLOCK) | 2443 | COMPATIBLE_IOCTL(MEMSETBADBLOCK) |
2444 | COMPATIBLE_IOCTL(MEMERASE64) | ||
2444 | /* NBD */ | 2445 | /* NBD */ |
2445 | ULONG_IOCTL(NBD_SET_SOCK) | 2446 | ULONG_IOCTL(NBD_SET_SOCK) |
2446 | ULONG_IOCTL(NBD_SET_BLKSIZE) | 2447 | ULONG_IOCTL(NBD_SET_BLKSIZE) |
diff --git a/include/mtd/mtd-abi.h b/include/mtd/mtd-abi.h index b6595b3c68b6..2e32be1e3a1e 100644 --- a/include/mtd/mtd-abi.h +++ b/include/mtd/mtd-abi.h | |||
@@ -12,6 +12,11 @@ struct erase_info_user { | |||
12 | __u32 length; | 12 | __u32 length; |
13 | }; | 13 | }; |
14 | 14 | ||
15 | struct erase_info_user64 { | ||
16 | __u64 start; | ||
17 | __u64 length; | ||
18 | }; | ||
19 | |||
15 | struct mtd_oob_buf { | 20 | struct mtd_oob_buf { |
16 | __u32 start; | 21 | __u32 start; |
17 | __u32 length; | 22 | __u32 length; |
@@ -95,6 +100,7 @@ struct otp_info { | |||
95 | #define ECCGETLAYOUT _IOR('M', 17, struct nand_ecclayout) | 100 | #define ECCGETLAYOUT _IOR('M', 17, struct nand_ecclayout) |
96 | #define ECCGETSTATS _IOR('M', 18, struct mtd_ecc_stats) | 101 | #define ECCGETSTATS _IOR('M', 18, struct mtd_ecc_stats) |
97 | #define MTDFILEMODE _IO('M', 19) | 102 | #define MTDFILEMODE _IO('M', 19) |
103 | #define MEMERASE64 _IOW('M', 20, struct erase_info_user64) | ||
98 | 104 | ||
99 | /* | 105 | /* |
100 | * Obsolete legacy interface. Keep it in order not to break userspace | 106 | * Obsolete legacy interface. Keep it in order not to break userspace |