]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
fs: Fix ext2 read issue
authorDave Liu <r63238@freescale.com>
Fri, 29 Feb 2008 09:45:31 +0000 (17:45 +0800)
committerWolfgang Denk <wd@denx.de>
Sun, 2 Mar 2008 21:47:35 +0000 (22:47 +0100)
The ext2 aligned process will corrupt the key
data struct, the patch fix this.

Signed-off-by: Dave Liu <daveliu@freescale.com>
fs/ext2/dev.c

index 643a1a8c850182daa37f7b9232b4047f7a83d936..1728b34fc8d5c4d5a394c53dd171aa46e6a46349 100644 (file)
@@ -96,8 +96,23 @@ int ext2fs_devread (int sector, int byte_offset, int byte_len, char *buf) {
                sector++;
        }
 
+       if (byte_len == 0)
+               return 1;
+
        /*  read sector aligned part */
        block_len = byte_len & ~(SECTOR_SIZE - 1);
+
+       if (block_len == 0) {
+               u8 p[SECTOR_SIZE];
+
+               block_len = SECTOR_SIZE;
+               ext2fs_block_dev_desc->block_read(ext2fs_block_dev_desc->dev,
+                                                 part_info.start + sector,
+                                                 1, (unsigned long *)p);
+               memcpy(buf, p, byte_len);
+               return 1;
+       }
+
        if (ext2fs_block_dev_desc->block_read (ext2fs_block_dev_desc->dev,
                                               part_info.start + sector,
                                               block_len / SECTOR_SIZE,
@@ -106,6 +121,7 @@ int ext2fs_devread (int sector, int byte_offset, int byte_len, char *buf) {
                printf (" ** ext2fs_devread() read error - block\n");
                return (0);
        }
+       block_len = byte_len & ~(SECTOR_SIZE - 1);
        buf += block_len;
        byte_len -= block_len;
        sector += block_len / SECTOR_SIZE;