Mathieu Malaterre 603b892200 powerpc: Avoid comparison of unsigned long >= 0 in pfn_valid()
Rewrite comparison since all values compared are of type `unsigned long`.

Instead of using unsigned properties and rewriting the original code as:
(originally suggested by Segher Boessenkool <segher@kernel.crashing.org>)

  #define pfn_valid(pfn) \
               (((pfn) - ARCH_PFN_OFFSET) < (max_mapnr - ARCH_PFN_OFFSET))

Prefer a static inline function to make code as readable as possible.

Fix a warning (treated as error in W=1):
  arch/powerpc/include/asm/page.h:129:32: error: comparison of unsigned expression >= 0 is always true [-Werror=type-limits]
  #define pfn_valid(pfn)  ((pfn) >= ARCH_PFN_OFFSET && (pfn) < max_mapnr)
                                  ^

Suggested-by: Christophe Leroy <christophe.leroy@c-s.fr>
Signed-off-by: Mathieu Malaterre <malat@debian.org>
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
2018-03-13 15:50:41 +11:00
..
2018-01-21 01:06:10 +11:00
2015-05-28 15:31:53 +02:00
2017-08-15 22:55:58 +10:00
2015-01-12 05:04:13 -08:00
2015-02-03 18:47:18 +01:00
2016-03-04 23:50:27 -06:00
2016-03-01 19:27:20 +11:00
2017-04-21 21:08:47 +10:00
2017-06-28 06:54:33 -07:00
2016-08-05 09:00:54 -04:00
2018-02-10 13:16:35 -08:00
2018-01-21 23:21:14 +11:00
2018-02-02 10:01:04 -08:00
2017-11-16 12:47:46 -08:00
2017-11-16 12:47:46 -08:00
2018-01-21 01:06:10 +11:00
2016-06-14 13:58:26 +10:00
2018-01-24 11:42:58 +11:00
2018-02-10 13:16:35 -08:00
2016-06-14 13:58:26 +10:00
2018-01-21 22:43:43 +11:00
2017-08-31 14:26:56 +10:00
2017-11-16 12:47:46 -08:00
2018-01-15 09:35:26 +01:00
2017-11-16 12:47:46 -08:00
2016-06-14 13:58:26 +10:00
2017-11-16 12:47:46 -08:00
2017-11-12 09:03:10 +11:00
2015-05-05 13:35:39 -06:00
2018-02-10 13:16:35 -08:00