Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1611217 > unrolled thread
| Started by | Davidlohr Bueso <dave@stgolabs.net> |
|---|---|
| First post | 2017-03-28 19:00 +0200 |
| Last post | 2017-03-30 08:20 +0200 |
| Articles | 6 — 4 participants |
Back to article view | Back to linux.kernel
This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by
below is the oldest one visible, not the original post.
Re: [PATCH] mm,hugetlb: compute page_size_log properly Davidlohr Bueso <dave@stgolabs.net> - 2017-03-28 19:00 +0200
Re: [PATCH] mm,hugetlb: compute page_size_log properly Davidlohr Bueso <dave@stgolabs.net> - 2017-03-28 19:00 +0200
Re: [PATCH] mm,hugetlb: compute page_size_log properly Matthew Wilcox <willy@infradead.org> - 2017-03-28 20:00 +0200
Re: [PATCH] mm,hugetlb: compute page_size_log properly Michal Hocko <mhocko@kernel.org> - 2017-03-29 10:10 +0200
Re: [PATCH] mm,hugetlb: compute page_size_log properly Andi Kleen <ak@linux.intel.com> - 2017-03-29 19:50 +0200
Re: [PATCH] mm,hugetlb: compute page_size_log properly Michal Hocko <mhocko@kernel.org> - 2017-03-30 08:20 +0200
| From | Davidlohr Bueso <dave@stgolabs.net> |
|---|---|
| Date | 2017-03-28 19:00 +0200 |
| Subject | Re: [PATCH] mm,hugetlb: compute page_size_log properly |
| Message-ID | <tq2Dn-22K-7@gated-at.bofh.it> |
Do we have any consensus here? Keeping SHM_HUGE_* is currently winning 2-1. If there are in fact users out there computing the value manually, then I am ok with keeping it and properly exporting it. Michal? Thanks, Davidlohr
[toc] | [next] | [standalone]
| From | Davidlohr Bueso <dave@stgolabs.net> |
|---|---|
| Date | 2017-03-28 19:00 +0200 |
| Message-ID | <tq2Dn-22K-9@gated-at.bofh.it> |
| In reply to | #1611217 |
Sorry, forgot to add Anshuman. On Tue, 28 Mar 2017, Davidlohr Bueso wrote: >Do we have any consensus here? Keeping SHM_HUGE_* is currently >winning 2-1. If there are in fact users out there computing the >value manually, then I am ok with keeping it and properly exporting >it. Michal? > >Thanks, >Davidlohr
[toc] | [prev] | [next] | [standalone]
| From | Matthew Wilcox <willy@infradead.org> |
|---|---|
| Date | 2017-03-28 20:00 +0200 |
| Message-ID | <tq3zr-2Gq-11@gated-at.bofh.it> |
| In reply to | #1611218 |
On Tue, Mar 28, 2017 at 09:55:13AM -0700, Davidlohr Bueso wrote:
> Do we have any consensus here? Keeping SHM_HUGE_* is currently
> winning 2-1. If there are in fact users out there computing the
> value manually, then I am ok with keeping it and properly exporting
> it. Michal?
Well, let's see what it looks like to do that. I went down the rabbit
hole trying to understand why some of the SHM_ flags had the same value
as each other until I realised some of them were internal flags, some
were flags to shmat() and others were flags to shmget(). Hopefully I
disambiguated them nicely in this patch. I also added 8MB and 16GB sizes.
Any more architectures with a pet favourite huge/giant page size we
should add convenience defines for?
diff --git a/include/linux/shm.h b/include/linux/shm.h
index 04e881829625..cd95243efd1a 100644
--- a/include/linux/shm.h
+++ b/include/linux/shm.h
@@ -24,26 +24,13 @@ struct shmid_kernel /* private to the kernel */
struct list_head shm_clist; /* list by creator */
};
-/* shm_mode upper byte flags */
-#define SHM_DEST 01000 /* segment will be destroyed on last detach */
-#define SHM_LOCKED 02000 /* segment will not be swapped */
-#define SHM_HUGETLB 04000 /* segment will use huge TLB pages */
-#define SHM_NORESERVE 010000 /* don't check for reservations */
-
-/* Bits [26:31] are reserved */
-
/*
- * When SHM_HUGETLB is set bits [26:31] encode the log2 of the huge page size.
- * This gives us 6 bits, which is enough until someone invents 128 bit address
- * spaces.
- *
- * Assume these are all power of twos.
- * When 0 use the default page size.
+ * These flags are used internally; they cannot be specified by the user.
+ * They are masked off in newseg(). These values are used by IPC_CREAT
+ * and IPC_EXCL when calling shmget().
*/
-#define SHM_HUGE_SHIFT 26
-#define SHM_HUGE_MASK 0x3f
-#define SHM_HUGE_2MB (21 << SHM_HUGE_SHIFT)
-#define SHM_HUGE_1GB (30 << SHM_HUGE_SHIFT)
+#define SHM_DEST 01000 /* segment will be destroyed on last detach */
+#define SHM_LOCKED 02000 /* segment will not be swapped */
#ifdef CONFIG_SYSVIPC
struct sysv_shm {
diff --git a/include/uapi/linux/shm.h b/include/uapi/linux/shm.h
index 1fbf24ea37fd..44b36cb228d7 100644
--- a/include/uapi/linux/shm.h
+++ b/include/uapi/linux/shm.h
@@ -40,15 +40,34 @@ struct shmid_ds {
/* Include the definition of shmid64_ds and shminfo64 */
#include <asm/shmbuf.h>
-/* permission flag for shmget */
+/* shmget() shmflg values. */
+/* The bottom nine bits are the same as open(2) mode flags */
#define SHM_R 0400 /* or S_IRUGO from <linux/stat.h> */
#define SHM_W 0200 /* or S_IWUGO from <linux/stat.h> */
+/* Bits 9 & 10 are IPC_CREAT and IPC_EXCL */
+#define SHM_HUGETLB (1 << 11) /* segment will use huge TLB pages */
+#define SHM_NORESERVE (1 << 12) /* don't check for reservations */
-/* mode for attach */
-#define SHM_RDONLY 010000 /* read-only access */
-#define SHM_RND 020000 /* round attach address to SHMLBA boundary */
-#define SHM_REMAP 040000 /* take-over region on attach */
-#define SHM_EXEC 0100000 /* execution access */
+/*
+ * When SHM_HUGETLB is set bits [26:31] encode the log2 of the huge page size.
+ * This gives us 6 bits, which is enough until someone invents 128 bit address
+ * spaces. These match MAP_HUGE_SHIFT and MAP_HUGE_MASK.
+ *
+ * Assume these are all powers of two.
+ * When 0 use the default page size.
+ */
+#define SHM_HUGE_SHIFT 26
+#define SHM_HUGE_MASK 0x3f
+#define SHM_HUGE_2MB (21 << SHM_HUGE_SHIFT)
+#define SHM_HUGE_8MB (23 << SHM_HUGE_SHIFT)
+#define SHM_HUGE_1GB (30 << SHM_HUGE_SHIFT)
+#define SHM_HUGE_16GB (34 << SHM_HUGE_SHIFT)
+
+/* shmat() shmflg values */
+#define SHM_RDONLY (1 << 12) /* read-only access */
+#define SHM_RND (1 << 13) /* round attach address to SHMLBA boundary */
+#define SHM_REMAP (1 << 14) /* take-over region on attach */
+#define SHM_EXEC (1 << 15) /* execution access */
/* super user shmctl commands */
#define SHM_LOCK 11
diff --git a/mm/mmap.c b/mm/mmap.c
index 499b988b1639..40b29aca18c1 100644
--- a/mm/mmap.c
+++ b/mm/mmap.c
@@ -1479,7 +1479,7 @@ SYSCALL_DEFINE6(mmap_pgoff, unsigned long, addr, unsigned long, len,
struct user_struct *user = NULL;
struct hstate *hs;
- hs = hstate_sizelog((flags >> MAP_HUGE_SHIFT) & SHM_HUGE_MASK);
+ hs = hstate_sizelog((flags >> MAP_HUGE_SHIFT) & MAP_HUGE_MASK);
if (!hs)
return -EINVAL;
[toc] | [prev] | [next] | [standalone]
| From | Michal Hocko <mhocko@kernel.org> |
|---|---|
| Date | 2017-03-29 10:10 +0200 |
| Message-ID | <tqgQ2-46p-1@gated-at.bofh.it> |
| In reply to | #1611256 |
On Tue 28-03-17 10:54:08, Matthew Wilcox wrote: > On Tue, Mar 28, 2017 at 09:55:13AM -0700, Davidlohr Bueso wrote: > > Do we have any consensus here? Keeping SHM_HUGE_* is currently > > winning 2-1. If there are in fact users out there computing the > > value manually, then I am ok with keeping it and properly exporting > > it. Michal? > > Well, let's see what it looks like to do that. I went down the rabbit > hole trying to understand why some of the SHM_ flags had the same value > as each other until I realised some of them were internal flags, some > were flags to shmat() and others were flags to shmget(). Hopefully I > disambiguated them nicely in this patch. I also added 8MB and 16GB sizes. > Any more architectures with a pet favourite huge/giant page size we > should add convenience defines for? Do we actually have any users? -- Michal Hocko SUSE Labs
[toc] | [prev] | [next] | [standalone]
| From | Andi Kleen <ak@linux.intel.com> |
|---|---|
| Date | 2017-03-29 19:50 +0200 |
| Message-ID | <tqpTj-1P5-7@gated-at.bofh.it> |
| In reply to | #1611668 |
On Wed, Mar 29, 2017 at 10:06:25AM +0200, Michal Hocko wrote: > On Tue 28-03-17 10:54:08, Matthew Wilcox wrote: > > On Tue, Mar 28, 2017 at 09:55:13AM -0700, Davidlohr Bueso wrote: > > > Do we have any consensus here? Keeping SHM_HUGE_* is currently > > > winning 2-1. If there are in fact users out there computing the > > > value manually, then I am ok with keeping it and properly exporting > > > it. Michal? > > > > Well, let's see what it looks like to do that. I went down the rabbit > > hole trying to understand why some of the SHM_ flags had the same value > > as each other until I realised some of them were internal flags, some > > were flags to shmat() and others were flags to shmget(). Hopefully I > > disambiguated them nicely in this patch. I also added 8MB and 16GB sizes. > > Any more architectures with a pet favourite huge/giant page size we > > should add convenience defines for? > > Do we actually have any users? Yes this feature is widely used. -Andi
[toc] | [prev] | [next] | [standalone]
| From | Michal Hocko <mhocko@kernel.org> |
|---|---|
| Date | 2017-03-30 08:20 +0200 |
| Message-ID | <tqBB7-23k-3@gated-at.bofh.it> |
| In reply to | #1612183 |
On Wed 29-03-17 10:45:14, Andi Kleen wrote: > On Wed, Mar 29, 2017 at 10:06:25AM +0200, Michal Hocko wrote: > > On Tue 28-03-17 10:54:08, Matthew Wilcox wrote: > > > On Tue, Mar 28, 2017 at 09:55:13AM -0700, Davidlohr Bueso wrote: > > > > Do we have any consensus here? Keeping SHM_HUGE_* is currently > > > > winning 2-1. If there are in fact users out there computing the > > > > value manually, then I am ok with keeping it and properly exporting > > > > it. Michal? > > > > > > Well, let's see what it looks like to do that. I went down the rabbit > > > hole trying to understand why some of the SHM_ flags had the same value > > > as each other until I realised some of them were internal flags, some > > > were flags to shmat() and others were flags to shmget(). Hopefully I > > > disambiguated them nicely in this patch. I also added 8MB and 16GB sizes. > > > Any more architectures with a pet favourite huge/giant page size we > > > should add convenience defines for? > > > > Do we actually have any users? > > Yes this feature is widely used. Considering that none of SHM_HUGE* has been exported to the userspace headers all the users would have to use the this flag by the value and I am quite skeptical that application actually do that. Could you point me to some projects that use this? -- Michal Hocko SUSE Labs
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web