Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1246494
| From | kbuild test robot <lkp@intel.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | Re: [PATCH v4 4/8] crypto/deflate: support contextless compression API |
| Date | 2015-10-14 12:30 +0200 |
| Message-ID | <qjrtM-40U-17@gated-at.bofh.it> (permalink) |
| References | <qjoYW-ib-33@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
[Multipart message — attachments visible in raw view] - view raw
Hi Joonsoo,
[auto build test ERROR on next-20151013 -- if it's inappropriate base, please suggest rules for selecting the more suitable base]
url: https://github.com/0day-ci/linux/commits/Joonsoo-Kim/zram-introduce-contextless-compression-API-and-use-it-on-zram/20151014-154649
config: m32r-usrv_defconfig (attached as .config)
reproduce:
wget https://git.kernel.org/cgit/linux/kernel/git/wfg/lkp-tests.git/plain/sbin/make.cross -O ~/bin/make.cross
chmod +x ~/bin/make.cross
# save the attached .config to linux build tree
make.cross ARCH=m32r
All errors (new ones prefixed by >>):
crypto/built-in.o: In function `deflate_mod_init':
>> crypto/deflate.c:280: undefined reference to `crypto_register_ccomp'
crypto/deflate.c:280:(.init.text+0x244): relocation truncated to fit: R_M32R_26_PCREL_RELA against undefined symbol `crypto_register_ccomp'
vim +280 crypto/deflate.c
274 int ret;
275
276 ret = crypto_register_alg(&alg);
277 if (ret)
278 return ret;
279
> 280 ret = crypto_register_ccomp(&ccomp);
281 if (ret) {
282 crypto_unregister_alg(&alg);
283 return ret;
---
0-DAY kernel test infrastructure Open Source Technology Center
https://lists.01.org/pipermail/kbuild-all Intel Corporation
Back to linux.kernel | Previous | Next — Previous in thread | Find similar | Unroll thread
[PATCH v4 0/8] zram: introduce contextless compression API and use it on zram Joonsoo Kim <js1304@gmail.com> - 2015-10-14 09:40 +0200
[PATCH v4 6/8] zram: pass zstrm down to decompression path Joonsoo Kim <js1304@gmail.com> - 2015-10-14 09:40 +0200
[PATCH v4 3/8] crypto/lz4: support contextless compressiona API Joonsoo Kim <js1304@gmail.com> - 2015-10-14 09:50 +0200
Re: [PATCH v4 3/8] crypto/lz4: support contextless compressiona API kbuild test robot <lkp@intel.com> - 2015-10-14 10:50 +0200
[PATCH v4 2/8] crypto/lzo: support contextless compression API Joonsoo Kim <js1304@gmail.com> - 2015-10-14 09:50 +0200
[PATCH v4 4/8] crypto/deflate: support contextless compression API Joonsoo Kim <js1304@gmail.com> - 2015-10-14 09:50 +0200
Re: [PATCH v4 4/8] crypto/deflate: support contextless compression API kbuild test robot <lkp@intel.com> - 2015-10-14 10:40 +0200
Re: [PATCH v4 4/8] crypto/deflate: support contextless compression API kbuild test robot <lkp@intel.com> - 2015-10-14 12:10 +0200
Re: [PATCH v4 4/8] crypto/deflate: support contextless compression API kbuild test robot <lkp@intel.com> - 2015-10-14 12:30 +0200
csiph-web