Re: [U-Boot] [RFC PATCH 3/4] ext4: fix endianess problems in ext4 write support

2016-08-16 Thread BrĂ¼ns , Stefan
On Dienstag, 16. August 2016 13:41:21 CEST you wrote: > Hi Stefan, > > Am 2016-08-14 03:50, schrieb Stefan Bruens: > > On Freitag, 12. August 2016 15:16:20 CEST Michael Walle wrote: > >> All fields were accessed directly instead of using the proper byte > >> swap > >> functions. Thus, ext4 write s

Re: [U-Boot] [RFC PATCH 3/4] ext4: fix endianess problems in ext4 write support

2016-08-16 Thread Michael Walle
Hi Stefan, Am 2016-08-14 03:50, schrieb Stefan Bruens: On Freitag, 12. August 2016 15:16:20 CEST Michael Walle wrote: All fields were accessed directly instead of using the proper byte swap functions. Thus, ext4 write support was only usable on little-endian architectures. Fix this. Signed-of

Re: [U-Boot] [RFC PATCH 3/4] ext4: fix endianess problems in ext4 write support

2016-08-16 Thread Michael Walle
Am 2016-08-14 03:50, schrieb Stefan Bruens: On Freitag, 12. August 2016 15:16:20 CEST Michael Walle wrote: All fields were accessed directly instead of using the proper byte swap functions. Thus, ext4 write support was only usable on little-endian architectures. Fix this. Signed-off-by: Michae

Re: [U-Boot] [RFC PATCH 3/4] ext4: fix endianess problems in ext4 write support

2016-08-14 Thread Stefan Bruens
On Freitag, 12. August 2016 15:16:20 CEST Michael Walle wrote: > All fields were accessed directly instead of using the proper byte swap > functions. Thus, ext4 write support was only usable on little-endian > architectures. Fix this. > > Signed-off-by: Michael Walle I have tested this on sandbo

[U-Boot] [RFC PATCH 3/4] ext4: fix endianess problems in ext4 write support

2016-08-12 Thread Michael Walle
All fields were accessed directly instead of using the proper byte swap functions. Thus, ext4 write support was only usable on little-endian architectures. Fix this. Signed-off-by: Michael Walle --- Ok this patch is huge, please comment. I know, checkpatch fails because there are longer lines th