lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Date:   Mon, 12 Apr 2021 19:36:02 +0800
From:   kernel test robot <lkp@...el.com>
To:     ultrachin@....com, linux-kernel@...r.kernel.org
Cc:     kbuild-all@...ts.01.org, akpm@...ux-foundation.org,
        hannes@...xchg.org, mhocko@...nel.org, vdavydov.dev@...il.com,
        linux-mm@...ck.org, cgroups@...r.kernel.org,
        Chen Xiaoguang <xiaoggchen@...cent.com>,
        Chen He <heddchen@...cent.com>
Subject: Re: [PATCH] mm: optimize memory allocation

Hi,

Thank you for the patch! Yet something to improve:

[auto build test ERROR on linux/master]
[also build test ERROR on linus/master v5.12-rc7]
[cannot apply to hnaz-linux-mm/master next-20210409]
[If your patch is applied to the wrong git tree, kindly drop us a note.
And when submitting patch, we suggest to use '--base' as documented in
https://git-scm.com/docs/git-format-patch]

url:    https://github.com/0day-ci/linux/commits/ultrachin-163-com/mm-optimize-memory-allocation/20210412-155259
base:   https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git 5e46d1b78a03d52306f21f77a4e4a144b6d31486
config: i386-randconfig-r036-20210412 (attached as .config)
compiler: gcc-9 (Debian 9.3.0-22) 9.3.0
reproduce (this is a W=1 build):
        # https://github.com/0day-ci/linux/commit/6994280da115271cf4083439e5d4dcdb3ce00720
        git remote add linux-review https://github.com/0day-ci/linux
        git fetch --no-tags linux-review ultrachin-163-com/mm-optimize-memory-allocation/20210412-155259
        git checkout 6994280da115271cf4083439e5d4dcdb3ce00720
        # save the attached .config to linux build tree
        make W=1 ARCH=i386 

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

All error/warnings (new ones prefixed by >>):

   mm/page_alloc.c:3605:15: warning: no previous prototype for 'should_fail_alloc_page' [-Wmissing-prototypes]
    3605 | noinline bool should_fail_alloc_page(gfp_t gfp_mask, unsigned int order)
         |               ^~~~~~~~~~~~~~~~~~~~~~
   mm/page_alloc.c: In function '__alloc_pages_nodemask':
>> mm/page_alloc.c:4992:10: error: implicit declaration of function 'get_mem_cgroup_from_current'; did you mean 'get_mem_cgroup_from_mm'? [-Werror=implicit-function-declaration]
    4992 |  memcg = get_mem_cgroup_from_current();
         |          ^~~~~~~~~~~~~~~~~~~~~~~~~~~
         |          get_mem_cgroup_from_mm
>> mm/page_alloc.c:4992:8: warning: assignment to 'struct mem_cgroup *' from 'int' makes pointer from integer without a cast [-Wint-conversion]
    4992 |  memcg = get_mem_cgroup_from_current();
         |        ^
   cc1: some warnings being treated as errors
--
>> mm/memcontrol.c:1088:20: warning: no previous prototype for 'get_mem_cgroup_from_current' [-Wmissing-prototypes]
    1088 | struct mem_cgroup *get_mem_cgroup_from_current(void)
         |                    ^~~~~~~~~~~~~~~~~~~~~~~~~~~


vim +4992 mm/page_alloc.c

  4967	
  4968	/*
  4969	 * This is the 'heart' of the zoned buddy allocator.
  4970	 */
  4971	struct page *
  4972	__alloc_pages_nodemask(gfp_t gfp_mask, unsigned int order, int preferred_nid,
  4973								nodemask_t *nodemask)
  4974	{
  4975		struct page *page;
  4976		unsigned int alloc_flags = ALLOC_WMARK_LOW;
  4977		gfp_t alloc_mask; /* The gfp_t that was actually used for allocation */
  4978		struct alloc_context ac = { };
  4979		struct mem_cgroup *memcg;
  4980		bool charged = false;
  4981	
  4982		/*
  4983		 * There are several places where we assume that the order value is sane
  4984		 * so bail out early if the request is out of bound.
  4985		 */
  4986		if (unlikely(order >= MAX_ORDER)) {
  4987			WARN_ON_ONCE(!(gfp_mask & __GFP_NOWARN));
  4988			return NULL;
  4989		}
  4990	
  4991		gfp_mask &= gfp_allowed_mask;
> 4992		memcg = get_mem_cgroup_from_current();
  4993		if (memcg && memcg_kmem_enabled() && (gfp_mask & __GFP_ACCOUNT) &&
  4994		    !mem_cgroup_is_root(memcg)) {
  4995			if (unlikely(__memcg_kmem_charge_page(memcg, gfp_mask, order) != 0)) {
  4996				css_put(&memcg->css);
  4997				return NULL;
  4998			}
  4999			charged = true;
  5000		}
  5001		alloc_mask = gfp_mask;
  5002		if (!prepare_alloc_pages(gfp_mask, order, preferred_nid, nodemask, &ac, &alloc_mask, &alloc_flags))
  5003			return NULL;
  5004	
  5005		/*
  5006		 * Forbid the first pass from falling back to types that fragment
  5007		 * memory until all local zones are considered.
  5008		 */
  5009		alloc_flags |= alloc_flags_nofragment(ac.preferred_zoneref->zone, gfp_mask);
  5010	
  5011		/* First allocation attempt */
  5012		page = get_page_from_freelist(alloc_mask, order, alloc_flags, &ac);
  5013		if (likely(page))
  5014			goto out;
  5015	
  5016		/*
  5017		 * Apply scoped allocation constraints. This is mainly about GFP_NOFS
  5018		 * resp. GFP_NOIO which has to be inherited for all allocation requests
  5019		 * from a particular context which has been marked by
  5020		 * memalloc_no{fs,io}_{save,restore}.
  5021		 */
  5022		alloc_mask = current_gfp_context(gfp_mask);
  5023		ac.spread_dirty_pages = false;
  5024	
  5025		/*
  5026		 * Restore the original nodemask if it was potentially replaced with
  5027		 * &cpuset_current_mems_allowed to optimize the fast-path attempt.
  5028		 */
  5029		ac.nodemask = nodemask;
  5030	
  5031		page = __alloc_pages_slowpath(alloc_mask, order, &ac);
  5032	
  5033	out:
  5034		if (page && charged)
  5035			page->memcg_data = (unsigned long)memcg | MEMCG_DATA_KMEM;
  5036		else if (charged)
  5037			__memcg_kmem_uncharge_page(NULL, order, memcg);
  5038	
  5039		trace_mm_page_alloc(page, order, alloc_mask, ac.migratetype);
  5040	
  5041		return page;
  5042	}
  5043	EXPORT_SYMBOL(__alloc_pages_nodemask);
  5044	

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

Download attachment ".config.gz" of type "application/gzip" (34924 bytes)

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ