From: kernel test robot <lkp@intel.com>
To: Chunhai Guo <guochunhai@vivo.com>, xiang@kernel.org
Cc: llvm@lists.linux.dev, oe-kbuild-all@lists.linux.dev,
chao@kernel.org, huyue2@coolpad.com, jefflexu@linux.alibaba.com,
dhavale@google.com, linux-erofs@lists.ozlabs.org,
linux-kernel@vger.kernel.org, Chunhai Guo <guochunhai@vivo.com>
Subject: Re: [PATCH] erofs: add sysfs node to drop all compression-related caches
Date: Wed, 13 Nov 2024 00:57:44 +0800 [thread overview]
Message-ID: <202411130033.ZP2Akhk8-lkp@intel.com> (raw)
In-Reply-To: <20241112091403.586545-1-guochunhai@vivo.com>
Hi Chunhai,
kernel test robot noticed the following build errors:
[auto build test ERROR on xiang-erofs/dev-test]
[also build test ERROR on xiang-erofs/dev xiang-erofs/fixes linus/master v6.12-rc7 next-20241112]
[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#_base_tree_information]
url: https://github.com/intel-lab-lkp/linux/commits/Chunhai-Guo/erofs-add-sysfs-node-to-drop-all-compression-related-caches/20241112-170412
base: https://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs.git dev-test
patch link: https://lore.kernel.org/r/20241112091403.586545-1-guochunhai%40vivo.com
patch subject: [PATCH] erofs: add sysfs node to drop all compression-related caches
config: i386-randconfig-003-20241112 (https://download.01.org/0day-ci/archive/20241113/202411130033.ZP2Akhk8-lkp@intel.com/config)
compiler: clang version 19.1.3 (https://github.com/llvm/llvm-project ab51eccf88f5321e7c60591c5546b254b6afab99)
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20241113/202411130033.ZP2Akhk8-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/202411130033.ZP2Akhk8-lkp@intel.com/
All errors (new ones prefixed by >>):
In file included from fs/erofs/sysfs.c:9:
In file included from fs/erofs/internal.h:11:
In file included from include/linux/dax.h:6:
In file included from include/linux/mm.h:2213:
include/linux/vmstat.h:518:36: warning: arithmetic between different enumeration types ('enum node_stat_item' and 'enum lru_list') [-Wenum-enum-conversion]
518 | return node_stat_name(NR_LRU_BASE + lru) + 3; // skip "nr_"
| ~~~~~~~~~~~ ^ ~~~
>> fs/erofs/sysfs.c:175:3: error: call to undeclared function 'z_erofs_shrink_scan'; ISO C99 and later do not support implicit function declarations [-Wimplicit-function-declaration]
175 | z_erofs_shrink_scan(sbi, ~0UL);
| ^
1 warning and 1 error generated.
vim +/z_erofs_shrink_scan +175 fs/erofs/sysfs.c
132
133 static ssize_t erofs_attr_store(struct kobject *kobj, struct attribute *attr,
134 const char *buf, size_t len)
135 {
136 struct erofs_sb_info *sbi = container_of(kobj, struct erofs_sb_info,
137 s_kobj);
138 struct erofs_attr *a = container_of(attr, struct erofs_attr, attr);
139 unsigned char *ptr = __struct_ptr(sbi, a->struct_type, a->offset);
140 unsigned long t;
141 int ret;
142
143 switch (a->attr_id) {
144 case attr_pointer_ui:
145 if (!ptr)
146 return 0;
147 ret = kstrtoul(skip_spaces(buf), 0, &t);
148 if (ret)
149 return ret;
150 if (t != (unsigned int)t)
151 return -ERANGE;
152 #ifdef CONFIG_EROFS_FS_ZIP
153 if (!strcmp(a->attr.name, "sync_decompress") &&
154 (t > EROFS_SYNC_DECOMPRESS_FORCE_OFF))
155 return -EINVAL;
156 #endif
157 *(unsigned int *)ptr = t;
158 return len;
159 case attr_pointer_bool:
160 if (!ptr)
161 return 0;
162 ret = kstrtoul(skip_spaces(buf), 0, &t);
163 if (ret)
164 return ret;
165 if (t != 0 && t != 1)
166 return -EINVAL;
167 *(bool *)ptr = !!t;
168 return len;
169 case attr_drop_caches:
170 ret = kstrtoul(skip_spaces(buf), 0, &t);
171 if (ret)
172 return ret;
173 if (t != 1)
174 return -EINVAL;
> 175 z_erofs_shrink_scan(sbi, ~0UL);
176 return len;
177 }
178 return 0;
179 }
180
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
prev parent reply other threads:[~2024-11-12 16:58 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-11-12 9:14 Chunhai Guo
2024-11-12 9:42 ` Gao Xiang
2024-11-12 14:51 ` kernel test robot
2024-11-12 16:57 ` kernel test robot [this message]
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=202411130033.ZP2Akhk8-lkp@intel.com \
--to=lkp@intel.com \
--cc=chao@kernel.org \
--cc=dhavale@google.com \
--cc=guochunhai@vivo.com \
--cc=huyue2@coolpad.com \
--cc=jefflexu@linux.alibaba.com \
--cc=linux-erofs@lists.ozlabs.org \
--cc=linux-kernel@vger.kernel.org \
--cc=llvm@lists.linux.dev \
--cc=oe-kbuild-all@lists.linux.dev \
--cc=xiang@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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®