All of lore.kernel.org
 help / color / mirror / Atom feed
From: kbuild test robot <lkp@intel.com>
To: kbuild-all@lists.01.org
Subject: Re: [PATCH 1/2] mm: cma: NUMA node interface
Date: Fri, 27 Mar 2020 10:50:23 +0800	[thread overview]
Message-ID: <202003271025.Db7RuNj4%lkp@intel.com> (raw)
In-Reply-To: <20200326212718.3798742-1-aslan@fb.com>

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

Hi Aslan,

Thank you for the patch! Yet something to improve:

[auto build test ERROR on next-20200326]
[also build test ERROR on v5.6-rc7]
[cannot apply to mmotm/master linus/master linux/master v5.6-rc7 v5.6-rc6 v5.6-rc5]
[if your patch is applied to the wrong git tree, please drop us a note to help
improve the system. BTW, we also suggest to use '--base' option to specify the
base tree in git format-patch, please see https://stackoverflow.com/a/37406982]

url:    https://github.com/0day-ci/linux/commits/Aslan-Bakirov/mm-cma-NUMA-node-interface/20200327-082701
base:    89295c59c1f063b533d071ca49d0fa0c0783ca6f
config: i386-allyesconfig (attached as .config)
compiler: gcc-7 (Debian 7.5.0-5) 7.5.0
reproduce:
        # save the attached .config to linux build tree
        make ARCH=i386 

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 drivers/dma-buf/heaps/cma_heap.c:9:0:
   include/linux/cma.h: In function 'cma_declare_contiguous':
>> include/linux/cma.h:39:29: error: 'NUMA_NO_NODE' undeclared (first use in this function)
          fixed, name, res_cma, NUMA_NO_NODE);
                                ^~~~~~~~~~~~
   include/linux/cma.h:39:29: note: each undeclared identifier is reported only once for each function it appears in

vim +/NUMA_NO_NODE +39 include/linux/cma.h

    26	
    27	extern int __init cma_declare_contiguous_nid(phys_addr_t base,
    28				phys_addr_t size, phys_addr_t limit,
    29				phys_addr_t alignment, unsigned int order_per_bit,
    30				bool fixed, const char *name, struct cma **res_cma,
    31				int nid);
    32	static inline int __init cma_declare_contiguous(phys_addr_t base,
    33				phys_addr_t size, phys_addr_t limit,
    34				phys_addr_t alignment, unsigned int order_per_bit,
    35				bool fixed, const char *name, struct cma **res_cma)
    36				{
    37					return cma_declare_contiguous_nid(base, size,
    38							limit, alignment, order_per_bit,
  > 39							fixed, name, res_cma, NUMA_NO_NODE);
    40				}
    41	extern int cma_init_reserved_mem(phys_addr_t base, phys_addr_t size,
    42						unsigned int order_per_bit,
    43						const char *name,
    44						struct cma **res_cma);
    45	extern struct page *cma_alloc(struct cma *cma, size_t count, unsigned int align,
    46				      bool no_warn);
    47	extern bool cma_release(struct cma *cma, const struct page *pages, unsigned int count);
    48	

---
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: 72212 bytes --]

  parent reply	other threads:[~2020-03-27  2:50 UTC|newest]

Thread overview: 14+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-03-26 21:27 [PATCH 1/2] mm: cma: NUMA node interface Aslan Bakirov
2020-03-26 21:27 ` [PATCH 2/2] mm: hugetlb: Use node interface of cma Aslan Bakirov
2020-03-27  8:06   ` Michal Hocko
2020-03-27 14:41     ` Roman Gushchin
2020-03-27 15:13       ` Michal Hocko
2020-04-02 15:20         ` Vlastimil Babka
2020-04-02 17:24           ` Michal Hocko
2020-03-27  2:50 ` kbuild test robot [this message]
2020-03-27  8:02 ` [PATCH 1/2] mm: cma: NUMA node interface Michal Hocko
2020-04-02 15:48 ` Vlastimil Babka
2020-04-02 22:03   ` Aslan Bakirov
2020-04-03 15:09   ` Roman Gushchin
2020-04-03 10:18 Aslan Bakirov
2020-04-03 11:18 Aslan Bakirov

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=202003271025.Db7RuNj4%lkp@intel.com \
    --to=lkp@intel.com \
    --cc=kbuild-all@lists.01.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.