lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Date:   Mon, 26 Aug 2019 12:08:07 +0800
From:   kbuild test robot <lkp@...el.com>
To:     Waiman Long <longman@...hat.com>
Cc:     kbuild-all@...org, Alexey Dobriyan <adobriyan@...il.com>,
        Andrew Morton <akpm@...ux-foundation.org>,
        linux-kernel@...r.kernel.org, linux-fsdevel@...r.kernel.org,
        linux-mm@...ck.org, Stephen Rothwell <sfr@...b.auug.org.au>,
        "Michael S. Tsirkin" <mst@...hat.com>,
        Waiman Long <longman@...hat.com>
Subject: Re: [PATCH] fs/proc/page: Skip uninitialized page when iterating
 page structures

Hi Waiman,

Thank you for the patch! Yet something to improve:

[auto build test ERROR on linus/master]
[cannot apply to v5.3-rc6 next-20190823]
[if your patch is applied to the wrong git tree, please drop us a note to help improve the system]

url:    https://github.com/0day-ci/linux/commits/Waiman-Long/fs-proc-page-Skip-uninitialized-page-when-iterating-page-structures/20190826-105836
config: x86_64-lkp (attached as .config)
compiler: gcc-7 (Debian 7.4.0-10) 7.4.0
reproduce:
        # save the attached .config to linux build tree
        make ARCH=x86_64 

If you fix the issue, kindly add following tag
Reported-by: kbuild test robot <lkp@...el.com>

All errors (new ones prefixed by >>):

   fs/proc/page.c: In function 'find_next_zone_range':
>> fs/proc/page.c:58:2: error: expected ';' before 'for'
     for (pgdat = first_online_pgdat(); pgdat;
     ^~~
   fs/proc/page.c:52:6: warning: unused variable 'i' [-Wunused-variable]
     int i;
         ^
   fs/proc/page.c:51:15: warning: unused variable 'zone' [-Wunused-variable]
     struct zone *zone;
                  ^~~~
   fs/proc/page.c:50:13: warning: unused variable 'pgdat' [-Wunused-variable]
     pg_data_t *pgdat;
                ^~~~~
   fs/proc/page.c: In function 'pfn_in_zone':
>> fs/proc/page.c:79:23: error: 'struct zone_range' has no member named 'start'; did you mean 'pfn_start'?
     return pfn >= range->start && pfn < range->end;
                          ^~~~~
                          pfn_start
>> fs/proc/page.c:79:43: error: 'struct zone_range' has no member named 'end'
     return pfn >= range->start && pfn < range->end;
                                              ^~
   fs/proc/page.c:80:1: warning: control reaches end of non-void function [-Wreturn-type]
    }
    ^

vim +58 fs/proc/page.c

    46	
    47	static void find_next_zone_range(struct zone_range *range)
    48	{
    49		unsigned long start, end;
  > 50		pg_data_t *pgdat;
  > 51		struct zone *zone;
    52		int i;
    53	
    54		/*
    55		 * Scan all the zone structures to find the next closest one.
    56		 */
    57		start = end = -1UL
  > 58		for (pgdat = first_online_pgdat(); pgdat;
    59		     pgdat = next_online_pgdat(pgdat)) {
    60			for (zone = pgdat->node_zones, i = 0; i < MAX_NR_ZONES;
    61			     zone++, i++) {
    62				if (!zone->spanned_pages)
    63					continue;
    64				if ((zone->zone_start_pfn >= range->pfn_end) &&
    65				    (zone->zone_start_pfn < start)) {
    66					start = zone->zone_start_pfn;
    67					end   = start + zone->spanned_pages;
    68				}
    69			}
    70		}
    71		range->pfn_start = start;
    72		range->pfn_end   = end;
    73	}
    74	
    75	static inline bool pfn_in_zone(unsigned long pfn, struct zone_range *range)
    76	{
    77		if (pfn >= range->pfn_end)
    78			find_next_zone_range(range);
  > 79		return pfn >= range->start && pfn < range->end;
    80	}
    81	

---
0-DAY kernel test infrastructure                Open Source Technology Center
https://lists.01.org/pipermail/kbuild-all                   Intel Corporation

Download attachment ".config.gz" of type "application/gzip" (27705 bytes)

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ