All of lore.kernel.org
 help / color / mirror / Atom feed
From: kernel test robot <lkp@intel.com>
To: "Vlastimil Babka (SUSE)" <vbabka@kernel.org>
Cc: oe-kbuild-all@lists.linux.dev
Subject: [vbabka:objext_split 9/14] mm/slab.h:664:45: error: 'struct slabobj_ext' has no member named '_objcg'
Date: Thu, 09 Jul 2026 17:36:06 +0800	[thread overview]
Message-ID: <202607091705.XjP7d8IF-lkp@intel.com> (raw)

Hi Vlastimil,

FYI, the error/warning was bisected to this commit, please ignore it if it's irrelevant.

tree:   https://git.kernel.org/pub/scm/linux/kernel/git/vbabka/linux.git objext_split
head:   8bd682e28958694beba958e2a3af94c6e1789819
commit: 0be66c218c46f308612a25af648bda07e7f4c8c3 [9/14] mm/slab: abstract obj_ext.objcg access
config: arc-randconfig-002-20260709 (https://download.01.org/0day-ci/archive/20260709/202607091705.XjP7d8IF-lkp@intel.com/config)
compiler: arc-linux-gcc (GCC) 8.5.0
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20260709/202607091705.XjP7d8IF-lkp@intel.com/reproduce)

If you fix the issue in a separate patch/commit (i.e. not just a new version of
the same patch/commit), kindly add following tags
| Reported-by: kernel test robot <lkp@intel.com>
| Closes: https://lore.kernel.org/oe-kbuild-all/202607091705.XjP7d8IF-lkp@intel.com/

All errors (new ones prefixed by >>):

   In file included from mm/slab_common.c:35:
   mm/slab.h: In function 'slab_obj_ext_get_objcg':
>> mm/slab.h:664:45: error: 'struct slabobj_ext' has no member named '_objcg'
     objcg = slab_obj_ext(slab, obj_exts, index)->_objcg;
                                                ^~
   mm/slab.h: In function 'slab_obj_ext_set_objcg':
   mm/slab.h:685:21: error: 'struct slabobj_ext' has no member named '_objcg'
     objcg_old = obj_ext->_objcg;
                        ^~
   mm/slab.h:688:10: error: 'struct slabobj_ext' has no member named '_objcg'
      obj_ext->_objcg = objcg_new;
             ^~


vim +664 mm/slab.h

   654	
   655	static inline struct obj_cgroup *slab_obj_ext_get_objcg(struct slab *slab,
   656						unsigned long obj_exts, void *obj)
   657	{
   658		struct obj_cgroup *objcg;
   659		unsigned int index;
   660	
   661		index = obj_to_index(slab->slab_cache, slab, obj);
   662	
   663		get_slab_obj_exts(obj_exts);
 > 664		objcg = slab_obj_ext(slab, obj_exts, index)->_objcg;
   665		put_slab_obj_exts(obj_exts);
   666	
   667		return objcg;
   668	}
   669	

--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki

                 reply	other threads:[~2026-07-09  9:36 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=202607091705.XjP7d8IF-lkp@intel.com \
    --to=lkp@intel.com \
    --cc=oe-kbuild-all@lists.linux.dev \
    --cc=vbabka@kernel.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.