Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1600919

Re: [PATCH v4 05/11] mm: thp: enable thp migration in generic path

From kbuild test robot <lkp@intel.com>
Newsgroups linux.kernel
Subject Re: [PATCH v4 05/11] mm: thp: enable thp migration in generic path
Date 2017-03-14 22:30 +0100
Message-ID <tl2b0-66f-21@gated-at.bofh.it> (permalink)
References <tkAoq-2CJ-19@gated-at.bofh.it>
Organization linux.* mail to news gateway

Show all headers | View raw


[Multipart message — attachments visible in raw view] - view raw

Hi Naoya,

[auto build test WARNING on mmotm/master]
[also build test WARNING on next-20170310]
[cannot apply to v4.11-rc2]
[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/Zi-Yan/mm-page-migration-enhancement-for-thp/20170315-042736
base:   git://git.cmpxchg.org/linux-mmotm.git master
config: m68k-sun3_defconfig (attached as .config)
compiler: m68k-linux-gcc (GCC) 4.9.0
reproduce:
        wget https://raw.githubusercontent.com/01org/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
        chmod +x ~/bin/make.cross
        # save the attached .config to linux build tree
        make.cross ARCH=m68k 

All warnings (new ones prefixed by >>):

   In file included from fs/proc/task_mmu.c:15:0:
   include/linux/swapops.h: In function 'remove_migration_pmd':
   include/linux/swapops.h:209:2: warning: 'return' with a value, in function returning void
     return 0;
     ^
   include/linux/swapops.h: In function 'swp_entry_to_pmd':
>> include/linux/swapops.h:223:2: warning: missing braces around initializer [-Wmissing-braces]
     return (pmd_t){ 0 };
     ^
   include/linux/swapops.h:223:2: warning: (near initialization for '(anonymous).pmd') [-Wmissing-braces]

vim +223 include/linux/swapops.h

   203	}
   204	
   205	static inline void remove_migration_pmd(struct page_vma_mapped_walk *pvmw,
   206			struct page *new)
   207	{
   208		BUILD_BUG();
 > 209		return 0;
   210	}
   211	
   212	static inline void pmd_migration_entry_wait(struct mm_struct *m, pmd_t *p) { }
   213	
   214	static inline swp_entry_t pmd_to_swp_entry(pmd_t pmd)
   215	{
   216		BUILD_BUG();
   217		return swp_entry(0, 0);
   218	}
   219	
   220	static inline pmd_t swp_entry_to_pmd(swp_entry_t entry)
   221	{
   222		BUILD_BUG();
 > 223		return (pmd_t){ 0 };
   224	}
   225	
   226	static inline int is_pmd_migration_entry(pmd_t pmd)

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

Back to linux.kernel | Previous | NextNext in thread | Find similar | Unroll thread


Thread

Re: [PATCH v4 05/11] mm: thp: enable thp migration in generic path kbuild test robot <lkp@intel.com> - 2017-03-14 22:30 +0100
  Re: [PATCH v4 05/11] mm: thp: enable thp migration in generic path Geert Uytterhoeven <geert@linux-m68k.org> - 2017-03-15 10:10 +0100

csiph-web