[ammarfaizi2-block:dhowells/linux-fs/netfs-maple 29/35] fs/netfs/write_helper.c:28:26: warning: comparison of distinct pointer types ('typeof ((1UL << 18) - offset) *' (aka 'unsigned long *') and 'typeof (size) *' (aka 'unsigned int *'))
by kernel test robot
tree: https://github.com/ammarfaizi2/linux-block dhowells/linux-fs/netfs-maple
head: 429e2bb6fb190f390ed23afc0d2308e877c43be5
commit: 01abe2ebb0b5676c9d0394947cfeea45d0f5c09f [29/35] netfs: Implement buffered writes through netfs_file_write_iter()
config: hexagon-randconfig-r041-20220211 (https://download.01.org/0day-ci/archive/20220211/202202111352.8qGMAF4o-lk...)
compiler: clang version 15.0.0 (https://github.com/llvm/llvm-project f6685f774697c85d6a352dcea013f46a99f9fe31)
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/ammarfaizi2/linux-block/commit/01abe2ebb0b5676c9d03949...
git remote add ammarfaizi2-block https://github.com/ammarfaizi2/linux-block
git fetch --no-tags ammarfaizi2-block dhowells/linux-fs/netfs-maple
git checkout 01abe2ebb0b5676c9d0394947cfeea45d0f5c09f
# save the config file to linux build tree
mkdir build_dir
COMPILER_INSTALL_PATH=$HOME/0day COMPILER=clang make.cross W=1 O=build_dir ARCH=hexagon SHELL=/bin/bash fs/netfs/
If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp(a)intel.com>
All warnings (new ones prefixed by >>):
>> fs/netfs/write_helper.c:28:26: warning: comparison of distinct pointer types ('typeof ((1UL << 18) - offset) *' (aka 'unsigned long *') and 'typeof (size) *' (aka 'unsigned int *')) [-Wcompare-distinct-pointer-types]
unsigned int psize = min(PAGE_SIZE - offset, size);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
include/linux/minmax.h:45:19: note: expanded from macro 'min'
#define min(x, y) __careful_cmp(x, y, <)
^~~~~~~~~~~~~~~~~~~~~~
include/linux/minmax.h:36:24: note: expanded from macro '__careful_cmp'
__builtin_choose_expr(__safe_cmp(x, y), \
^~~~~~~~~~~~~~~~
include/linux/minmax.h:26:4: note: expanded from macro '__safe_cmp'
(__typecheck(x, y) && __no_side_effects(x, y))
^~~~~~~~~~~~~~~~~
include/linux/minmax.h:20:28: note: expanded from macro '__typecheck'
(!!(sizeof((typeof(x) *)1 == (typeof(y) *)1)))
~~~~~~~~~~~~~~ ^ ~~~~~~~~~~~~~~
>> fs/netfs/write_helper.c:126:18: warning: comparison of distinct pointer types ('typeof (target->from) *' (aka 'unsigned long long *') and 'typeof (folio_pos(folio) + offset) *' (aka 'long long *')) [-Wcompare-distinct-pointer-types]
target->from = min(target->from, folio_pos(folio) + offset);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
include/linux/minmax.h:45:19: note: expanded from macro 'min'
#define min(x, y) __careful_cmp(x, y, <)
^~~~~~~~~~~~~~~~~~~~~~
include/linux/minmax.h:36:24: note: expanded from macro '__careful_cmp'
__builtin_choose_expr(__safe_cmp(x, y), \
^~~~~~~~~~~~~~~~
include/linux/minmax.h:26:4: note: expanded from macro '__safe_cmp'
(__typecheck(x, y) && __no_side_effects(x, y))
^~~~~~~~~~~~~~~~~
include/linux/minmax.h:20:28: note: expanded from macro '__typecheck'
(!!(sizeof((typeof(x) *)1 == (typeof(y) *)1)))
~~~~~~~~~~~~~~ ^ ~~~~~~~~~~~~~~
>> fs/netfs/write_helper.c:127:18: warning: comparison of distinct pointer types ('typeof (target->to) *' (aka 'unsigned long long *') and 'typeof (folio_pos(folio) + offset + len) *' (aka 'long long *')) [-Wcompare-distinct-pointer-types]
target->to = max(target->to, folio_pos(folio) + offset + len);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
include/linux/minmax.h:52:19: note: expanded from macro 'max'
#define max(x, y) __careful_cmp(x, y, >)
^~~~~~~~~~~~~~~~~~~~~~
include/linux/minmax.h:36:24: note: expanded from macro '__careful_cmp'
__builtin_choose_expr(__safe_cmp(x, y), \
^~~~~~~~~~~~~~~~
include/linux/minmax.h:26:4: note: expanded from macro '__safe_cmp'
(__typecheck(x, y) && __no_side_effects(x, y))
^~~~~~~~~~~~~~~~~
include/linux/minmax.h:20:28: note: expanded from macro '__typecheck'
(!!(sizeof((typeof(x) *)1 == (typeof(y) *)1)))
~~~~~~~~~~~~~~ ^ ~~~~~~~~~~~~~~
3 warnings generated.
vim +28 fs/netfs/write_helper.c
18
19 static size_t copy_folio_from_iter_atomic(struct folio *folio,
20 unsigned int offset, size_t size,
21 struct iov_iter *i)
22 {
23 size_t copied = 0, n;
24
25 do {
26 unsigned int index = offset / PAGE_SIZE;
27 unsigned int poffset = offset % PAGE_SIZE;
> 28 unsigned int psize = min(PAGE_SIZE - offset, size);
29
30 n = copy_page_from_iter_atomic(folio_file_page(folio, index),
31 poffset, psize, i);
32 copied += n;
33 if (n < psize)
34 break;
35 size -= n;
36 } while (size);
37 return copied;
38 }
39
40 /*
41 * Initialise a new dirty folio group. We have to round it out to any crypto
42 * alignment.
43 */
44 static void netfs_init_dirty_region(struct netfs_i_context *ctx,
45 struct netfs_dirty_region *region,
46 struct file *file,
47 enum netfs_write_type write_type,
48 loff_t start, size_t len)
49 {
50 struct netfs_flush_group *group;
51
52 region->from = start;
53 region->to = start + len;
54 region->debug_id = atomic_inc_return(&netfs_region_debug_ids);
55 refcount_set(®ion->ref, 1);
56
57 switch (write_type) {
58 case NETFS_ORDINARY_WRITE:
59 case NETFS_DIO_WRITE:
60 break;
61 case NETFS_SYNC_WRITE:
62 __set_bit(NETFS_REGION_SYNC, ®ion->flags);
63 break;
64 case NETFS_DSYNC_WRITE:
65 __set_bit(NETFS_REGION_DSYNC, ®ion->flags);
66 break;
67 }
68
69 if (file && ctx->ops->init_dirty_region)
70 ctx->ops->init_dirty_region(region, file);
71
72 if (!region->group) {
73 group = list_last_entry(&ctx->flush_groups,
74 struct netfs_flush_group, group_link);
75 region->group = netfs_get_flush_group(group);
76 }
77 trace_netfs_ref_region(region->debug_id, refcount_read(®ion->ref),
78 netfs_region_trace_new);
79 }
80
81 /*
82 * Decide if/how a write can be merged with a dirty region.
83 */
84 static bool netfs_is_write_compatible(struct netfs_i_context *ctx,
85 struct netfs_dirty_region *old,
86 struct netfs_dirty_region *candidate)
87 {
88 /* Regions being actively flushed can't be merged with */
89 if (netfs_mas_is_flushing(old) ||
90 candidate->group != old->group ||
91 test_bit(NETFS_FGROUP_FLUSHED, &old->group->flags)) {
92 _leave(" = f [flush]");
93 return false;
94 }
95
96 if (test_bit(NETFS_REGION_DSYNC, &old->flags)) {
97 _leave(" = f [dsync]");
98 return false;
99 }
100
101 if (!ctx->ops->is_write_compatible) {
102 if (test_bit(NETFS_REGION_DSYNC, &candidate->flags)) {
103 _leave(" = f [dsync]");
104 return false;
105 }
106 _leave(" = t");
107 return true;
108 }
109 return ctx->ops->is_write_compatible(ctx, old, candidate);
110 }
111
112 /*
113 * Subsume the modifications into an existing target region. Returns true if
114 * we need to update the dirty_regions tree.
115 */
116 static bool netfs_subsume_into_existing(struct netfs_i_context *ctx,
117 struct folio *folio,
118 struct ma_state *mas,
119 struct netfs_dirty_region **_target,
120 struct netfs_dirty_region **_to_put,
121 pgoff_t *_first, pgoff_t *_last,
122 size_t offset, size_t len)
123 {
124 struct netfs_dirty_region *target = *_target, *prev;
125
> 126 target->from = min(target->from, folio_pos(folio) + offset);
> 127 target->to = max(target->to, folio_pos(folio) + offset + len);
128 trace_netfs_dirty(ctx, target, NULL, *_first, *_last,
129 netfs_dirty_trace_modified);
130
131 /* We might have bridged to the previous region also. */
132 prev = mas_prev(mas, *_first - 1);
133 if (!netfs_mas_is_valid(prev))
134 return false;
135
136 if (prev->to != target->from ||
137 prev->waiting_on_wb != target->waiting_on_wb)
138 return false;
139
140 *_first = mas->index;
141 prev->to = target->to;
142 *_to_put = target;
143 trace_netfs_dirty(ctx, prev, NULL, *_first, *_last,
144 netfs_dirty_trace_merged_prev);
145 return true;
146 }
147
---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org
7 months, 1 week
[jlayton:ceph-fscrypt 57/57] net/ceph/messenger_v2.c:1783:37: warning: declaration of 'struct cepn_connection' will not be visible outside of this function
by kernel test robot
tree: https://git.kernel.org/pub/scm/linux/kernel/git/jlayton/linux.git ceph-fscrypt
head: adf69efebc954db1aa7af7b93febbc2a1b51dc6c
commit: adf69efebc954db1aa7af7b93febbc2a1b51dc6c [57/57] libceph: define a structure to track SPARSE_READ reply processing
config: i386-randconfig-a015 (https://download.01.org/0day-ci/archive/20220211/202202111326.dzplRoUb-lk...)
compiler: clang version 15.0.0 (https://github.com/llvm/llvm-project f6685f774697c85d6a352dcea013f46a99f9fe31)
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://git.kernel.org/pub/scm/linux/kernel/git/jlayton/linux.git/commit/...
git remote add jlayton https://git.kernel.org/pub/scm/linux/kernel/git/jlayton/linux.git
git fetch --no-tags jlayton ceph-fscrypt
git checkout adf69efebc954db1aa7af7b93febbc2a1b51dc6c
# save the config file to linux build tree
mkdir build_dir
COMPILER_INSTALL_PATH=$HOME/0day COMPILER=clang make.cross W=1 O=build_dir ARCH=i386 SHELL=/bin/bash net/ceph/
If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp(a)intel.com>
All warnings (new ones prefixed by >>):
>> net/ceph/messenger_v2.c:1783:37: warning: declaration of 'struct cepn_connection' will not be visible outside of this function [-Wvisibility]
static int prepare_read_data(struct cepn_connection *con)
^
net/ceph/messenger_v2.c:1787:5: error: incomplete definition of type 'struct cepn_connection'
con->in_data_crc = -1;
~~~^
net/ceph/messenger_v2.c:1783:37: note: forward declaration of 'struct cepn_connection'
static int prepare_read_data(struct cepn_connection *con)
^
net/ceph/messenger_v2.c:1788:47: error: incomplete definition of type 'struct cepn_connection'
ret = prepare_read_data_len(con, data_len(con->in_msg));
~~~^
net/ceph/messenger_v2.c:1783:37: note: forward declaration of 'struct cepn_connection'
static int prepare_read_data(struct cepn_connection *con)
^
net/ceph/messenger_v2.c:1790:6: error: incomplete definition of type 'struct cepn_connection'
con->v2.in_state = IN_S_PREPARE_READ_DATA_CONT;
~~~^
net/ceph/messenger_v2.c:1783:37: note: forward declaration of 'struct cepn_connection'
static int prepare_read_data(struct cepn_connection *con)
^
net/ceph/messenger_v2.c:1842:24: error: use of undeclared identifier 'iter'
if (!iov_iter_is_bvec(iter))
^
net/ceph/messenger_v2.c:1881:10: error: implicit declaration of function 'handle_epilogue' [-Werror,-Wimplicit-function-declaration]
return handle_epilogue(con);
^
net/ceph/messenger_v2.c:1881:10: note: did you mean 'decode_epilogue'?
net/ceph/messenger_v2.c:573:12: note: 'decode_epilogue' declared here
static int decode_epilogue(void *p, u32 *front_crc, u32 *middle_crc,
^
net/ceph/messenger_v2.c:1898:24: error: use of undeclared identifier 'iter'
if (!iov_iter_is_kvec(iter))
^
net/ceph/messenger_v2.c:1951:28: error: incompatible pointer types passing 'struct ceph_connection *' to parameter of type 'struct cepn_connection *' [-Werror,-Wincompatible-pointer-types]
return prepare_read_data(con);
^~~
net/ceph/messenger_v2.c:1783:54: note: passing argument to parameter 'con' here
static int prepare_read_data(struct cepn_connection *con)
^
net/ceph/messenger_v2.c:2938:12: error: static declaration of 'handle_epilogue' follows non-static declaration
static int handle_epilogue(struct ceph_connection *con)
^
net/ceph/messenger_v2.c:1881:10: note: previous implicit declaration is here
return handle_epilogue(con);
^
net/ceph/messenger_v2.c:3012:28: error: incompatible pointer types passing 'struct ceph_connection *' to parameter of type 'struct cepn_connection *' [-Werror,-Wincompatible-pointer-types]
ret = prepare_read_data(con);
^~~
net/ceph/messenger_v2.c:1783:54: note: passing argument to parameter 'con' here
static int prepare_read_data(struct cepn_connection *con)
^
net/ceph/messenger_v2.c:3014:8: error: use of undeclared identifier 'IN_S_PREPARE_READ_SPARSE_DATA'
case IN_S_PREPARE_READ_SPARSE_DATA:
^
1 warning and 10 errors generated.
vim +1783 net/ceph/messenger_v2.c
1782
> 1783 static int prepare_read_data(struct cepn_connection *con)
1784 {
1785 int ret;
1786
1787 con->in_data_crc = -1;
1788 ret = prepare_read_data_len(con, data_len(con->in_msg));
1789 if (ret == 0)
1790 con->v2.in_state = IN_S_PREPARE_READ_DATA_CONT;
1791 return ret;
1792 }
1793
---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org
7 months, 1 week
[linux-next:master 637/4147] warning: argument unused during compilation: '-mstrict-align' err: false
by kernel test robot
tree: https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git master
head: ef6b35306dd8f15a7e5e5a2532e665917a43c5d9
commit: 5d287d7e9c9bd455f8eb9abf80f320927433e168 [637/4147] Kbuild: add Rust support
config: riscv-randconfig-r042-20220207 (https://download.01.org/0day-ci/archive/20220207/202202070448.t4dQz3iS-lk...)
compiler: riscv64-linux-gcc (GCC) 11.2.0
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://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git/commi...
git remote add linux-next https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
git fetch --no-tags linux-next master
git checkout 5d287d7e9c9bd455f8eb9abf80f320927433e168
# save the config file to linux build tree
COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-11.2.0 make.cross ARCH=riscv
If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp(a)intel.com>
All warnings (new ones prefixed by >>):
warning: optimization flag '-fno-inline-functions-called-once' is not supported err: false
>> warning: argument unused during compilation: '-mstrict-align' err: false
>> warning: argument unused during compilation: '-fno-stack-clash-protection' err: false
warning: unknown warning option '-Wpacked-not-aligned'; did you mean err: false
warning: unknown warning option '-Wstringop-truncation'; did you mean err: false
warning: optimization flag '-fno-inline-functions-called-once' is not supported err: false
>> warning: argument unused during compilation: '-mstrict-align' err: false
>> warning: argument unused during compilation: '-fno-stack-clash-protection' err: false
warning: unknown warning option '-Wpacked-not-aligned'; did you mean err: false
warning: unknown warning option '-Wstringop-truncation'; did you mean err: false
rust/helpers.c:22:17: warning: no previous prototype for function 'rust_helper_BUG' err: false
rust/helpers.c:27:6: warning: no previous prototype for function 'rust_helper_clk_disable_unprepare' err: false
rust/helpers.c:33:5: warning: no previous prototype for function 'rust_helper_clk_prepare_enable' err: false
rust/helpers.c:39:15: warning: no previous prototype for function 'rust_helper_copy_from_user' err: false
rust/helpers.c:44:15: warning: no previous prototype for function 'rust_helper_copy_to_user' err: false
rust/helpers.c:49:15: warning: no previous prototype for function 'rust_helper_clear_user' err: false
rust/helpers.c:54:15: warning: no previous prototype for function 'rust_helper_ioremap' err: false
rust/helpers.c:60:4: warning: no previous prototype for function 'rust_helper_readb' err: false
rust/helpers.c:66:5: warning: no previous prototype for function 'rust_helper_readw' err: false
rust/helpers.c:72:5: warning: no previous prototype for function 'rust_helper_readl' err: false
rust/helpers.c:79:5: warning: no previous prototype for function 'rust_helper_readq' err: false
rust/helpers.c:86:6: warning: no previous prototype for function 'rust_helper_writeb' err: false
rust/helpers.c:92:6: warning: no previous prototype for function 'rust_helper_writew' err: false
rust/helpers.c:98:6: warning: no previous prototype for function 'rust_helper_writel' err: false
rust/helpers.c:105:6: warning: no previous prototype for function 'rust_helper_writeq' err: false
rust/helpers.c:112:4: warning: no previous prototype for function 'rust_helper_readb_relaxed' err: false
rust/helpers.c:118:5: warning: no previous prototype for function 'rust_helper_readw_relaxed' err: false
rust/helpers.c:124:5: warning: no previous prototype for function 'rust_helper_readl_relaxed' err: false
rust/helpers.c:131:5: warning: no previous prototype for function 'rust_helper_readq_relaxed' err: false
rust/helpers.c:138:6: warning: no previous prototype for function 'rust_helper_writeb_relaxed' err: false
rust/helpers.c:144:6: warning: no previous prototype for function 'rust_helper_writew_relaxed' err: false
rust/helpers.c:150:6: warning: no previous prototype for function 'rust_helper_writel_relaxed' err: false
rust/helpers.c:157:6: warning: no previous prototype for function 'rust_helper_writeq_relaxed' err: false
rust/helpers.c:163:6: warning: no previous prototype for function 'rust_helper___spin_lock_init' err: false
rust/helpers.c:174:6: warning: no previous prototype for function 'rust_helper_spin_lock' err: false
rust/helpers.c:180:6: warning: no previous prototype for function 'rust_helper_spin_unlock' err: false
rust/helpers.c:186:15: warning: no previous prototype for function 'rust_helper_spin_lock_irqsave' err: false
rust/helpers.c:194:6: warning: no previous prototype for function 'rust_helper_spin_unlock_irqrestore' err: false
rust/helpers.c:200:6: warning: no previous prototype for function 'rust_helper_init_wait' err: false
rust/helpers.c:206:5: warning: no previous prototype for function 'rust_helper_signal_pending' err: false
rust/helpers.c:212:14: warning: no previous prototype for function 'rust_helper_alloc_pages' err: false
rust/helpers.c:218:7: warning: no previous prototype for function 'rust_helper_kmap' err: false
rust/helpers.c:224:6: warning: no previous prototype for function 'rust_helper_kunmap' err: false
rust/helpers.c:230:5: warning: no previous prototype for function 'rust_helper_cond_resched' err: false
rust/helpers.c:236:8: warning: no previous prototype for function 'rust_helper_copy_from_iter' err: false
rust/helpers.c:242:8: warning: no previous prototype for function 'rust_helper_copy_to_iter' err: false
rust/helpers.c:248:6: warning: no previous prototype for function 'rust_helper_IS_ERR' err: false
rust/helpers.c:254:6: warning: no previous prototype for function 'rust_helper_PTR_ERR' err: false
rust/helpers.c:260:13: warning: no previous prototype for function 'rust_helper_errname' err: false
rust/helpers.c:266:6: warning: no previous prototype for function 'rust_helper_mutex_lock' err: false
rust/helpers.c:272:6: warning: no previous prototype for function 'rust_helper_amba_set_drvdata' err: false
rust/helpers.c:278:7: warning: no previous prototype for function 'rust_helper_amba_get_drvdata' err: false
rust/helpers.c:285:1: warning: no previous prototype for function 'rust_helper_platform_get_drvdata' err: false
rust/helpers.c:292:1: warning: no previous prototype for function 'rust_helper_platform_set_drvdata' err: false
rust/helpers.c:299:12: warning: no previous prototype for function 'rust_helper_REFCOUNT_INIT' err: false
rust/helpers.c:305:6: warning: no previous prototype for function 'rust_helper_refcount_inc' err: false
rust/helpers.c:311:6: warning: no previous prototype for function 'rust_helper_refcount_dec_and_test' err: false
rust/helpers.c:317:6: warning: no previous prototype for function 'rust_helper_rb_link_node' err: false
rust/helpers.c:324:21: warning: no previous prototype for function 'rust_helper_get_current' err: false
rust/helpers.c:330:6: warning: no previous prototype for function 'rust_helper_get_task_struct' err: false
rust/helpers.c:336:6: warning: no previous prototype for function 'rust_helper_put_task_struct' err: false
rust/helpers.c:342:5: warning: no previous prototype for function 'rust_helper_security_binder_set_context_mgr' err: false
rust/helpers.c:348:5: warning: no previous prototype for function 'rust_helper_security_binder_transaction' err: false
rust/helpers.c:355:5: warning: no previous prototype for function 'rust_helper_security_binder_transfer_binder' err: false
rust/helpers.c:362:5: warning: no previous prototype for function 'rust_helper_security_binder_transfer_file' err: false
rust/helpers.c:370:6: warning: no previous prototype for function 'rust_helper_rcu_read_lock' err: false
rust/helpers.c:376:6: warning: no previous prototype for function 'rust_helper_rcu_read_unlock' err: false
rust/helpers.c:382:6: warning: no previous prototype for function 'rust_helper_synchronize_rcu' err: false
rust/helpers.c:388:7: warning: no previous prototype for function 'rust_helper_dev_get_drvdata' err: false
rust/helpers.c:394:13: warning: no previous prototype for function 'rust_helper_dev_name' err: false
rust/helpers.c:400:6: warning: no previous prototype for function 'rust_helper___seqcount_init' err: false
rust/helpers.c:407:10: warning: no previous prototype for function 'rust_helper_read_seqcount_begin' err: false
rust/helpers.c:413:5: warning: no previous prototype for function 'rust_helper_read_seqcount_retry' err: false
rust/helpers.c:419:6: warning: no previous prototype for function 'rust_helper_write_seqcount_begin' err: false
rust/helpers.c:425:6: warning: no previous prototype for function 'rust_helper_write_seqcount_end' err: false
rust/helpers.c:431:6: warning: no previous prototype for function 'rust_helper_irq_set_handler_locked' err: false
rust/helpers.c:438:7: warning: no previous prototype for function 'rust_helper_irq_data_get_irq_chip_data' err: false
rust/helpers.c:444:18: warning: no previous prototype for function 'rust_helper_irq_desc_get_chip' err: false
rust/helpers.c:450:7: warning: no previous prototype for function 'rust_helper_irq_desc_get_handler_data' err: false
rust/helpers.c:456:6: warning: no previous prototype for function 'rust_helper_chained_irq_enter' err: false
rust/helpers.c:463:6: warning: no previous prototype for function 'rust_helper_chained_irq_exit' err: false
rust/helpers.c:470:20: warning: no previous prototype for function 'rust_helper_get_cred' err: false
rust/helpers.c:476:6: warning: no previous prototype for function 'rust_helper_put_cred' err: false
rust/helpers.c:481:28: warning: no previous prototype for function 'rust_helper_of_match_device' err: false
cannot find function `_dev_printk` in module `bindings`
--> rust/kernel/device.rs:146:23
|
146 | bindings::_dev_printk(
| ^^^^^^^^^^^ not found in `bindings`
---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org
7 months, 1 week