All of lore.kernel.org
 help / color / mirror / Atom feed
* [peterz-queue:mm/tlb 4/10] arch/parisc/include/asm/pgalloc.h:69:6: error: implicit declaration of function '__pmd_free'; did you mean 'pmd_free'?
@ 2021-04-15  5:22 kernel test robot
  0 siblings, 0 replies; 8+ messages in thread
From: kernel test robot @ 2021-04-15  5:22 UTC (permalink / raw)
  To: kbuild-all

[-- Attachment #1: Type: text/plain, Size: 2791 bytes --]

tree:   https://git.kernel.org/pub/scm/linux/kernel/git/peterz/queue.git mm/tlb
head:   b82a5a0cacd676c4b8a41bb7fd30fa62b510e9f3
commit: f508b925b8a989de2393db2155ad9bf42c34f4ba [4/10] parisc/tlb: Fix __p*_free_tlb()
config: parisc-randconfig-r021-20210414 (attached as .config)
compiler: hppa64-linux-gcc (GCC) 9.3.0
reproduce (this is a W=1 build):
        wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
        chmod +x ~/bin/make.cross
        # https://git.kernel.org/pub/scm/linux/kernel/git/peterz/queue.git/commit/?id=f508b925b8a989de2393db2155ad9bf42c34f4ba
        git remote add peterz-queue https://git.kernel.org/pub/scm/linux/kernel/git/peterz/queue.git
        git fetch --no-tags peterz-queue mm/tlb
        git checkout f508b925b8a989de2393db2155ad9bf42c34f4ba
        # save the attached .config to linux build tree
        COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-9.3.0 make.cross W=1 ARCH=parisc 

If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp@intel.com>

All errors (new ones prefixed by >>):

   In file included from include/linux/kernel.h:10,
                    from include/linux/list.h:9,
                    from include/linux/smp.h:12,
                    from include/linux/kernel_stat.h:5,
                    from mm/memory.c:42:
   mm/memory.c: In function 'free_pmd_range':
>> arch/parisc/include/asm/pgalloc.h:69:6: error: implicit declaration of function '__pmd_free'; did you mean 'pmd_free'? [-Werror=implicit-function-declaration]
      69 |  if (__pmd_free((tlb)->mm, (pmd))) \
         |      ^~~~~~~~~~
   include/linux/compiler.h:58:52: note: in definition of macro '__trace_if_var'
      58 | #define __trace_if_var(cond) (__builtin_constant_p(cond) ? (cond) : __trace_if_value(cond))
         |                                                    ^~~~
   arch/parisc/include/asm/pgalloc.h:69:2: note: in expansion of macro 'if'
      69 |  if (__pmd_free((tlb)->mm, (pmd))) \
         |  ^~
   include/asm-generic/tlb.h:638:3: note: in expansion of macro '__pmd_free_tlb'
     638 |   __pmd_free_tlb(tlb, pmdp, address);  \
         |   ^~~~~~~~~~~~~~
   mm/memory.c:266:2: note: in expansion of macro 'pmd_free_tlb'
     266 |  pmd_free_tlb(tlb, pmd, start);
         |  ^~~~~~~~~~~~
   cc1: some warnings being treated as errors


vim +69 arch/parisc/include/asm/pgalloc.h

    66	
    67	#define __pmd_free_tlb(tlb, pmd, addr)		\
    68	do {						\
  > 69		if (__pmd_free((tlb)->mm, (pmd)))	\
    70			tlb_remove_table((tlb), (pmd));	\
    71	} while (0)
    72	

---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all(a)lists.01.org

[-- Attachment #2: config.gz --]
[-- Type: application/gzip, Size: 28560 bytes --]

^ permalink raw reply	[flat|nested] 8+ messages in thread

* [peterz-queue:mm/tlb 4/10] arch/parisc/include/asm/pgalloc.h:69:6: error: implicit declaration of function '__pmd_free'; did you mean 'pmd_free'?
@ 2021-08-02 19:35 ` kernel test robot
  0 siblings, 0 replies; 8+ messages in thread
From: kernel test robot @ 2021-08-02 19:35 UTC (permalink / raw)
  To: Peter Zijlstra; +Cc: kbuild-all, linux-kernel

[-- Attachment #1: Type: text/plain, Size: 2144 bytes --]

tree:   https://git.kernel.org/pub/scm/linux/kernel/git/peterz/queue.git mm/tlb
head:   b4c400b6dff50e79f3406a5744086c60b7668a70
commit: 352d652ed3ea4d34578f69f1da523c55768178e6 [4/10] parisc/tlb: Fix __p*_free_tlb()
config: parisc-buildonly-randconfig-r003-20210728 (attached as .config)
compiler: hppa64-linux-gcc (GCC) 10.3.0
reproduce (this is a W=1 build):
        wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
        chmod +x ~/bin/make.cross
        # https://git.kernel.org/pub/scm/linux/kernel/git/peterz/queue.git/commit/?id=352d652ed3ea4d34578f69f1da523c55768178e6
        git remote add peterz-queue https://git.kernel.org/pub/scm/linux/kernel/git/peterz/queue.git
        git fetch --no-tags peterz-queue mm/tlb
        git checkout 352d652ed3ea4d34578f69f1da523c55768178e6
        # save the attached .config to linux build tree
        COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-10.3.0 make.cross ARCH=parisc 

If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp@intel.com>

All errors (new ones prefixed by >>):

   In file included from mm/memory.c:81:
   mm/memory.c: In function 'free_pmd_range':
>> arch/parisc/include/asm/pgalloc.h:69:6: error: implicit declaration of function '__pmd_free'; did you mean 'pmd_free'? [-Werror=implicit-function-declaration]
      69 |  if (__pmd_free((tlb)->mm, (pmd))) \
         |      ^~~~~~~~~~
   include/asm-generic/tlb.h:638:3: note: in expansion of macro '__pmd_free_tlb'
     638 |   __pmd_free_tlb(tlb, pmdp, address);  \
         |   ^~~~~~~~~~~~~~
   mm/memory.c:265:2: note: in expansion of macro 'pmd_free_tlb'
     265 |  pmd_free_tlb(tlb, pmd, start);
         |  ^~~~~~~~~~~~
   cc1: some warnings being treated as errors


vim +69 arch/parisc/include/asm/pgalloc.h

    66	
    67	#define __pmd_free_tlb(tlb, pmd, addr)		\
    68	do {						\
  > 69		if (__pmd_free((tlb)->mm, (pmd)))	\
    70			tlb_remove_table((tlb), (pmd));	\
    71	} while (0)
    72	

---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org

[-- Attachment #2: .config.gz --]
[-- Type: application/gzip, Size: 34117 bytes --]

^ permalink raw reply	[flat|nested] 8+ messages in thread

* [peterz-queue:mm/tlb 4/10] arch/parisc/include/asm/pgalloc.h:69:6: error: implicit declaration of function '__pmd_free'; did you mean 'pmd_free'?
@ 2021-08-02 19:35 ` kernel test robot
  0 siblings, 0 replies; 8+ messages in thread
From: kernel test robot @ 2021-08-02 19:35 UTC (permalink / raw)
  To: kbuild-all

[-- Attachment #1: Type: text/plain, Size: 2193 bytes --]

tree:   https://git.kernel.org/pub/scm/linux/kernel/git/peterz/queue.git mm/tlb
head:   b4c400b6dff50e79f3406a5744086c60b7668a70
commit: 352d652ed3ea4d34578f69f1da523c55768178e6 [4/10] parisc/tlb: Fix __p*_free_tlb()
config: parisc-buildonly-randconfig-r003-20210728 (attached as .config)
compiler: hppa64-linux-gcc (GCC) 10.3.0
reproduce (this is a W=1 build):
        wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
        chmod +x ~/bin/make.cross
        # https://git.kernel.org/pub/scm/linux/kernel/git/peterz/queue.git/commit/?id=352d652ed3ea4d34578f69f1da523c55768178e6
        git remote add peterz-queue https://git.kernel.org/pub/scm/linux/kernel/git/peterz/queue.git
        git fetch --no-tags peterz-queue mm/tlb
        git checkout 352d652ed3ea4d34578f69f1da523c55768178e6
        # save the attached .config to linux build tree
        COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-10.3.0 make.cross ARCH=parisc 

If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp@intel.com>

All errors (new ones prefixed by >>):

   In file included from mm/memory.c:81:
   mm/memory.c: In function 'free_pmd_range':
>> arch/parisc/include/asm/pgalloc.h:69:6: error: implicit declaration of function '__pmd_free'; did you mean 'pmd_free'? [-Werror=implicit-function-declaration]
      69 |  if (__pmd_free((tlb)->mm, (pmd))) \
         |      ^~~~~~~~~~
   include/asm-generic/tlb.h:638:3: note: in expansion of macro '__pmd_free_tlb'
     638 |   __pmd_free_tlb(tlb, pmdp, address);  \
         |   ^~~~~~~~~~~~~~
   mm/memory.c:265:2: note: in expansion of macro 'pmd_free_tlb'
     265 |  pmd_free_tlb(tlb, pmd, start);
         |  ^~~~~~~~~~~~
   cc1: some warnings being treated as errors


vim +69 arch/parisc/include/asm/pgalloc.h

    66	
    67	#define __pmd_free_tlb(tlb, pmd, addr)		\
    68	do {						\
  > 69		if (__pmd_free((tlb)->mm, (pmd)))	\
    70			tlb_remove_table((tlb), (pmd));	\
    71	} while (0)
    72	

---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all(a)lists.01.org

[-- Attachment #2: config.gz --]
[-- Type: application/gzip, Size: 34117 bytes --]

^ permalink raw reply	[flat|nested] 8+ messages in thread

* [peterz-queue:mm/tlb 4/10] arch/parisc/include/asm/pgalloc.h:69:6: error: implicit declaration of function '__pmd_free'; did you mean 'pmd_free'?
@ 2021-07-01 19:18 kernel test robot
  0 siblings, 0 replies; 8+ messages in thread
From: kernel test robot @ 2021-07-01 19:18 UTC (permalink / raw)
  To: kbuild-all

[-- Attachment #1: Type: text/plain, Size: 2181 bytes --]

tree:   https://git.kernel.org/pub/scm/linux/kernel/git/peterz/queue.git mm/tlb
head:   d3d76d703cdefa97e9f4b19f4bfe799015bcfe70
commit: 1ab0470e2103bb746284751cc10aca6d453b20da [4/10] parisc/tlb: Fix __p*_free_tlb()
config: parisc-randconfig-r011-20210630 (attached as .config)
compiler: hppa64-linux-gcc (GCC) 9.3.0
reproduce (this is a W=1 build):
        wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
        chmod +x ~/bin/make.cross
        # https://git.kernel.org/pub/scm/linux/kernel/git/peterz/queue.git/commit/?id=1ab0470e2103bb746284751cc10aca6d453b20da
        git remote add peterz-queue https://git.kernel.org/pub/scm/linux/kernel/git/peterz/queue.git
        git fetch --no-tags peterz-queue mm/tlb
        git checkout 1ab0470e2103bb746284751cc10aca6d453b20da
        # save the attached .config to linux build tree
        COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-9.3.0 make.cross ARCH=parisc 

If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp@intel.com>

All errors (new ones prefixed by >>):

   In file included from mm/memory.c:81:
   mm/memory.c: In function 'free_pmd_range':
>> arch/parisc/include/asm/pgalloc.h:69:6: error: implicit declaration of function '__pmd_free'; did you mean 'pmd_free'? [-Werror=implicit-function-declaration]
      69 |  if (__pmd_free((tlb)->mm, (pmd))) \
         |      ^~~~~~~~~~
   include/asm-generic/tlb.h:638:3: note: in expansion of macro '__pmd_free_tlb'
     638 |   __pmd_free_tlb(tlb, pmdp, address);  \
         |   ^~~~~~~~~~~~~~
   mm/memory.c:266:2: note: in expansion of macro 'pmd_free_tlb'
     266 |  pmd_free_tlb(tlb, pmd, start);
         |  ^~~~~~~~~~~~
   cc1: some warnings being treated as errors


vim +69 arch/parisc/include/asm/pgalloc.h

    66	
    67	#define __pmd_free_tlb(tlb, pmd, addr)		\
    68	do {						\
  > 69		if (__pmd_free((tlb)->mm, (pmd)))	\
    70			tlb_remove_table((tlb), (pmd));	\
    71	} while (0)
    72	

---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all(a)lists.01.org

[-- Attachment #2: config.gz --]
[-- Type: application/gzip, Size: 29244 bytes --]

^ permalink raw reply	[flat|nested] 8+ messages in thread

* [peterz-queue:mm/tlb 4/10] arch/parisc/include/asm/pgalloc.h:69:6: error: implicit declaration of function '__pmd_free'; did you mean 'pmd_free'?
@ 2021-06-15 14:46 kernel test robot
  0 siblings, 0 replies; 8+ messages in thread
From: kernel test robot @ 2021-06-15 14:46 UTC (permalink / raw)
  To: kbuild-all

[-- Attachment #1: Type: text/plain, Size: 2181 bytes --]

tree:   https://git.kernel.org/pub/scm/linux/kernel/git/peterz/queue.git mm/tlb
head:   32b651c868d125e442604bc845063f37eac3e32c
commit: 0ebda728f2d1e406e1c1561c9697ba5a1def950b [4/10] parisc/tlb: Fix __p*_free_tlb()
config: parisc-randconfig-r002-20210615 (attached as .config)
compiler: hppa64-linux-gcc (GCC) 9.3.0
reproduce (this is a W=1 build):
        wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
        chmod +x ~/bin/make.cross
        # https://git.kernel.org/pub/scm/linux/kernel/git/peterz/queue.git/commit/?id=0ebda728f2d1e406e1c1561c9697ba5a1def950b
        git remote add peterz-queue https://git.kernel.org/pub/scm/linux/kernel/git/peterz/queue.git
        git fetch --no-tags peterz-queue mm/tlb
        git checkout 0ebda728f2d1e406e1c1561c9697ba5a1def950b
        # save the attached .config to linux build tree
        COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-9.3.0 make.cross ARCH=parisc 

If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp@intel.com>

All errors (new ones prefixed by >>):

   In file included from mm/memory.c:81:
   mm/memory.c: In function 'free_pmd_range':
>> arch/parisc/include/asm/pgalloc.h:69:6: error: implicit declaration of function '__pmd_free'; did you mean 'pmd_free'? [-Werror=implicit-function-declaration]
      69 |  if (__pmd_free((tlb)->mm, (pmd))) \
         |      ^~~~~~~~~~
   include/asm-generic/tlb.h:638:3: note: in expansion of macro '__pmd_free_tlb'
     638 |   __pmd_free_tlb(tlb, pmdp, address);  \
         |   ^~~~~~~~~~~~~~
   mm/memory.c:266:2: note: in expansion of macro 'pmd_free_tlb'
     266 |  pmd_free_tlb(tlb, pmd, start);
         |  ^~~~~~~~~~~~
   cc1: some warnings being treated as errors


vim +69 arch/parisc/include/asm/pgalloc.h

    66	
    67	#define __pmd_free_tlb(tlb, pmd, addr)		\
    68	do {						\
  > 69		if (__pmd_free((tlb)->mm, (pmd)))	\
    70			tlb_remove_table((tlb), (pmd));	\
    71	} while (0)
    72	

---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all(a)lists.01.org

[-- Attachment #2: config.gz --]
[-- Type: application/gzip, Size: 35030 bytes --]

^ permalink raw reply	[flat|nested] 8+ messages in thread

* [peterz-queue:mm/tlb 4/10] arch/parisc/include/asm/pgalloc.h:69:6: error: implicit declaration of function '__pmd_free'; did you mean 'pmd_free'?
@ 2021-05-27 12:49 kernel test robot
  0 siblings, 0 replies; 8+ messages in thread
From: kernel test robot @ 2021-05-27 12:49 UTC (permalink / raw)
  To: kbuild-all

[-- Attachment #1: Type: text/plain, Size: 2181 bytes --]

tree:   https://git.kernel.org/pub/scm/linux/kernel/git/peterz/queue.git mm/tlb
head:   384d8cd296ea45f2e621afdfb884c7028fcf75da
commit: e653efc06e69c3fc3eef7829c249983cfaf5930c [4/10] parisc/tlb: Fix __p*_free_tlb()
config: parisc-randconfig-r033-20210527 (attached as .config)
compiler: hppa64-linux-gcc (GCC) 9.3.0
reproduce (this is a W=1 build):
        wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
        chmod +x ~/bin/make.cross
        # https://git.kernel.org/pub/scm/linux/kernel/git/peterz/queue.git/commit/?id=e653efc06e69c3fc3eef7829c249983cfaf5930c
        git remote add peterz-queue https://git.kernel.org/pub/scm/linux/kernel/git/peterz/queue.git
        git fetch --no-tags peterz-queue mm/tlb
        git checkout e653efc06e69c3fc3eef7829c249983cfaf5930c
        # save the attached .config to linux build tree
        COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-9.3.0 make.cross ARCH=parisc 

If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp@intel.com>

All errors (new ones prefixed by >>):

   In file included from mm/memory.c:81:
   mm/memory.c: In function 'free_pmd_range':
>> arch/parisc/include/asm/pgalloc.h:69:6: error: implicit declaration of function '__pmd_free'; did you mean 'pmd_free'? [-Werror=implicit-function-declaration]
      69 |  if (__pmd_free((tlb)->mm, (pmd))) \
         |      ^~~~~~~~~~
   include/asm-generic/tlb.h:638:3: note: in expansion of macro '__pmd_free_tlb'
     638 |   __pmd_free_tlb(tlb, pmdp, address);  \
         |   ^~~~~~~~~~~~~~
   mm/memory.c:266:2: note: in expansion of macro 'pmd_free_tlb'
     266 |  pmd_free_tlb(tlb, pmd, start);
         |  ^~~~~~~~~~~~
   cc1: some warnings being treated as errors


vim +69 arch/parisc/include/asm/pgalloc.h

    66	
    67	#define __pmd_free_tlb(tlb, pmd, addr)		\
    68	do {						\
  > 69		if (__pmd_free((tlb)->mm, (pmd)))	\
    70			tlb_remove_table((tlb), (pmd));	\
    71	} while (0)
    72	

---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all(a)lists.01.org

[-- Attachment #2: config.gz --]
[-- Type: application/gzip, Size: 21421 bytes --]

^ permalink raw reply	[flat|nested] 8+ messages in thread

* [peterz-queue:mm/tlb 4/10] arch/parisc/include/asm/pgalloc.h:69:6: error: implicit declaration of function '__pmd_free'; did you mean 'pmd_free'?
@ 2021-05-10 22:22 kernel test robot
  0 siblings, 0 replies; 8+ messages in thread
From: kernel test robot @ 2021-05-10 22:22 UTC (permalink / raw)
  To: kbuild-all

[-- Attachment #1: Type: text/plain, Size: 2185 bytes --]

tree:   https://git.kernel.org/pub/scm/linux/kernel/git/peterz/queue.git mm/tlb
head:   b713312c9af68e0fb51095e4d16e83621001ad0c
commit: 1f22f5979f06f2b7a0230be6ce0e393fabd42bcd [4/10] parisc/tlb: Fix __p*_free_tlb()
config: parisc-randconfig-r035-20210510 (attached as .config)
compiler: hppa64-linux-gcc (GCC) 9.3.0
reproduce (this is a W=1 build):
        wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
        chmod +x ~/bin/make.cross
        # https://git.kernel.org/pub/scm/linux/kernel/git/peterz/queue.git/commit/?id=1f22f5979f06f2b7a0230be6ce0e393fabd42bcd
        git remote add peterz-queue https://git.kernel.org/pub/scm/linux/kernel/git/peterz/queue.git
        git fetch --no-tags peterz-queue mm/tlb
        git checkout 1f22f5979f06f2b7a0230be6ce0e393fabd42bcd
        # save the attached .config to linux build tree
        COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-9.3.0 make.cross W=1 ARCH=parisc 

If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp@intel.com>

All errors (new ones prefixed by >>):

   In file included from mm/memory.c:81:
   mm/memory.c: In function 'free_pmd_range':
>> arch/parisc/include/asm/pgalloc.h:69:6: error: implicit declaration of function '__pmd_free'; did you mean 'pmd_free'? [-Werror=implicit-function-declaration]
      69 |  if (__pmd_free((tlb)->mm, (pmd))) \
         |      ^~~~~~~~~~
   include/asm-generic/tlb.h:638:3: note: in expansion of macro '__pmd_free_tlb'
     638 |   __pmd_free_tlb(tlb, pmdp, address);  \
         |   ^~~~~~~~~~~~~~
   mm/memory.c:266:2: note: in expansion of macro 'pmd_free_tlb'
     266 |  pmd_free_tlb(tlb, pmd, start);
         |  ^~~~~~~~~~~~
   cc1: some warnings being treated as errors


vim +69 arch/parisc/include/asm/pgalloc.h

    66	
    67	#define __pmd_free_tlb(tlb, pmd, addr)		\
    68	do {						\
  > 69		if (__pmd_free((tlb)->mm, (pmd)))	\
    70			tlb_remove_table((tlb), (pmd));	\
    71	} while (0)
    72	

---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all(a)lists.01.org

[-- Attachment #2: config.gz --]
[-- Type: application/gzip, Size: 28476 bytes --]

^ permalink raw reply	[flat|nested] 8+ messages in thread

* [peterz-queue:mm/tlb 4/10] arch/parisc/include/asm/pgalloc.h:69:6: error: implicit declaration of function '__pmd_free'; did you mean 'pmd_free'?
@ 2021-04-20  1:59 kernel test robot
  0 siblings, 0 replies; 8+ messages in thread
From: kernel test robot @ 2021-04-20  1:59 UTC (permalink / raw)
  To: kbuild-all

[-- Attachment #1: Type: text/plain, Size: 2185 bytes --]

tree:   https://git.kernel.org/pub/scm/linux/kernel/git/peterz/queue.git mm/tlb
head:   5acea829f3f73e6e20007e67bebe1e52a6906b15
commit: a03d39d572c69cfe65f48338a482b1bd6609cee8 [4/10] parisc/tlb: Fix __p*_free_tlb()
config: parisc-randconfig-r005-20210419 (attached as .config)
compiler: hppa64-linux-gcc (GCC) 9.3.0
reproduce (this is a W=1 build):
        wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
        chmod +x ~/bin/make.cross
        # https://git.kernel.org/pub/scm/linux/kernel/git/peterz/queue.git/commit/?id=a03d39d572c69cfe65f48338a482b1bd6609cee8
        git remote add peterz-queue https://git.kernel.org/pub/scm/linux/kernel/git/peterz/queue.git
        git fetch --no-tags peterz-queue mm/tlb
        git checkout a03d39d572c69cfe65f48338a482b1bd6609cee8
        # save the attached .config to linux build tree
        COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-9.3.0 make.cross W=1 ARCH=parisc 

If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp@intel.com>

All errors (new ones prefixed by >>):

   In file included from mm/memory.c:81:
   mm/memory.c: In function 'free_pmd_range':
>> arch/parisc/include/asm/pgalloc.h:69:6: error: implicit declaration of function '__pmd_free'; did you mean 'pmd_free'? [-Werror=implicit-function-declaration]
      69 |  if (__pmd_free((tlb)->mm, (pmd))) \
         |      ^~~~~~~~~~
   include/asm-generic/tlb.h:638:3: note: in expansion of macro '__pmd_free_tlb'
     638 |   __pmd_free_tlb(tlb, pmdp, address);  \
         |   ^~~~~~~~~~~~~~
   mm/memory.c:266:2: note: in expansion of macro 'pmd_free_tlb'
     266 |  pmd_free_tlb(tlb, pmd, start);
         |  ^~~~~~~~~~~~
   cc1: some warnings being treated as errors


vim +69 arch/parisc/include/asm/pgalloc.h

    66	
    67	#define __pmd_free_tlb(tlb, pmd, addr)		\
    68	do {						\
  > 69		if (__pmd_free((tlb)->mm, (pmd)))	\
    70			tlb_remove_table((tlb), (pmd));	\
    71	} while (0)
    72	

---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all(a)lists.01.org

[-- Attachment #2: config.gz --]
[-- Type: application/gzip, Size: 38621 bytes --]

^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2021-08-02 19:36 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-04-15  5:22 [peterz-queue:mm/tlb 4/10] arch/parisc/include/asm/pgalloc.h:69:6: error: implicit declaration of function '__pmd_free'; did you mean 'pmd_free'? kernel test robot
2021-04-20  1:59 kernel test robot
2021-05-10 22:22 kernel test robot
2021-05-27 12:49 kernel test robot
2021-06-15 14:46 kernel test robot
2021-07-01 19:18 kernel test robot
2021-08-02 19:35 kernel test robot
2021-08-02 19:35 ` kernel test robot

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.