From fdec8a4ad3b166d83e00a04f9e926dc3261daf5d Mon Sep 17 00:00:00 2001 From: Richard Weinberger Date: Mon, 22 Feb 2016 14:52:04 +0100 Subject: ubi: tests: Support up to 65k NAND page size io_read and io_update of mtd-utils support NAND with 4k page size only. Increase that to support up to 65k page size. Signed-off-by: Richard Weinberger Signed-off-by: David Gstir Signed-off-by: David Oberhollenzer --- tests/ubi-tests/io_read.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'tests/ubi-tests/io_read.c') diff --git a/tests/ubi-tests/io_read.c b/tests/ubi-tests/io_read.c index 386291e..f48db67 100644 --- a/tests/ubi-tests/io_read.c +++ b/tests/ubi-tests/io_read.c @@ -41,7 +41,7 @@ static int fd; /* Data lengthes to test, @io - minimal I/O unit size, @s - eraseblock size */ #define LENGTHES(io, s) \ {1, (io), (io)+1, 2*(io), 3*(io)-1, 3*(io), \ - PAGE_SIZE-1, PAGE_SIZE-(io), 2*PAGE_SIZE, 2*PAGE_SIZE-(io), \ + MAX_NAND_PAGE_SIZE-1, MAX_NAND_PAGE_SIZE-(io), 2*MAX_NAND_PAGE_SIZE, 2*MAX_NAND_PAGE_SIZE-(io), \ (s)/2-1, (s)/2, (s)/2+1, (s)-1, (s), (s)+1, 2*(s)-(io), 2*(s), \ 2*(s)+(io), 3*(s), 3*(s)+(io)}; @@ -51,9 +51,9 @@ static int fd; */ #define OFFSETS(io, s, sz) \ {0, (io)-1, (io), (io)+1, 2*(io)-1, 2*(io), 3*(io)-1, 3*(io), \ - PAGE_SIZE-1, PAGE_SIZE-(io), 2*PAGE_SIZE, 2*PAGE_SIZE-(io), \ + MAX_NAND_PAGE_SIZE-1, MAX_NAND_PAGE_SIZE-(io), 2*MAX_NAND_PAGE_SIZE, 2*MAX_NAND_PAGE_SIZE-(io), \ (s)/2-1, (s)/2, (s)/2+1, (s)-1, (s), (s)+1, 2*(s)-(io), 2*(s), \ - 2*(s)+(io), 3*(s), (sz)-(s)-1, (sz)-(io)-1, (sz)-PAGE_SIZE-1}; + 2*(s)+(io), 3*(s), (sz)-(s)-1, (sz)-(io)-1, (sz)-MAX_NAND_PAGE_SIZE-1}; /** * test_static - test static volume-specific features. -- cgit v1.2.3