From: Siddhesh Poyarekar Date: Wed, 8 Aug 2018 15:46:07 +0000 (+0530) Subject: [aarch64] Fix value of MIN_PAGE_SIZE for testing X-Git-Tag: glibc-2.29~563 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=be64b1946b47087fda2e48cfba759cbb4fdfaada;p=thirdparty%2Fglibc.git [aarch64] Fix value of MIN_PAGE_SIZE for testing MIN_PAGE_SIZE is normally set to 4096 but for testing it can be set to 16 so that it exercises the page crossing code for every misaligned access. The value was set to 15, which is obviously wrong, so fixed as obvious and tested. * sysdeps/aarch64/strlen.S [TEST_PAGE_CROSS](MIN_PAGE_SIZE): Fix value. --- diff --git a/ChangeLog b/ChangeLog index d3bb06f596b..37fe532a68f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2018-08-08 Siddhesh Poyarekar + + * sysdeps/aarch64/strlen.S [TEST_PAGE_CROSS](MIN_PAGE_SIZE): + Fix value. + 2018-08-08 Joseph Myers * math/libm-test-nextdown.inc (do_test): Move comment to .... diff --git a/sysdeps/aarch64/strlen.S b/sysdeps/aarch64/strlen.S index 32292e3b6ee..eb773ef5326 100644 --- a/sysdeps/aarch64/strlen.S +++ b/sysdeps/aarch64/strlen.S @@ -54,7 +54,7 @@ #define REP8_80 0x8080808080808080 #ifdef TEST_PAGE_CROSS -# define MIN_PAGE_SIZE 15 +# define MIN_PAGE_SIZE 16 #else # define MIN_PAGE_SIZE 4096 #endif