public inbox for llvm@lists.linux.dev
 help / color / mirror / Atom feed
From: kernel test robot <lkp@intel.com>
To: "Kirill A. Shutemov" <kirill.shutemov@linux.intel.com>
Cc: llvm@lists.linux.dev, kbuild-all@lists.01.org,
	linux-kernel@vger.kernel.org
Subject: [intel-tdx:guest-unaccepted-memory 6/17] mm/page_alloc.c:1015:40: error: use of undeclared identifier 'NR_UNACCEPTED'
Date: Tue, 14 Jun 2022 12:24:55 +0800	[thread overview]
Message-ID: <202206141219.Jr2jdIB3-lkp@intel.com> (raw)

tree:   https://github.com/intel/tdx.git guest-unaccepted-memory
head:   7a902d05477ac272558ba731d903c6b0c9d72903
commit: e4fbeb9c5cb4aa02fcd17388eef920f389fc83ea [6/17] mm: Report unaccepted memory in meminfo
config: hexagon-randconfig-r041-20220613 (https://download.01.org/0day-ci/archive/20220614/202206141219.Jr2jdIB3-lkp@intel.com/config)
compiler: clang version 15.0.0 (https://github.com/llvm/llvm-project c97436f8b6e2718286e8496faf53a2c800e281cf)
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://github.com/intel/tdx/commit/e4fbeb9c5cb4aa02fcd17388eef920f389fc83ea
        git remote add intel-tdx https://github.com/intel/tdx.git
        git fetch --no-tags intel-tdx guest-unaccepted-memory
        git checkout e4fbeb9c5cb4aa02fcd17388eef920f389fc83ea
        # save the config file
        mkdir build_dir && cp config build_dir/.config
        COMPILER_INSTALL_PATH=$HOME/0day COMPILER=clang make.cross W=1 O=build_dir ARCH=hexagon SHELL=/bin/bash

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

All errors (new ones prefixed by >>):

>> mm/page_alloc.c:1015:40: error: use of undeclared identifier 'NR_UNACCEPTED'
           mod_node_page_state(page_pgdat(page), NR_UNACCEPTED, -(1 << order));
                                                 ^
   mm/page_alloc.c:1152:43: error: use of undeclared identifier 'NR_UNACCEPTED'
                   __mod_node_page_state(page_pgdat(page), NR_UNACCEPTED,
                                                           ^
   2 errors generated.


vim +/NR_UNACCEPTED +1015 mm/page_alloc.c

  1001	
  1002	/*
  1003	 * Page acceptance can be very slow. Do not call under critical locks.
  1004	 */
  1005	static void accept_page(struct page *page, unsigned int order)
  1006	{
  1007		phys_addr_t start = page_to_phys(page);
  1008		int i;
  1009	
  1010		if (!PageUnaccepted(page))
  1011			return;
  1012	
  1013		accept_memory(start, start + (PAGE_SIZE << order));
  1014		__ClearPageUnaccepted(page);
> 1015		mod_node_page_state(page_pgdat(page), NR_UNACCEPTED, -(1 << order));
  1016	
  1017		/* Assert that there is no PageUnaccepted() on tail pages */
  1018		if (IS_ENABLED(CONFIG_DEBUG_VM)) {
  1019			for (i = 1; i < (1 << order); i++)
  1020				VM_BUG_ON_PAGE(PageUnaccepted(page + i), page + i);
  1021		}
  1022	}
  1023	

-- 
0-DAY CI Kernel Test Service
https://01.org/lkp

                 reply	other threads:[~2022-06-14  4:25 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

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=202206141219.Jr2jdIB3-lkp@intel.com \
    --to=lkp@intel.com \
    --cc=kbuild-all@lists.01.org \
    --cc=kirill.shutemov@linux.intel.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=llvm@lists.linux.dev \
    /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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox