Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1682096
| From | Michal Hocko <mhocko@kernel.org> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | Re: [PATCH] mm: disallow early_pfn_to_nid on configurations which do not implement it |
| Date | 2017-07-06 09:00 +0200 |
| Message-ID | <u08VB-Sf-33@gated-at.bofh.it> (permalink) |
| References | <tZqUy-5oE-5@gated-at.bofh.it> <u01AJ-4qG-1@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
On Wed 05-07-17 16:00:55, Andrew Morton wrote:
> On Tue, 4 Jul 2017 09:58:03 +0200 Michal Hocko <mhocko@kernel.org> wrote:
>
> > From: Michal Hocko <mhocko@suse.com>
> >
> > early_pfn_to_nid will return node 0 if both HAVE_ARCH_EARLY_PFN_TO_NID
> > and HAVE_MEMBLOCK_NODE_MAP are disabled. It seems we are safe now
> > because all architectures which support NUMA define one of them (with an
> > exception of alpha which however has CONFIG_NUMA marked as broken) so
> > this works as expected. It can get silently and subtly broken too
> > easily, though. Make sure we fail the compilation if NUMA is enabled and
> > there is no proper implementation for this function. If that ever
> > happens we know that either the specific configuration is invalid
> > and the fix should either disable NUMA or enable one of the above
> > configs.
> >
> > ...
> >
> > --- a/include/linux/mmzone.h
> > +++ b/include/linux/mmzone.h
> > @@ -1055,6 +1055,7 @@ static inline struct zoneref *first_zones_zonelist(struct zonelist *zonelist,
> > !defined(CONFIG_HAVE_MEMBLOCK_NODE_MAP)
> > static inline unsigned long early_pfn_to_nid(unsigned long pfn)
> > {
> > + BUILD_BUG_ON(IS_ENABLED(CONFIG_NUMA));
> > return 0;
> > }
> > #endif
>
> Wouldn't this be more conventional?
Well, both would lead to a compilation errors which is what I want to
achieve. The above is easier to parse IMHO. If you believe a longer
ifdef chain is better I won't object.
> --- a/include/linux/mmzone.h~a
> +++ a/include/linux/mmzone.h
> @@ -1052,7 +1052,8 @@ static inline struct zoneref *first_zone
> #endif
>
> #if !defined(CONFIG_HAVE_ARCH_EARLY_PFN_TO_NID) && \
> - !defined(CONFIG_HAVE_MEMBLOCK_NODE_MAP)
> + !defined(CONFIG_HAVE_MEMBLOCK_NODE_MAP) && \
> + !defined(CONFIG_NUMA)
> static inline unsigned long early_pfn_to_nid(unsigned long pfn)
> {
> return 0;
> _
>
--
Michal Hocko
SUSE Labs
Back to linux.kernel | Previous | Next — Previous in thread | Find similar | Unroll thread
[PATCH] mm: disallow early_pfn_to_nid on configurations which do not implement it Michal Hocko <mhocko@kernel.org> - 2017-07-04 10:00 +0200
Re: [PATCH] mm: disallow early_pfn_to_nid on configurations which do not implement it Vlastimil Babka <vbabka@suse.cz> - 2017-07-04 11:30 +0200
Re: [PATCH] mm: disallow early_pfn_to_nid on configurations which do not implement it Andrew Morton <akpm@linux-foundation.org> - 2017-07-06 01:10 +0200
Re: [PATCH] mm: disallow early_pfn_to_nid on configurations which do not implement it Michal Hocko <mhocko@kernel.org> - 2017-07-06 09:00 +0200
csiph-web