* [alibaba-cloud:ck-4.19.91 10413/10873] arch/m68k/include/asm/motorola_pgtable.h:199:11: error: dereferencing pointer to incomplete type 'const struct mm_struct'
@ 2020-02-11 11:38 kbuild test robot
0 siblings, 0 replies; 6+ messages in thread
From: kbuild test robot @ 2020-02-11 11:38 UTC (permalink / raw)
To: kbuild-all
[-- Attachment #1: Type: text/plain, Size: 2589 bytes --]
tree: https://github.com/alibaba/cloud-kernel.git ck-4.19.91
head: 536f70b41d6fc5fc46f50c4caa012c4439160180
commit: 7a6bd9433d146a30036717ae982b9ee85d05ec56 [10413/10873] device-dax: Move resource pinning+mapping into the common driver
config: m68k-allmodconfig (attached as .config)
compiler: m68k-linux-gcc (GCC) 7.5.0
reproduce:
wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
chmod +x ~/bin/make.cross
git checkout 7a6bd9433d146a30036717ae982b9ee85d05ec56
# save the attached .config to linux build tree
GCC_VERSION=7.5.0 make.cross ARCH=m68k
If you fix the issue, kindly add following tag
Reported-by: kbuild test robot <lkp@intel.com>
All errors (new ones prefixed by >>):
In file included from arch/m68k/include/asm/pgtable_mm.h:148:0,
from arch/m68k/include/asm/pgtable.h:5,
from include/linux/memremap.h:7,
from drivers//dax/bus.c:3:
arch/m68k/include/asm/motorola_pgtable.h: In function 'pgd_offset':
>> arch/m68k/include/asm/motorola_pgtable.h:199:11: error: dereferencing pointer to incomplete type 'const struct mm_struct'
return mm->pgd + pgd_index(address);
^~
vim +199 arch/m68k/include/asm/motorola_pgtable.h
^1da177e4c3f415 include/asm-m68k/motorola_pgtable.h Linus Torvalds 2005-04-16 194
^1da177e4c3f415 include/asm-m68k/motorola_pgtable.h Linus Torvalds 2005-04-16 195 /* to find an entry in a page-table-directory */
5b808a593588b2e include/asm-m68k/motorola_pgtable.h Geert Uytterhoeven 2008-02-07 196 static inline pgd_t *pgd_offset(const struct mm_struct *mm,
5b808a593588b2e include/asm-m68k/motorola_pgtable.h Geert Uytterhoeven 2008-02-07 197 unsigned long address)
^1da177e4c3f415 include/asm-m68k/motorola_pgtable.h Linus Torvalds 2005-04-16 198 {
^1da177e4c3f415 include/asm-m68k/motorola_pgtable.h Linus Torvalds 2005-04-16 @199 return mm->pgd + pgd_index(address);
^1da177e4c3f415 include/asm-m68k/motorola_pgtable.h Linus Torvalds 2005-04-16 200 }
^1da177e4c3f415 include/asm-m68k/motorola_pgtable.h Linus Torvalds 2005-04-16 201
:::::: The code at line 199 was first introduced by commit
:::::: 1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 Linux-2.6.12-rc2
:::::: TO: Linus Torvalds <torvalds@ppc970.osdl.org>
:::::: CC: Linus Torvalds <torvalds@ppc970.osdl.org>
---
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: 46534 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* [alibaba-cloud:ck-4.19.91 10413/10873] arch/m68k/include/asm/motorola_pgtable.h:199:11: error: dereferencing pointer to incomplete type 'const struct mm_struct'
@ 2020-02-11 20:08 kbuild test robot
2020-02-11 23:01 ` Dan Williams
0 siblings, 1 reply; 6+ messages in thread
From: kbuild test robot @ 2020-02-11 20:08 UTC (permalink / raw)
To: kbuild-all
[-- Attachment #1: Type: text/plain, Size: 2633 bytes --]
Hi Dan,
FYI, the error/warning still remains.
tree: https://github.com/alibaba/cloud-kernel.git ck-4.19.91
head: 536f70b41d6fc5fc46f50c4caa012c4439160180
commit: 7a6bd9433d146a30036717ae982b9ee85d05ec56 [10413/10873] device-dax: Move resource pinning+mapping into the common driver
config: m68k-allmodconfig (attached as .config)
compiler: m68k-linux-gcc (GCC) 7.5.0
reproduce:
wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
chmod +x ~/bin/make.cross
git checkout 7a6bd9433d146a30036717ae982b9ee85d05ec56
# save the attached .config to linux build tree
GCC_VERSION=7.5.0 make.cross ARCH=m68k
If you fix the issue, kindly add following tag
Reported-by: kbuild test robot <lkp@intel.com>
All errors (new ones prefixed by >>):
In file included from arch/m68k/include/asm/pgtable_mm.h:148:0,
from arch/m68k/include/asm/pgtable.h:5,
from include/linux/memremap.h:7,
from drivers//dax/bus.c:3:
arch/m68k/include/asm/motorola_pgtable.h: In function 'pgd_offset':
>> arch/m68k/include/asm/motorola_pgtable.h:199:11: error: dereferencing pointer to incomplete type 'const struct mm_struct'
return mm->pgd + pgd_index(address);
^~
vim +199 arch/m68k/include/asm/motorola_pgtable.h
^1da177e4c3f41 include/asm-m68k/motorola_pgtable.h Linus Torvalds 2005-04-16 194
^1da177e4c3f41 include/asm-m68k/motorola_pgtable.h Linus Torvalds 2005-04-16 195 /* to find an entry in a page-table-directory */
5b808a593588b2 include/asm-m68k/motorola_pgtable.h Geert Uytterhoeven 2008-02-07 196 static inline pgd_t *pgd_offset(const struct mm_struct *mm,
5b808a593588b2 include/asm-m68k/motorola_pgtable.h Geert Uytterhoeven 2008-02-07 197 unsigned long address)
^1da177e4c3f41 include/asm-m68k/motorola_pgtable.h Linus Torvalds 2005-04-16 198 {
^1da177e4c3f41 include/asm-m68k/motorola_pgtable.h Linus Torvalds 2005-04-16 @199 return mm->pgd + pgd_index(address);
^1da177e4c3f41 include/asm-m68k/motorola_pgtable.h Linus Torvalds 2005-04-16 200 }
^1da177e4c3f41 include/asm-m68k/motorola_pgtable.h Linus Torvalds 2005-04-16 201
:::::: The code at line 199 was first introduced by commit
:::::: 1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 Linux-2.6.12-rc2
:::::: TO: Linus Torvalds <torvalds@ppc970.osdl.org>
:::::: CC: Linus Torvalds <torvalds@ppc970.osdl.org>
---
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: 46534 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [alibaba-cloud:ck-4.19.91 10413/10873] arch/m68k/include/asm/motorola_pgtable.h:199:11: error: dereferencing pointer to incomplete type 'const struct mm_struct'
2020-02-11 20:08 [alibaba-cloud:ck-4.19.91 10413/10873] arch/m68k/include/asm/motorola_pgtable.h:199:11: error: dereferencing pointer to incomplete type 'const struct mm_struct' kbuild test robot
@ 2020-02-11 23:01 ` Dan Williams
2020-02-12 1:21 ` Li, Philip
0 siblings, 1 reply; 6+ messages in thread
From: Dan Williams @ 2020-02-11 23:01 UTC (permalink / raw)
To: kbuild-all
[-- Attachment #1: Type: text/plain, Size: 1195 bytes --]
On Tue, Feb 11, 2020 at 12:08 PM kbuild test robot <lkp@intel.com> wrote:
>
> Hi Dan,
>
> FYI, the error/warning still remains.
>
> tree: https://github.com/alibaba/cloud-kernel.git ck-4.19.91
> head: 536f70b41d6fc5fc46f50c4caa012c4439160180
> commit: 7a6bd9433d146a30036717ae982b9ee85d05ec56 [10413/10873] device-dax: Move resource pinning+mapping into the common driver
> config: m68k-allmodconfig (attached as .config)
> compiler: m68k-linux-gcc (GCC) 7.5.0
> reproduce:
> wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
> chmod +x ~/bin/make.cross
> git checkout 7a6bd9433d146a30036717ae982b9ee85d05ec56
> # save the attached .config to linux build tree
> GCC_VERSION=7.5.0 make.cross ARCH=m68k
>
> If you fix the issue, kindly add following tag
> Reported-by: kbuild test robot <lkp@intel.com>
Why am I receiving this message? I don't care about ck-4.19.91. The
commit in question is:
89ec9f2cfa36 device-dax: Move resource pinning+mapping into the
common driver
...from the v5.1 kernel. If it was backported to a v4.19 baseline
that's the backporter's problem.
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [alibaba-cloud:ck-4.19.91 10413/10873] arch/m68k/include/asm/motorola_pgtable.h:199:11: error: dereferencing pointer to incomplete type 'const struct mm_struct'
2020-02-11 23:01 ` Dan Williams
@ 2020-02-12 1:21 ` Li, Philip
0 siblings, 0 replies; 6+ messages in thread
From: Li, Philip @ 2020-02-12 1:21 UTC (permalink / raw)
To: kbuild-all
[-- Attachment #1: Type: text/plain, Size: 1706 bytes --]
> Subject: [kbuild-all] Re: [alibaba-cloud:ck-4.19.91 10413/10873]
> arch/m68k/include/asm/motorola_pgtable.h:199:11: error: dereferencing pointer to
> incomplete type 'const struct mm_struct'
>
> On Tue, Feb 11, 2020 at 12:08 PM kbuild test robot <lkp@intel.com> wrote:
> >
> > Hi Dan,
> >
> > FYI, the error/warning still remains.
> >
> > tree: https://github.com/alibaba/cloud-kernel.git ck-4.19.91
> > head: 536f70b41d6fc5fc46f50c4caa012c4439160180
> > commit: 7a6bd9433d146a30036717ae982b9ee85d05ec56 [10413/10873] device-
> dax: Move resource pinning+mapping into the common driver
> > config: m68k-allmodconfig (attached as .config)
> > compiler: m68k-linux-gcc (GCC) 7.5.0
> > reproduce:
> > wget https://raw.githubusercontent.com/intel/lkp-
> tests/master/sbin/make.cross -O ~/bin/make.cross
> > chmod +x ~/bin/make.cross
> > git checkout 7a6bd9433d146a30036717ae982b9ee85d05ec56
> > # save the attached .config to linux build tree
> > GCC_VERSION=7.5.0 make.cross ARCH=m68k
> >
> > If you fix the issue, kindly add following tag
> > Reported-by: kbuild test robot <lkp@intel.com>
>
> Why am I receiving this message? I don't care about ck-4.19.91. The
> commit in question is:
Sorry Dan, we will resolve this to avoid sending this kind of mail.
>
> 89ec9f2cfa36 device-dax: Move resource pinning+mapping into the
> common driver
>
> ...from the v5.1 kernel. If it was backported to a v4.19 baseline
> that's the backporter's problem.
> _______________________________________________
> kbuild-all mailing list -- kbuild-all(a)lists.01.org
> To unsubscribe send an email to kbuild-all-leave(a)lists.01.org
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [alibaba-cloud:ck-4.19.91 10413/10873] arch/m68k/include/asm/motorola_pgtable.h:199:11: error: dereferencing pointer to incomplete type 'const struct mm_struct'
[not found] <92e50950-49c8-0f62-5e8b-5636c706f5e1@linux.alibaba.com>
@ 2020-02-12 1:22 ` Li, Philip
2020-02-12 4:36 ` Li, Philip
0 siblings, 1 reply; 6+ messages in thread
From: Li, Philip @ 2020-02-12 1:22 UTC (permalink / raw)
To: kbuild-all
[-- Attachment #1: Type: text/plain, Size: 1732 bytes --]
> Subject: Re: [alibaba-cloud:ck-4.19.91 10413/10873]
> arch/m68k/include/asm/motorola_pgtable.h:199:11: error: dereferencing pointer to
> incomplete type 'const struct mm_struct'
>
> Hi,
> Can we only send to alikernel-developer(a)linux.alibaba.com?
> We don't want to bother the author.
Sure, no problem, we will update the configuration soon.
>
> Thanks,
> Joseph
>
> On 20/2/12 07:01, Dan Williams wrote:
> > On Tue, Feb 11, 2020 at 12:08 PM kbuild test robot <lkp@intel.com> wrote:
> >>
> >> Hi Dan,
> >>
> >> FYI, the error/warning still remains.
> >>
> >> tree: https://github.com/alibaba/cloud-kernel.git ck-4.19.91
> >> head: 536f70b41d6fc5fc46f50c4caa012c4439160180
> >> commit: 7a6bd9433d146a30036717ae982b9ee85d05ec56 [10413/10873]
> device-dax: Move resource pinning+mapping into the common driver
> >> config: m68k-allmodconfig (attached as .config)
> >> compiler: m68k-linux-gcc (GCC) 7.5.0
> >> reproduce:
> >> wget https://raw.githubusercontent.com/intel/lkp-
> tests/master/sbin/make.cross -O ~/bin/make.cross
> >> chmod +x ~/bin/make.cross
> >> git checkout 7a6bd9433d146a30036717ae982b9ee85d05ec56
> >> # save the attached .config to linux build tree
> >> GCC_VERSION=7.5.0 make.cross ARCH=m68k
> >>
> >> If you fix the issue, kindly add following tag
> >> Reported-by: kbuild test robot <lkp@intel.com>
> >
> > Why am I receiving this message? I don't care about ck-4.19.91. The
> > commit in question is:
> >
> > 89ec9f2cfa36 device-dax: Move resource pinning+mapping into the
> > common driver
> >
> > ...from the v5.1 kernel. If it was backported to a v4.19 baseline
> > that's the backporter's problem.
> >
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [alibaba-cloud:ck-4.19.91 10413/10873] arch/m68k/include/asm/motorola_pgtable.h:199:11: error: dereferencing pointer to incomplete type 'const struct mm_struct'
2020-02-12 1:22 ` Li, Philip
@ 2020-02-12 4:36 ` Li, Philip
0 siblings, 0 replies; 6+ messages in thread
From: Li, Philip @ 2020-02-12 4:36 UTC (permalink / raw)
To: kbuild-all
[-- Attachment #1: Type: text/plain, Size: 2122 bytes --]
> Subject: RE: [alibaba-cloud:ck-4.19.91 10413/10873]
> arch/m68k/include/asm/motorola_pgtable.h:199:11: error: dereferencing pointer to
> incomplete type 'const struct mm_struct'
>
> > Subject: Re: [alibaba-cloud:ck-4.19.91 10413/10873]
> > arch/m68k/include/asm/motorola_pgtable.h:199:11: error: dereferencing pointer
> to
> > incomplete type 'const struct mm_struct'
> >
> > Hi,
> > Can we only send to alikernel-developer(a)linux.alibaba.com?
> > We don't want to bother the author.
> Sure, no problem, we will update the configuration soon.
forget to mention, the deployment of new logic need some time to occur, it
should be ready this afternoon.
>
> >
> > Thanks,
> > Joseph
> >
> > On 20/2/12 07:01, Dan Williams wrote:
> > > On Tue, Feb 11, 2020 at 12:08 PM kbuild test robot <lkp@intel.com> wrote:
> > >>
> > >> Hi Dan,
> > >>
> > >> FYI, the error/warning still remains.
> > >>
> > >> tree: https://github.com/alibaba/cloud-kernel.git ck-4.19.91
> > >> head: 536f70b41d6fc5fc46f50c4caa012c4439160180
> > >> commit: 7a6bd9433d146a30036717ae982b9ee85d05ec56 [10413/10873]
> > device-dax: Move resource pinning+mapping into the common driver
> > >> config: m68k-allmodconfig (attached as .config)
> > >> compiler: m68k-linux-gcc (GCC) 7.5.0
> > >> reproduce:
> > >> wget https://raw.githubusercontent.com/intel/lkp-
> > tests/master/sbin/make.cross -O ~/bin/make.cross
> > >> chmod +x ~/bin/make.cross
> > >> git checkout 7a6bd9433d146a30036717ae982b9ee85d05ec56
> > >> # save the attached .config to linux build tree
> > >> GCC_VERSION=7.5.0 make.cross ARCH=m68k
> > >>
> > >> If you fix the issue, kindly add following tag
> > >> Reported-by: kbuild test robot <lkp@intel.com>
> > >
> > > Why am I receiving this message? I don't care about ck-4.19.91. The
> > > commit in question is:
> > >
> > > 89ec9f2cfa36 device-dax: Move resource pinning+mapping into the
> > > common driver
> > >
> > > ...from the v5.1 kernel. If it was backported to a v4.19 baseline
> > > that's the backporter's problem.
> > >
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2020-02-12 4:36 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-02-11 20:08 [alibaba-cloud:ck-4.19.91 10413/10873] arch/m68k/include/asm/motorola_pgtable.h:199:11: error: dereferencing pointer to incomplete type 'const struct mm_struct' kbuild test robot
2020-02-11 23:01 ` Dan Williams
2020-02-12 1:21 ` Li, Philip
[not found] <92e50950-49c8-0f62-5e8b-5636c706f5e1@linux.alibaba.com>
2020-02-12 1:22 ` Li, Philip
2020-02-12 4:36 ` Li, Philip
-- strict thread matches above, loose matches on Subject: below --
2020-02-11 11:38 kbuild 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.