Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1687372
| From | Mel Gorman <mgorman@suse.de> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | Re: [PATCH 1/9] mm, page_alloc: rip out ZONELIST_ORDER_ZONE |
| Date | 2017-07-14 15:00 +0200 |
| Message-ID | <u38mm-3Ag-17@gated-at.bofh.it> (permalink) |
| References | (1 earlier) <u33PH-El-1@gated-at.bofh.it> <u35eN-1tG-17@gated-at.bofh.it> <u36ky-2cw-17@gated-at.bofh.it> <u36NA-2CT-11@gated-at.bofh.it> <u376V-2Kc-13@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
On Fri, Jul 14, 2017 at 01:38:40PM +0200, Michal Hocko wrote:
> On Fri 14-07-17 12:16:33, Mel Gorman wrote:
> > On Fri, Jul 14, 2017 at 12:47:57PM +0200, Michal Hocko wrote:
> > > > That should to be "default" because the original code would have the proc
> > > > entry display "default" unless it was set at runtime. Pretty weird I
> > > > know but it's always possible someone is parsing the original default
> > > > and not handling it properly.
> > >
> > > Ohh, right! That is indeed strange. Then I guess it would be probably
> > > better to simply return Node to make it clear what the default is. What
> > > do you think?
> > >
> >
> > That would work too. The casing still matches.
>
> This folded in?
> ---
> From c7c36f011590680b254813be00ed791ddbc1bf1c Mon Sep 17 00:00:00 2001
> From: Michal Hocko <mhocko@suse.com>
> Date: Fri, 14 Jul 2017 13:36:05 +0200
> Subject: [PATCH] fold me "mm, page_alloc: rip out ZONELIST_ORDER_ZONE"
>
> - do not print Default in sysctl handler because our behavior was rather
> inconsistent in the past numa_zonelist_order was lowecase while
> zonelist_order_name was uppercase so boot time unchanged value woul
> print lowercase while updated value could be uppercase. Print "Node"
> which is the default instead - Mel
>
> Signed-off-by: Michal Hocko <mhocko@suse.com>
> ---
> mm/page_alloc.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/mm/page_alloc.c b/mm/page_alloc.c
> index dd4c96edcec3..49bade7ff049 100644
> --- a/mm/page_alloc.c
> +++ b/mm/page_alloc.c
> @@ -4828,8 +4828,8 @@ int numa_zonelist_order_handler(struct ctl_table *table, int write,
> int ret;
>
> if (!write) {
> - int len = sizeof("Default");
> - if (copy_to_user(buffer, "Default", len))
> + int len = sizeof("Node");
> + if (copy_to_user(buffer, "Node", len))
> return -EFAULT;
Ok for the name. But what's with using sizeof? The type is char * so it
just happens to work for Default, but not for Node. Also strongly suggest
you continue using proc_dostring because it catches all the corner-cases
that can occur.
--
Mel Gorman
SUSE Labs
Back to linux.kernel | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
[PATCH 1/9] mm, page_alloc: rip out ZONELIST_ORDER_ZONE Michal Hocko <mhocko@kernel.org> - 2017-07-14 10:10 +0200
Re: [PATCH 1/9] mm, page_alloc: rip out ZONELIST_ORDER_ZONE Mel Gorman <mgorman@suse.de> - 2017-07-14 11:40 +0200
Re: [PATCH 1/9] mm, page_alloc: rip out ZONELIST_ORDER_ZONE Michal Hocko <mhocko@kernel.org> - 2017-07-14 12:50 +0200
Re: [PATCH 1/9] mm, page_alloc: rip out ZONELIST_ORDER_ZONE Mel Gorman <mgorman@suse.de> - 2017-07-14 13:20 +0200
Re: [PATCH 1/9] mm, page_alloc: rip out ZONELIST_ORDER_ZONE Michal Hocko <mhocko@kernel.org> - 2017-07-14 13:40 +0200
Re: [PATCH 1/9] mm, page_alloc: rip out ZONELIST_ORDER_ZONE Mel Gorman <mgorman@suse.de> - 2017-07-14 15:00 +0200
Re: [PATCH 1/9] mm, page_alloc: rip out ZONELIST_ORDER_ZONE Mel Gorman <mgorman@suse.de> - 2017-07-14 15:10 +0200
Re: [PATCH 1/9] mm, page_alloc: rip out ZONELIST_ORDER_ZONE Michal Hocko <mhocko@kernel.org> - 2017-07-14 15:10 +0200
csiph-web