Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1560018 > unrolled thread
| Started by | Michal Hocko <mhocko@kernel.org> |
|---|---|
| First post | 2017-01-16 20:50 +0100 |
| Last post | 2017-01-19 22:30 +0100 |
| Articles | 12 — 2 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 1/6] mm: introduce kv[mz]alloc helpers Michal Hocko <mhocko@kernel.org> - 2017-01-16 20:50 +0100
Re: [PATCH 1/6] mm: introduce kv[mz]alloc helpers John Hubbard <jhubbard@nvidia.com> - 2017-01-16 22:30 +0100
Re: [PATCH 1/6] mm: introduce kv[mz]alloc helpers Michal Hocko <mhocko@kernel.org> - 2017-01-16 22:50 +0100
Re: [PATCH 1/6] mm: introduce kv[mz]alloc helpers John Hubbard <jhubbard@nvidia.com> - 2017-01-16 23:00 +0100
Re: [PATCH 1/6] mm: introduce kv[mz]alloc helpers Michal Hocko <mhocko@kernel.org> - 2017-01-17 09:00 +0100
Re: [PATCH 1/6] mm: introduce kv[mz]alloc helpers John Hubbard <jhubbard@nvidia.com> - 2017-01-18 07:10 +0100
Re: [PATCH 1/6] mm: introduce kv[mz]alloc helpers Michal Hocko <mhocko@kernel.org> - 2017-01-18 09:30 +0100
Re: [PATCH 1/6] mm: introduce kv[mz]alloc helpers John Hubbard <jhubbard@nvidia.com> - 2017-01-19 09:40 +0100
Re: [PATCH 1/6] mm: introduce kv[mz]alloc helpers Michal Hocko <mhocko@kernel.org> - 2017-01-19 10:10 +0100
Re: [PATCH 1/6] mm: introduce kv[mz]alloc helpers John Hubbard <jhubbard@nvidia.com> - 2017-01-19 10:20 +0100
Re: [PATCH 1/6] mm: introduce kv[mz]alloc helpers Michal Hocko <mhocko@kernel.org> - 2017-01-19 11:00 +0100
Re: [PATCH 1/6] mm: introduce kv[mz]alloc helpers John Hubbard <jhubbard@nvidia.com> - 2017-01-19 22:30 +0100
| From | Michal Hocko <mhocko@kernel.org> |
|---|---|
| Date | 2017-01-16 20:50 +0100 |
| Subject | Re: [PATCH 1/6] mm: introduce kv[mz]alloc helpers |
| Message-ID | <t0lrX-58K-5@gated-at.bofh.it> |
On Mon 16-01-17 11:09:37, John Hubbard wrote: > > > On 01/16/2017 12:47 AM, Michal Hocko wrote: > > On Sun 15-01-17 20:34:13, John Hubbard wrote: [...] > > > Is that "Reclaim modifiers" line still true, or is it a leftover from an > > > earlier approach? I am having trouble reconciling it with rest of the > > > patchset, because: > > > > > > a) the flags argument below is effectively passed on to either kmalloc_node > > > (possibly adding, but not removing flags), or to __vmalloc_node_flags. > > > > The above only says thos are _unsupported_ - in other words the behavior > > is not defined. Even if flags are passed down to kmalloc resp. vmalloc > > it doesn't mean they are used that way. Remember that vmalloc uses > > some hardcoded GFP_KERNEL allocations. So while I could be really > > strict about this and mask away these flags I doubt this is worth the > > additional code. > > I do wonder about passing those flags through to kmalloc. Maybe it is worth > stripping out __GFP_NORETRY and __GFP_NOFAIL, after all. It provides some > insulation from any future changes to the implementation of kmalloc, and it > also makes the documentation more believable. I am not really convinced that we should take an extra steps for these flags. There are no existing users for those flags and new users should follow the documentation. -- Michal Hocko SUSE Labs
[toc] | [next] | [standalone]
| From | John Hubbard <jhubbard@nvidia.com> |
|---|---|
| Date | 2017-01-16 22:30 +0100 |
| Message-ID | <t0n0K-6iP-27@gated-at.bofh.it> |
| In reply to | #1560018 |
On 01/16/2017 11:40 AM, Michal Hocko wrote: > On Mon 16-01-17 11:09:37, John Hubbard wrote: >> >> >> On 01/16/2017 12:47 AM, Michal Hocko wrote: >>> On Sun 15-01-17 20:34:13, John Hubbard wrote: > [...] >>>> Is that "Reclaim modifiers" line still true, or is it a leftover from an >>>> earlier approach? I am having trouble reconciling it with rest of the >>>> patchset, because: >>>> >>>> a) the flags argument below is effectively passed on to either kmalloc_node >>>> (possibly adding, but not removing flags), or to __vmalloc_node_flags. >>> >>> The above only says thos are _unsupported_ - in other words the behavior >>> is not defined. Even if flags are passed down to kmalloc resp. vmalloc >>> it doesn't mean they are used that way. Remember that vmalloc uses >>> some hardcoded GFP_KERNEL allocations. So while I could be really >>> strict about this and mask away these flags I doubt this is worth the >>> additional code. >> >> I do wonder about passing those flags through to kmalloc. Maybe it is worth >> stripping out __GFP_NORETRY and __GFP_NOFAIL, after all. It provides some >> insulation from any future changes to the implementation of kmalloc, and it >> also makes the documentation more believable. > > I am not really convinced that we should take an extra steps for these > flags. There are no existing users for those flags and new users should > follow the documentation. OK, let's just fortify the documentation ever so slightly, then, so that users are more likely to do the right thing. How's this sound: * Reclaim modifiers - __GFP_NORETRY and __GFP_NOFAIL are not supported. (Even * though the current implementation passes the flags on through to kmalloc and * vmalloc, that is done for efficiency and to avoid unnecessary code. The caller * should not pass in these flags.) * * __GFP_REPEAT is supported, but only for large (>64kB) allocations. ? Or is that documentation overkill? thanks john h > > -- > Michal Hocko > SUSE Labs >
[toc] | [prev] | [next] | [standalone]
| From | Michal Hocko <mhocko@kernel.org> |
|---|---|
| Date | 2017-01-16 22:50 +0100 |
| Message-ID | <t0nk6-6qK-19@gated-at.bofh.it> |
| In reply to | #1560074 |
On Mon 16-01-17 13:15:08, John Hubbard wrote: > > > On 01/16/2017 11:40 AM, Michal Hocko wrote: > > On Mon 16-01-17 11:09:37, John Hubbard wrote: > > > > > > > > > On 01/16/2017 12:47 AM, Michal Hocko wrote: > > > > On Sun 15-01-17 20:34:13, John Hubbard wrote: > > [...] > > > > > Is that "Reclaim modifiers" line still true, or is it a leftover from an > > > > > earlier approach? I am having trouble reconciling it with rest of the > > > > > patchset, because: > > > > > > > > > > a) the flags argument below is effectively passed on to either kmalloc_node > > > > > (possibly adding, but not removing flags), or to __vmalloc_node_flags. > > > > > > > > The above only says thos are _unsupported_ - in other words the behavior > > > > is not defined. Even if flags are passed down to kmalloc resp. vmalloc > > > > it doesn't mean they are used that way. Remember that vmalloc uses > > > > some hardcoded GFP_KERNEL allocations. So while I could be really > > > > strict about this and mask away these flags I doubt this is worth the > > > > additional code. > > > > > > I do wonder about passing those flags through to kmalloc. Maybe it is worth > > > stripping out __GFP_NORETRY and __GFP_NOFAIL, after all. It provides some > > > insulation from any future changes to the implementation of kmalloc, and it > > > also makes the documentation more believable. > > > > I am not really convinced that we should take an extra steps for these > > flags. There are no existing users for those flags and new users should > > follow the documentation. > > OK, let's just fortify the documentation ever so slightly, then, so that > users are more likely to do the right thing. How's this sound: > > * Reclaim modifiers - __GFP_NORETRY and __GFP_NOFAIL are not supported. (Even > * though the current implementation passes the flags on through to kmalloc and > * vmalloc, that is done for efficiency and to avoid unnecessary code. The caller > * should not pass in these flags.) > * > * __GFP_REPEAT is supported, but only for large (>64kB) allocations. > > > ? Or is that documentation overkill? Dunno, it sounds like an overkill to me. It is telling more than necessary. If we want to be so vocal about gfp flags then we would have to say much more I suspect. E.g. what about __GFP_HIGHMEM? This flag is supported for vmalloc while unsupported for kmalloc. I am pretty sure there would be other gfp flags to consider and then this would grow borringly large and uninteresting to the point when people simply stop reading it. Let's just be as simple as possible. -- Michal Hocko SUSE Labs
[toc] | [prev] | [next] | [standalone]
| From | John Hubbard <jhubbard@nvidia.com> |
|---|---|
| Date | 2017-01-16 23:00 +0100 |
| Message-ID | <t0ntL-6uv-1@gated-at.bofh.it> |
| In reply to | #1560121 |
On 01/16/2017 01:48 PM, Michal Hocko wrote: > On Mon 16-01-17 13:15:08, John Hubbard wrote: >> >> >> On 01/16/2017 11:40 AM, Michal Hocko wrote: >>> On Mon 16-01-17 11:09:37, John Hubbard wrote: >>>> >>>> >>>> On 01/16/2017 12:47 AM, Michal Hocko wrote: >>>>> On Sun 15-01-17 20:34:13, John Hubbard wrote: >>> [...] >>>>>> Is that "Reclaim modifiers" line still true, or is it a leftover from an >>>>>> earlier approach? I am having trouble reconciling it with rest of the >>>>>> patchset, because: >>>>>> >>>>>> a) the flags argument below is effectively passed on to either kmalloc_node >>>>>> (possibly adding, but not removing flags), or to __vmalloc_node_flags. >>>>> >>>>> The above only says thos are _unsupported_ - in other words the behavior >>>>> is not defined. Even if flags are passed down to kmalloc resp. vmalloc >>>>> it doesn't mean they are used that way. Remember that vmalloc uses >>>>> some hardcoded GFP_KERNEL allocations. So while I could be really >>>>> strict about this and mask away these flags I doubt this is worth the >>>>> additional code. >>>> >>>> I do wonder about passing those flags through to kmalloc. Maybe it is worth >>>> stripping out __GFP_NORETRY and __GFP_NOFAIL, after all. It provides some >>>> insulation from any future changes to the implementation of kmalloc, and it >>>> also makes the documentation more believable. >>> >>> I am not really convinced that we should take an extra steps for these >>> flags. There are no existing users for those flags and new users should >>> follow the documentation. >> >> OK, let's just fortify the documentation ever so slightly, then, so that >> users are more likely to do the right thing. How's this sound: >> >> * Reclaim modifiers - __GFP_NORETRY and __GFP_NOFAIL are not supported. (Even >> * though the current implementation passes the flags on through to kmalloc and >> * vmalloc, that is done for efficiency and to avoid unnecessary code. The caller >> * should not pass in these flags.) >> * >> * __GFP_REPEAT is supported, but only for large (>64kB) allocations. >> >> >> ? Or is that documentation overkill? > > Dunno, it sounds like an overkill to me. It is telling more than > necessary. If we want to be so vocal about gfp flags then we would have > to say much more I suspect. E.g. what about __GFP_HIGHMEM? This flag is > supported for vmalloc while unsupported for kmalloc. I am pretty sure > there would be other gfp flags to consider and then this would grow > borringly large and uninteresting to the point when people simply stop > reading it. Let's just be as simple as possible. Agreed, on the simplicity point: simple and clear is ideal. But here, it's merely short, and not quite simple. :) People will look at that short bit of documentation, and then notice that the flags are, in fact, all passed right on through down to both kmalloc_node and __vmalloc_node_flags. If you don't want too much documentation, then I'd be inclined to say something higher-level, about the intent, rather than mentioning those two flags directly. Because as it stands, the documentation contradicts what the code does. Sorry to go on and on about such a minor point. I'll let it go after this last note. > -- > Michal Hocko > SUSE Labs >
[toc] | [prev] | [next] | [standalone]
| From | Michal Hocko <mhocko@kernel.org> |
|---|---|
| Date | 2017-01-17 09:00 +0100 |
| Message-ID | <t0wQq-4ey-7@gated-at.bofh.it> |
| In reply to | #1560123 |
On Mon 16-01-17 13:57:43, John Hubbard wrote: > > > On 01/16/2017 01:48 PM, Michal Hocko wrote: > > On Mon 16-01-17 13:15:08, John Hubbard wrote: > > > > > > > > > On 01/16/2017 11:40 AM, Michal Hocko wrote: > > > > On Mon 16-01-17 11:09:37, John Hubbard wrote: > > > > > > > > > > > > > > > On 01/16/2017 12:47 AM, Michal Hocko wrote: > > > > > > On Sun 15-01-17 20:34:13, John Hubbard wrote: > > > > [...] > > > > > > > Is that "Reclaim modifiers" line still true, or is it a leftover from an > > > > > > > earlier approach? I am having trouble reconciling it with rest of the > > > > > > > patchset, because: > > > > > > > > > > > > > > a) the flags argument below is effectively passed on to either kmalloc_node > > > > > > > (possibly adding, but not removing flags), or to __vmalloc_node_flags. > > > > > > > > > > > > The above only says thos are _unsupported_ - in other words the behavior > > > > > > is not defined. Even if flags are passed down to kmalloc resp. vmalloc > > > > > > it doesn't mean they are used that way. Remember that vmalloc uses > > > > > > some hardcoded GFP_KERNEL allocations. So while I could be really > > > > > > strict about this and mask away these flags I doubt this is worth the > > > > > > additional code. > > > > > > > > > > I do wonder about passing those flags through to kmalloc. Maybe it is worth > > > > > stripping out __GFP_NORETRY and __GFP_NOFAIL, after all. It provides some > > > > > insulation from any future changes to the implementation of kmalloc, and it > > > > > also makes the documentation more believable. > > > > > > > > I am not really convinced that we should take an extra steps for these > > > > flags. There are no existing users for those flags and new users should > > > > follow the documentation. > > > > > > OK, let's just fortify the documentation ever so slightly, then, so that > > > users are more likely to do the right thing. How's this sound: > > > > > > * Reclaim modifiers - __GFP_NORETRY and __GFP_NOFAIL are not supported. (Even > > > * though the current implementation passes the flags on through to kmalloc and > > > * vmalloc, that is done for efficiency and to avoid unnecessary code. The caller > > > * should not pass in these flags.) > > > * > > > * __GFP_REPEAT is supported, but only for large (>64kB) allocations. > > > > > > > > > ? Or is that documentation overkill? > > > > Dunno, it sounds like an overkill to me. It is telling more than > > necessary. If we want to be so vocal about gfp flags then we would have > > to say much more I suspect. E.g. what about __GFP_HIGHMEM? This flag is > > supported for vmalloc while unsupported for kmalloc. I am pretty sure > > there would be other gfp flags to consider and then this would grow > > borringly large and uninteresting to the point when people simply stop > > reading it. Let's just be as simple as possible. > > Agreed, on the simplicity point: simple and clear is ideal. But here, it's > merely short, and not quite simple. :) People will look at that short bit > of documentation, and then notice that the flags are, in fact, all passed > right on through down to both kmalloc_node and __vmalloc_node_flags. > > If you don't want too much documentation, then I'd be inclined to say > something higher-level, about the intent, rather than mentioning those two > flags directly. Because as it stands, the documentation contradicts what the > code does. Feel free to suggest a better wording. I am, of course, open to any changes. -- Michal Hocko SUSE Labs
[toc] | [prev] | [next] | [standalone]
| From | John Hubbard <jhubbard@nvidia.com> |
|---|---|
| Date | 2017-01-18 07:10 +0100 |
| Message-ID | <t0RBv-oA-15@gated-at.bofh.it> |
| In reply to | #1560314 |
On 01/16/2017 11:51 PM, Michal Hocko wrote: > On Mon 16-01-17 13:57:43, John Hubbard wrote: >> >> >> On 01/16/2017 01:48 PM, Michal Hocko wrote: >>> On Mon 16-01-17 13:15:08, John Hubbard wrote: >>>> >>>> >>>> On 01/16/2017 11:40 AM, Michal Hocko wrote: >>>>> On Mon 16-01-17 11:09:37, John Hubbard wrote: >>>>>> >>>>>> >>>>>> On 01/16/2017 12:47 AM, Michal Hocko wrote: >>>>>>> On Sun 15-01-17 20:34:13, John Hubbard wrote: >>>>> [...] >>>>>>>> Is that "Reclaim modifiers" line still true, or is it a leftover from an >>>>>>>> earlier approach? I am having trouble reconciling it with rest of the >>>>>>>> patchset, because: >>>>>>>> >>>>>>>> a) the flags argument below is effectively passed on to either kmalloc_node >>>>>>>> (possibly adding, but not removing flags), or to __vmalloc_node_flags. >>>>>>> >>>>>>> The above only says thos are _unsupported_ - in other words the behavior >>>>>>> is not defined. Even if flags are passed down to kmalloc resp. vmalloc >>>>>>> it doesn't mean they are used that way. Remember that vmalloc uses >>>>>>> some hardcoded GFP_KERNEL allocations. So while I could be really >>>>>>> strict about this and mask away these flags I doubt this is worth the >>>>>>> additional code. >>>>>> >>>>>> I do wonder about passing those flags through to kmalloc. Maybe it is worth >>>>>> stripping out __GFP_NORETRY and __GFP_NOFAIL, after all. It provides some >>>>>> insulation from any future changes to the implementation of kmalloc, and it >>>>>> also makes the documentation more believable. >>>>> >>>>> I am not really convinced that we should take an extra steps for these >>>>> flags. There are no existing users for those flags and new users should >>>>> follow the documentation. >>>> >>>> OK, let's just fortify the documentation ever so slightly, then, so that >>>> users are more likely to do the right thing. How's this sound: >>>> >>>> * Reclaim modifiers - __GFP_NORETRY and __GFP_NOFAIL are not supported. (Even >>>> * though the current implementation passes the flags on through to kmalloc and >>>> * vmalloc, that is done for efficiency and to avoid unnecessary code. The caller >>>> * should not pass in these flags.) >>>> * >>>> * __GFP_REPEAT is supported, but only for large (>64kB) allocations. >>>> >>>> >>>> ? Or is that documentation overkill? >>> >>> Dunno, it sounds like an overkill to me. It is telling more than >>> necessary. If we want to be so vocal about gfp flags then we would have >>> to say much more I suspect. E.g. what about __GFP_HIGHMEM? This flag is >>> supported for vmalloc while unsupported for kmalloc. I am pretty sure >>> there would be other gfp flags to consider and then this would grow >>> borringly large and uninteresting to the point when people simply stop >>> reading it. Let's just be as simple as possible. >> >> Agreed, on the simplicity point: simple and clear is ideal. But here, it's >> merely short, and not quite simple. :) People will look at that short bit >> of documentation, and then notice that the flags are, in fact, all passed >> right on through down to both kmalloc_node and __vmalloc_node_flags. >> >> If you don't want too much documentation, then I'd be inclined to say >> something higher-level, about the intent, rather than mentioning those two >> flags directly. Because as it stands, the documentation contradicts what the >> code does. > > Feel free to suggest a better wording. I am, of course, open to any > changes. OK, here's the best I've got, I tried to keep it concise, but (as you suspected) I'm not sure it's actually any better than the original: * Reclaim modifiers - __GFP_NORETRY and __GFP_NOFAIL should not be passed in. * Passing in __GFP_REPEAT is supported, but note that it is ignored for small * (<=64KB) allocations, during the kmalloc attempt. __GFP_REPEAT is fully * honored for all allocation sizes during the second part: the vmalloc attempt. > > -- > Michal Hocko > SUSE Labs >
[toc] | [prev] | [next] | [standalone]
| From | Michal Hocko <mhocko@kernel.org> |
|---|---|
| Date | 2017-01-18 09:30 +0100 |
| Message-ID | <t0TN0-1Eh-17@gated-at.bofh.it> |
| In reply to | #1561302 |
On Tue 17-01-17 21:59:13, John Hubbard wrote: > > On 01/16/2017 11:51 PM, Michal Hocko wrote: > > On Mon 16-01-17 13:57:43, John Hubbard wrote: > > > > > > > > > On 01/16/2017 01:48 PM, Michal Hocko wrote: > > > > On Mon 16-01-17 13:15:08, John Hubbard wrote: > > > > > > > > > > > > > > > On 01/16/2017 11:40 AM, Michal Hocko wrote: > > > > > > On Mon 16-01-17 11:09:37, John Hubbard wrote: > > > > > > > > > > > > > > > > > > > > > On 01/16/2017 12:47 AM, Michal Hocko wrote: > > > > > > > > On Sun 15-01-17 20:34:13, John Hubbard wrote: > > > > > > [...] > > > > > > > > > Is that "Reclaim modifiers" line still true, or is it a leftover from an > > > > > > > > > earlier approach? I am having trouble reconciling it with rest of the > > > > > > > > > patchset, because: > > > > > > > > > > > > > > > > > > a) the flags argument below is effectively passed on to either kmalloc_node > > > > > > > > > (possibly adding, but not removing flags), or to __vmalloc_node_flags. > > > > > > > > > > > > > > > > The above only says thos are _unsupported_ - in other words the behavior > > > > > > > > is not defined. Even if flags are passed down to kmalloc resp. vmalloc > > > > > > > > it doesn't mean they are used that way. Remember that vmalloc uses > > > > > > > > some hardcoded GFP_KERNEL allocations. So while I could be really > > > > > > > > strict about this and mask away these flags I doubt this is worth the > > > > > > > > additional code. > > > > > > > > > > > > > > I do wonder about passing those flags through to kmalloc. Maybe it is worth > > > > > > > stripping out __GFP_NORETRY and __GFP_NOFAIL, after all. It provides some > > > > > > > insulation from any future changes to the implementation of kmalloc, and it > > > > > > > also makes the documentation more believable. > > > > > > > > > > > > I am not really convinced that we should take an extra steps for these > > > > > > flags. There are no existing users for those flags and new users should > > > > > > follow the documentation. > > > > > > > > > > OK, let's just fortify the documentation ever so slightly, then, so that > > > > > users are more likely to do the right thing. How's this sound: > > > > > > > > > > * Reclaim modifiers - __GFP_NORETRY and __GFP_NOFAIL are not supported. (Even > > > > > * though the current implementation passes the flags on through to kmalloc and > > > > > * vmalloc, that is done for efficiency and to avoid unnecessary code. The caller > > > > > * should not pass in these flags.) > > > > > * > > > > > * __GFP_REPEAT is supported, but only for large (>64kB) allocations. > > > > > > > > > > > > > > > ? Or is that documentation overkill? > > > > > > > > Dunno, it sounds like an overkill to me. It is telling more than > > > > necessary. If we want to be so vocal about gfp flags then we would have > > > > to say much more I suspect. E.g. what about __GFP_HIGHMEM? This flag is > > > > supported for vmalloc while unsupported for kmalloc. I am pretty sure > > > > there would be other gfp flags to consider and then this would grow > > > > borringly large and uninteresting to the point when people simply stop > > > > reading it. Let's just be as simple as possible. > > > > > > Agreed, on the simplicity point: simple and clear is ideal. But here, it's > > > merely short, and not quite simple. :) People will look at that short bit > > > of documentation, and then notice that the flags are, in fact, all passed > > > right on through down to both kmalloc_node and __vmalloc_node_flags. > > > > > > If you don't want too much documentation, then I'd be inclined to say > > > something higher-level, about the intent, rather than mentioning those two > > > flags directly. Because as it stands, the documentation contradicts what the > > > code does. > > > > Feel free to suggest a better wording. I am, of course, open to any > > changes. > > OK, here's the best I've got, I tried to keep it concise, but (as you > suspected) I'm not sure it's actually any better than the original: > > * Reclaim modifiers - __GFP_NORETRY and __GFP_NOFAIL should not be passed in. > * Passing in __GFP_REPEAT is supported, but note that it is ignored for small > * (<=64KB) allocations, during the kmalloc attempt. > __GFP_REPEAT is fully > * honored for all allocation sizes during the second part: the vmalloc attempt. this is not true to be really precise because vmalloc doesn't respect the given gfp mask all the way down (look at the pte initialization). -- Michal Hocko SUSE Labs
[toc] | [prev] | [next] | [standalone]
| From | John Hubbard <jhubbard@nvidia.com> |
|---|---|
| Date | 2017-01-19 09:40 +0100 |
| Message-ID | <t1gqe-7Ax-25@gated-at.bofh.it> |
| In reply to | #1561353 |
On 01/18/2017 12:21 AM, Michal Hocko wrote:
> On Tue 17-01-17 21:59:13, John Hubbard wrote:
>>
>> On 01/16/2017 11:51 PM, Michal Hocko wrote:
>>> On Mon 16-01-17 13:57:43, John Hubbard wrote:
>>>>
>>>>
>>>> On 01/16/2017 01:48 PM, Michal Hocko wrote:
>>>>> On Mon 16-01-17 13:15:08, John Hubbard wrote:
>>>>>>
>>>>>>
>>>>>> On 01/16/2017 11:40 AM, Michal Hocko wrote:
>>>>>>> On Mon 16-01-17 11:09:37, John Hubbard wrote:
>>>>>>>>
>>>>>>>>
>>>>>>>> On 01/16/2017 12:47 AM, Michal Hocko wrote:
>>>>>>>>> On Sun 15-01-17 20:34:13, John Hubbard wrote:
>>>>>>> [...]
>>>>>>>>>> Is that "Reclaim modifiers" line still true, or is it a leftover from an
>>>>>>>>>> earlier approach? I am having trouble reconciling it with rest of the
>>>>>>>>>> patchset, because:
>>>>>>>>>>
>>>>>>>>>> a) the flags argument below is effectively passed on to either kmalloc_node
>>>>>>>>>> (possibly adding, but not removing flags), or to __vmalloc_node_flags.
>>>>>>>>>
>>>>>>>>> The above only says thos are _unsupported_ - in other words the behavior
>>>>>>>>> is not defined. Even if flags are passed down to kmalloc resp. vmalloc
>>>>>>>>> it doesn't mean they are used that way. Remember that vmalloc uses
>>>>>>>>> some hardcoded GFP_KERNEL allocations. So while I could be really
>>>>>>>>> strict about this and mask away these flags I doubt this is worth the
>>>>>>>>> additional code.
>>>>>>>>
>>>>>>>> I do wonder about passing those flags through to kmalloc. Maybe it is worth
>>>>>>>> stripping out __GFP_NORETRY and __GFP_NOFAIL, after all. It provides some
>>>>>>>> insulation from any future changes to the implementation of kmalloc, and it
>>>>>>>> also makes the documentation more believable.
>>>>>>>
>>>>>>> I am not really convinced that we should take an extra steps for these
>>>>>>> flags. There are no existing users for those flags and new users should
>>>>>>> follow the documentation.
>>>>>>
>>>>>> OK, let's just fortify the documentation ever so slightly, then, so that
>>>>>> users are more likely to do the right thing. How's this sound:
>>>>>>
>>>>>> * Reclaim modifiers - __GFP_NORETRY and __GFP_NOFAIL are not supported. (Even
>>>>>> * though the current implementation passes the flags on through to kmalloc and
>>>>>> * vmalloc, that is done for efficiency and to avoid unnecessary code. The caller
>>>>>> * should not pass in these flags.)
>>>>>> *
>>>>>> * __GFP_REPEAT is supported, but only for large (>64kB) allocations.
>>>>>>
>>>>>>
>>>>>> ? Or is that documentation overkill?
>>>>>
>>>>> Dunno, it sounds like an overkill to me. It is telling more than
>>>>> necessary. If we want to be so vocal about gfp flags then we would have
>>>>> to say much more I suspect. E.g. what about __GFP_HIGHMEM? This flag is
>>>>> supported for vmalloc while unsupported for kmalloc. I am pretty sure
>>>>> there would be other gfp flags to consider and then this would grow
>>>>> borringly large and uninteresting to the point when people simply stop
>>>>> reading it. Let's just be as simple as possible.
>>>>
>>>> Agreed, on the simplicity point: simple and clear is ideal. But here, it's
>>>> merely short, and not quite simple. :) People will look at that short bit
>>>> of documentation, and then notice that the flags are, in fact, all passed
>>>> right on through down to both kmalloc_node and __vmalloc_node_flags.
>>>>
>>>> If you don't want too much documentation, then I'd be inclined to say
>>>> something higher-level, about the intent, rather than mentioning those two
>>>> flags directly. Because as it stands, the documentation contradicts what the
>>>> code does.
>>>
>>> Feel free to suggest a better wording. I am, of course, open to any
>>> changes.
>>
>> OK, here's the best I've got, I tried to keep it concise, but (as you
>> suspected) I'm not sure it's actually any better than the original:
>>
>> * Reclaim modifiers - __GFP_NORETRY and __GFP_NOFAIL should not be passed in.
>> * Passing in __GFP_REPEAT is supported, but note that it is ignored for small
>> * (<=64KB) allocations, during the kmalloc attempt.
>
>> __GFP_REPEAT is fully
>> * honored for all allocation sizes during the second part: the vmalloc attempt.
>
> this is not true to be really precise because vmalloc doesn't respect
> the given gfp mask all the way down (look at the pte initialization).
>
I'm having some difficulty in locating that pte initialization part, am I on the
wrong code path? Here's what I checked, before making the claim about __GFP_REPEAT
being honored:
kvmalloc_node
__vmalloc_node_flags
__vmalloc_node
__vmalloc_node_range
__vmalloc_area_node
alloc_pages_node
__alloc_pages_node
__alloc_pages
__alloc_pages_nodemask
__alloc_pages_slowpath
...and __alloc_pages_slowpath does the __GFP_REPEAT handling:
/*
* Do not retry costly high order allocations unless they are
* __GFP_REPEAT
*/
if (order > PAGE_ALLOC_COSTLY_ORDER && !(gfp_mask & __GFP_REPEAT))
goto nopage;
thanks,
john h
[toc] | [prev] | [next] | [standalone]
| From | Michal Hocko <mhocko@kernel.org> |
|---|---|
| Date | 2017-01-19 10:10 +0100 |
| Message-ID | <t1gTg-805-17@gated-at.bofh.it> |
| In reply to | #1562471 |
On Thu 19-01-17 00:37:08, John Hubbard wrote: > > > On 01/18/2017 12:21 AM, Michal Hocko wrote: > > On Tue 17-01-17 21:59:13, John Hubbard wrote: [...] > > > * Reclaim modifiers - __GFP_NORETRY and __GFP_NOFAIL should not be passed in. > > > * Passing in __GFP_REPEAT is supported, but note that it is ignored for small > > > * (<=64KB) allocations, during the kmalloc attempt. > > > > > __GFP_REPEAT is fully > > > * honored for all allocation sizes during the second part: the vmalloc attempt. > > > > this is not true to be really precise because vmalloc doesn't respect > > the given gfp mask all the way down (look at the pte initialization). > > > > I'm having some difficulty in locating that pte initialization part, am I on > the wrong code path? Here's what I checked, before making the claim about > __GFP_REPEAT being honored: > > kvmalloc_node > __vmalloc_node_flags > __vmalloc_node > __vmalloc_node_range > __vmalloc_area_node map_vm_area vmap_page_range vmap_page_range_noflush vmap_pud_range pud_alloc __pud_alloc pud_alloc_one pud will be allocated but the same pattern repeats on the pmd and pte levels. This is btw. one of the reasons why vmalloc with gfp flags is tricky! moreover > alloc_pages_node this is order-0 request so... > __alloc_pages_node > __alloc_pages > __alloc_pages_nodemask > __alloc_pages_slowpath > > > ...and __alloc_pages_slowpath does the __GFP_REPEAT handling: > > /* > * Do not retry costly high order allocations unless they are > * __GFP_REPEAT > */ > if (order > PAGE_ALLOC_COSTLY_ORDER && !(gfp_mask & __GFP_REPEAT)) > goto nopage; ... this doesn't apply -- Michal Hocko SUSE Labs
[toc] | [prev] | [next] | [standalone]
| From | John Hubbard <jhubbard@nvidia.com> |
|---|---|
| Date | 2017-01-19 10:20 +0100 |
| Message-ID | <t1h2V-83w-1@gated-at.bofh.it> |
| In reply to | #1562489 |
On 01/19/2017 12:45 AM, Michal Hocko wrote: > On Thu 19-01-17 00:37:08, John Hubbard wrote: >> >> >> On 01/18/2017 12:21 AM, Michal Hocko wrote: >>> On Tue 17-01-17 21:59:13, John Hubbard wrote: > [...] >>>> * Reclaim modifiers - __GFP_NORETRY and __GFP_NOFAIL should not be passed in. >>>> * Passing in __GFP_REPEAT is supported, but note that it is ignored for small >>>> * (<=64KB) allocations, during the kmalloc attempt. >>> >>>> __GFP_REPEAT is fully >>>> * honored for all allocation sizes during the second part: the vmalloc attempt. >>> >>> this is not true to be really precise because vmalloc doesn't respect >>> the given gfp mask all the way down (look at the pte initialization). >>> >> >> I'm having some difficulty in locating that pte initialization part, am I on >> the wrong code path? Here's what I checked, before making the claim about >> __GFP_REPEAT being honored: >> >> kvmalloc_node >> __vmalloc_node_flags >> __vmalloc_node >> __vmalloc_node_range >> __vmalloc_area_node > map_vm_area > vmap_page_range > vmap_page_range_noflush > vmap_pud_range > pud_alloc > __pud_alloc > pud_alloc_one > > pud will be allocated but the same pattern repeats on the pmd and pte > levels. This is btw. one of the reasons why vmalloc with gfp flags is > tricky! Yes, I see that now, thank you for explaining, much appreciated. The flags are left way behind in the code path. So that leaves us with maybe this for documentation? * Reclaim modifiers - __GFP_NORETRY and __GFP_NOFAIL should not be passed in. * Passing in __GFP_REPEAT is supported, and will cause the following behavior: * for larger (>64KB) allocations, the first part (kmalloc) will do some * retrying, before falling back to vmalloc. > > moreover >> alloc_pages_node > > this is order-0 request so... > >> __alloc_pages_node >> __alloc_pages >> __alloc_pages_nodemask >> __alloc_pages_slowpath >> >> >> ...and __alloc_pages_slowpath does the __GFP_REPEAT handling: >> >> /* >> * Do not retry costly high order allocations unless they are >> * __GFP_REPEAT >> */ >> if (order > PAGE_ALLOC_COSTLY_ORDER && !(gfp_mask & __GFP_REPEAT)) >> goto nopage; > > ... this doesn't apply > yes, true. thanks john h >
[toc] | [prev] | [next] | [standalone]
| From | Michal Hocko <mhocko@kernel.org> |
|---|---|
| Date | 2017-01-19 11:00 +0100 |
| Message-ID | <t1hFE-8hK-17@gated-at.bofh.it> |
| In reply to | #1562490 |
On Thu 19-01-17 01:09:35, John Hubbard wrote: [...] > So that leaves us with maybe this for documentation? > > * Reclaim modifiers - __GFP_NORETRY and __GFP_NOFAIL should not be passed in. > * Passing in __GFP_REPEAT is supported, and will cause the following behavior: > * for larger (>64KB) allocations, the first part (kmalloc) will do some > * retrying, before falling back to vmalloc. I am worried this is just too vague. It doesn't really help user to decide whether "do some retrying" is what he really want's or needs. So I would rather see the following. " * Reclaim modifiers - __GFP_NORETRY and __GFP_NOFAIL are not supported. __GFP_REPEAT * is supported only for large (>32kB) allocations and it should be used when using * kmalloc is preferable because vmalloc fallback has visible performance drawbacks. " I would also add " Any use of gfp flags outside of GFP_KERNEL should be consulted with mm people. " Does it sound any better? -- Michal Hocko SUSE Labs
[toc] | [prev] | [next] | [standalone]
| From | John Hubbard <jhubbard@nvidia.com> |
|---|---|
| Date | 2017-01-19 22:30 +0100 |
| Message-ID | <t1sro-6L9-11@gated-at.bofh.it> |
| In reply to | #1562540 |
On 01/19/2017 01:56 AM, Michal Hocko wrote: > On Thu 19-01-17 01:09:35, John Hubbard wrote: > [...] >> So that leaves us with maybe this for documentation? >> >> * Reclaim modifiers - __GFP_NORETRY and __GFP_NOFAIL should not be passed in. >> * Passing in __GFP_REPEAT is supported, and will cause the following behavior: >> * for larger (>64KB) allocations, the first part (kmalloc) will do some >> * retrying, before falling back to vmalloc. > > I am worried this is just too vague. It doesn't really help user to > decide whether "do some retrying" is what he really want's or needs. > > So I would rather see the following. > " > * Reclaim modifiers - __GFP_NORETRY and __GFP_NOFAIL are not supported. __GFP_REPEAT > * is supported only for large (>32kB) allocations and it should be used when using > * kmalloc is preferable because vmalloc fallback has visible performance drawbacks. > " > > I would also add > " > Any use of gfp flags outside of GFP_KERNEL should be consulted with mm people. > " > > Does it sound any better? Yes, that is good. I like that it helps guide the user. Here's some proposed optional grammar tweaks, but even without these, the above is understandable, so either way, I'm happy now: * Reclaim modifiers - __GFP_NORETRY and __GFP_NOFAIL are not supported. __GFP_REPEAT * is supported only for large (>32kB) allocations, and it should be used only if * kmalloc is preferable to the vmalloc fallback, due to visible performance drawbacks. * * Please consult with mm people before using any gfp flags other than GFP_KERNEL. thanks john h > -- > Michal Hocko > SUSE Labs > > -- > To unsubscribe, send a message with 'unsubscribe linux-mm' in > the body to majordomo@kvack.org. For more info on Linux MM, > see: http://www.linux-mm.org/ . > Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a> >
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web