* [PATCH] MTD: Fix MEMGETINFO and MEMGETREGIONINFO for devices >= 4GB
@ 2009-10-07 8:26 Felix Radensky
2009-10-11 12:40 ` Artem Bityutskiy
0 siblings, 1 reply; 2+ messages in thread
From: Felix Radensky @ 2009-10-07 8:26 UTC (permalink / raw)
To: linux-mtd; +Cc: Felix Radensky
Currently MEMGETINFO and MEMGETREGIONINFO report invalid
information for devices >= 4GB, since relevant fields in
MTD ABI structures are 32-bit while corresponding fields
in kernel internal structures are 64-bit. Fix ABI fields
to be 64-bit as well.
Signed-off-by: Felix Radensky <felix@embedded-sol.com>
---
include/mtd/mtd-abi.h | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/include/mtd/mtd-abi.h b/include/mtd/mtd-abi.h
index be51ae2..c66044d 100644
--- a/include/mtd/mtd-abi.h
+++ b/include/mtd/mtd-abi.h
@@ -64,7 +64,7 @@ struct mtd_oob_buf64 {
struct mtd_info_user {
__u8 type;
__u32 flags;
- __u32 size; // Total size of the MTD
+ __u64 size; // Total size of the MTD
__u32 erasesize;
__u32 writesize;
__u32 oobsize; // Amount of OOB data per block (e.g. 16)
@@ -75,7 +75,7 @@ struct mtd_info_user {
};
struct region_info_user {
- __u32 offset; /* At which this region starts,
+ __u64 offset; /* At which this region starts,
* from the beginning of the MTD */
__u32 erasesize; /* For this region */
__u32 numblocks; /* Number of blocks in this region */
--
1.5.4.3
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] MTD: Fix MEMGETINFO and MEMGETREGIONINFO for devices >= 4GB
2009-10-07 8:26 [PATCH] MTD: Fix MEMGETINFO and MEMGETREGIONINFO for devices >= 4GB Felix Radensky
@ 2009-10-11 12:40 ` Artem Bityutskiy
0 siblings, 0 replies; 2+ messages in thread
From: Artem Bityutskiy @ 2009-10-11 12:40 UTC (permalink / raw)
To: Felix Radensky; +Cc: linux-mtd
On Wed, 2009-10-07 at 10:26 +0200, Felix Radensky wrote:
> Currently MEMGETINFO and MEMGETREGIONINFO report invalid
> information for devices >= 4GB, since relevant fields in
> MTD ABI structures are 32-bit while corresponding fields
> in kernel internal structures are 64-bit. Fix ABI fields
> to be 64-bit as well.
>
> Signed-off-by: Felix Radensky <felix@embedded-sol.com>
> ---
> include/mtd/mtd-abi.h | 4 ++--
> 1 files changed, 2 insertions(+), 2 deletions(-)
Nack. As it was discussed several times, you cannot change these data
structure because you will break binary compatibility.
New ioctls is the way out.
--
Best Regards,
Artem Bityutskiy (Артём Битюцкий)
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2009-10-11 12:41 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-10-07 8:26 [PATCH] MTD: Fix MEMGETINFO and MEMGETREGIONINFO for devices >= 4GB Felix Radensky
2009-10-11 12:40 ` Artem Bityutskiy
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox