This is the mail archive of the glibc-cvs@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

GNU C Library master sources branch master updated. glibc-2.28.9000-27-gbe64b19


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU C Library master sources".

The branch, master has been updated
       via  be64b1946b47087fda2e48cfba759cbb4fdfaada (commit)
      from  140137fb2d16bd362ef57a879145fc1f8240fca6 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=be64b1946b47087fda2e48cfba759cbb4fdfaada

commit be64b1946b47087fda2e48cfba759cbb4fdfaada
Author: Siddhesh Poyarekar <siddhesh@sourceware.org>
Date:   Wed Aug 8 21:16:07 2018 +0530

    [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 d3bb06f..37fe532 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2018-08-08  Siddhesh Poyarekar  <siddhesh@sourceware.org>
+
+	* sysdeps/aarch64/strlen.S [TEST_PAGE_CROSS](MIN_PAGE_SIZE):
+	Fix value.
+
 2018-08-08  Joseph Myers  <joseph@codesourcery.com>
 
 	* math/libm-test-nextdown.inc (do_test): Move comment to ....
diff --git a/sysdeps/aarch64/strlen.S b/sysdeps/aarch64/strlen.S
index 32292e3..eb773ef 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

-----------------------------------------------------------------------

Summary of changes:
 ChangeLog                |    5 +++++
 sysdeps/aarch64/strlen.S |    2 +-
 2 files changed, 6 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
GNU C Library master sources


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]