[v3,10/29] m68k: Add <bits/pagesize.h>
Checks
Context |
Check |
Description |
redhat-pt-bot/TryBot-apply_patch |
success
|
Patch applied to master at the time it was sent
|
linaro-tcwg-bot/tcwg_glibc_build--master-aarch64 |
success
|
Build passed
|
linaro-tcwg-bot/tcwg_glibc_check--master-aarch64 |
success
|
Test passed
|
linaro-tcwg-bot/tcwg_glibc_build--master-arm |
success
|
Build passed
|
linaro-tcwg-bot/tcwg_glibc_check--master-arm |
success
|
Test passed
|
Commit Message
This commit assumes that traditional m68k and Coldfire binaries
are incompatible and cannot run with the opposite kernel.
Based on available information, Sun3 kernels (with 8 KiB pages
according to arch/m68k/Kconfig) can run traditional m68k userspace
code, so the page size for such binaries is either 4 KiB or 8 KiB.
Page size on Coldfire kernels is always 8 KiB.
---
sysdeps/m68k/bits/pagesize.h | 2 ++
sysdeps/m68k/coldfire/bits/pagesize.h | 2 ++
2 files changed, 4 insertions(+)
create mode 100644 sysdeps/m68k/bits/pagesize.h
create mode 100644 sysdeps/m68k/coldfire/bits/pagesize.h
new file mode 100644
@@ -0,0 +1,2 @@
+#define __GLIBC_PAGE_SHIFT_MIN 12
+#define __GLIBC_PAGE_SHIFT_MAX 13
new file mode 100644
@@ -0,0 +1,2 @@
+#define __GLIBC_PAGE_SHIFT_MIN 13
+#define __GLIBC_PAGE_SHIFT_MAX 13