Home
last modified time | relevance | path

Searched full:len (Results 1 – 25 of 4506) sorted by relevance

12345678910>>...181

/linux/drivers/net/wireless/ath/ath11k/
H A Ddebugfs_htt_stats.c19 #define PRINT_ARRAY_TO_BUF(out, buflen, arr, str, len, newline) \ argument
28 for (i = 0; i < len; i++) { \
45 u32 len = stats_req->buf_len; in htt_print_stats_string_tlv() local
51 len += scnprintf(buf + len, buf_len - len, "HTT_STATS_STRING_TLV:\n"); in htt_print_stats_string_tlv()
53 len += scnprintf(buf + len, buf_len - len, in htt_print_stats_string_tlv()
56 len += scnprintf(buf + len, in htt_print_stats_string_tlv()
57 buf_len - len, in htt_print_stats_string_tlv()
61 len += scnprintf(buf + len, buf_len - len, "\n\n"); in htt_print_stats_string_tlv()
63 if (len >= buf_len) in htt_print_stats_string_tlv()
66 buf[len] = 0; in htt_print_stats_string_tlv()
[all …]
H A Ddebugfs_sta.c147 int len = 0, i, j, k, retval = 0; in ath11k_dbg_sta_dump_tx_stats() local
164 len += scnprintf(buf + len, size - len, "%s_%s\n", in ath11k_dbg_sta_dump_tx_stats()
167 len += scnprintf(buf + len, size - len, in ath11k_dbg_sta_dump_tx_stats()
171 len += scnprintf(buf + len, size - len, in ath11k_dbg_sta_dump_tx_stats()
174 len += scnprintf(buf + len, size - len, "\n"); in ath11k_dbg_sta_dump_tx_stats()
175 len += scnprintf(buf + len, size - len, in ath11k_dbg_sta_dump_tx_stats()
179 len += scnprintf(buf + len, size - len, in ath11k_dbg_sta_dump_tx_stats()
182 len += scnprintf(buf + len, size - len, "\n"); in ath11k_dbg_sta_dump_tx_stats()
183 len += scnprintf(buf + len, size - len, " HT MCS %s\n", in ath11k_dbg_sta_dump_tx_stats()
186 len += scnprintf(buf + len, size - len, in ath11k_dbg_sta_dump_tx_stats()
[all …]
/linux/drivers/net/wireless/ath/ath12k/
H A Ddebugfs_htt_stats.c158 u32 len = stats_req->buf_len; in htt_print_tx_pdev_stats_cmn_tlv() local
167 len += scnprintf(buf + len, buf_len - len, "HTT_TX_PDEV_STATS_CMN_TLV:\n"); in htt_print_tx_pdev_stats_cmn_tlv()
168 len += scnprintf(buf + len, buf_len - len, "mac_id = %u\n", in htt_print_tx_pdev_stats_cmn_tlv()
170 len += scnprintf(buf + len, buf_len - len, "comp_delivered = %u\n", in htt_print_tx_pdev_stats_cmn_tlv()
172 len += scnprintf(buf + len, buf_len - len, "self_triggers = %u\n", in htt_print_tx_pdev_stats_cmn_tlv()
174 len += scnprintf(buf + len, buf_len - len, "hw_queued = %u\n", in htt_print_tx_pdev_stats_cmn_tlv()
176 len += scnprintf(buf + len, buf_len - len, "hw_reaped = %u\n", in htt_print_tx_pdev_stats_cmn_tlv()
178 len += scnprintf(buf + len, buf_len - len, "underrun = %u\n", in htt_print_tx_pdev_stats_cmn_tlv()
180 len += scnprintf(buf + len, buf_len - len, "hw_paused = %u\n", in htt_print_tx_pdev_stats_cmn_tlv()
182 len += scnprintf(buf + len, buf_len - len, "hw_flush = %u\n", in htt_print_tx_pdev_stats_cmn_tlv()
[all …]
H A Ddebugfs_sta.c26 u32 i, len = offset, max = max_bw * max_gi * max_mcs; in ath12k_dbg_sta_dump_rate_stats() local
29 len += scnprintf(buf + len, size - len, "\nEHT stats:\n"); in ath12k_dbg_sta_dump_rate_stats()
31 len += scnprintf(buf + len, size - len, in ath12k_dbg_sta_dump_rate_stats()
35 len += scnprintf(buf + len, size - len, "\nHE stats:\n"); in ath12k_dbg_sta_dump_rate_stats()
37 len += scnprintf(buf + len, size - len, in ath12k_dbg_sta_dump_rate_stats()
41 len += scnprintf(buf + len, size - len, "\nVHT stats:\n"); in ath12k_dbg_sta_dump_rate_stats()
43 len += scnprintf(buf + len, size - len, in ath12k_dbg_sta_dump_rate_stats()
47 len += scnprintf(buf + len, size - len, "\nHT stats:\n"); in ath12k_dbg_sta_dump_rate_stats()
49 len += scnprintf(buf + len, size - len, in ath12k_dbg_sta_dump_rate_stats()
53 len += scnprintf(buf + len, size - len, "\nLegacy stats:\n"); in ath12k_dbg_sta_dump_rate_stats()
[all …]
H A Ddebugfs.c418 static int ath12k_tpc_fill_pream(struct ath12k *ar, char *buf, int buf_len, int len, in ath12k_tpc_fill_pream() argument
475 len += scnprintf(buf + len, buf_len - len, in ath12k_tpc_fill_pream()
481 len += scnprintf(buf + len, in ath12k_tpc_fill_pream()
482 buf_len - len, in ath12k_tpc_fill_pream()
492 len += scnprintf(buf + len, in ath12k_tpc_fill_pream()
493 buf_len - len, "\tNA"); in ath12k_tpc_fill_pream()
495 len += scnprintf(buf + len, in ath12k_tpc_fill_pream()
496 buf_len - len, "\t%d", in ath12k_tpc_fill_pream()
501 len += scnprintf(buf + len, buf_len - len, "\n"); in ath12k_tpc_fill_pream()
509 return len; in ath12k_tpc_fill_pream()
[all …]
/linux/tools/testing/selftests/net/
H A Dproc_net_pktgen.c116 ssize_t len; in FIXTURE_SETUP() local
127 len = write(self->thr_fd, thr_cmd_add_loopback_0, sizeof(thr_cmd_add_loopback_0)); in FIXTURE_SETUP()
128 ASSERT_EQ(len, sizeof(thr_cmd_add_loopback_0)) TH_LOG("device lo@0 already registered?"); in FIXTURE_SETUP()
136 ssize_t len; in FIXTURE_TEARDOWN() local
141 len = write(self->thr_fd, thr_cmd_rm_loopback_0, sizeof(thr_cmd_rm_loopback_0)); in FIXTURE_TEARDOWN()
142 EXPECT_EQ(len, sizeof(thr_cmd_rm_loopback_0)); in FIXTURE_TEARDOWN()
153 ssize_t len; in TEST_F() local
155 len = write(self->ctrl_fd, wrong_ctrl_cmd, i); in TEST_F()
156 EXPECT_EQ(len, -1); in TEST_F()
162 ssize_t len; in TEST_F() local
[all …]
/linux/drivers/net/wireless/ath/ath5k/
H A Ddebug.c180 unsigned int len = 0; in read_file_beacon() local
185 len += scnprintf(buf + len, sizeof(buf) - len, in read_file_beacon()
190 len += scnprintf(buf + len, sizeof(buf) - len, "%-24s0x%08x\n", in read_file_beacon()
193 len += scnprintf(buf + len, sizeof(buf) - len, "%-24s0x%08x\n\n", in read_file_beacon()
197 len += scnprintf(buf + len, sizeof(buf) - len, "%-24s0x%08x\tTU: %08x\n", in read_file_beacon()
201 len += scnprintf(buf + len, sizeof(buf) - len, "%-24s0x%08x\tTU: %08x\n", in read_file_beacon()
205 len += scnprintf(buf + len, sizeof(buf) - len, "%-24s0x%08x\tTU: %08x\n", in read_file_beacon()
209 len += scnprintf(buf + len, sizeof(buf) - len, "%-24s0x%08x\tTU: %08x\n", in read_file_beacon()
213 len += scnprintf(buf + len, sizeof(buf) - len, in read_file_beacon()
217 if (len > sizeof(buf)) in read_file_beacon()
[all …]
/linux/drivers/net/wireless/ath/ath9k/
H A Dhtc_drv_debug.c25 unsigned int len = 0; in read_file_tgt_int_stats() local
40 len += scnprintf(buf + len, sizeof(buf) - len, in read_file_tgt_int_stats()
44 len += scnprintf(buf + len, sizeof(buf) - len, in read_file_tgt_int_stats()
48 len += scnprintf(buf + len, sizeof(buf) - len, in read_file_tgt_int_stats()
52 len += scnprintf(buf + len, sizeof(buf) - len, in read_file_tgt_int_stats()
56 len += scnprintf(buf + len, sizeof(buf) - len, in read_file_tgt_int_stats()
60 len += scnprintf(buf + len, sizeof(buf) - len, in read_file_tgt_int_stats()
64 if (len > sizeof(buf)) in read_file_tgt_int_stats()
65 len = sizeof(buf); in read_file_tgt_int_stats()
67 return simple_read_from_buffer(user_buf, count, ppos, buf, len); in read_file_tgt_int_stats()
[all …]
/linux/lib/
H A Dkfifo.c91 unsigned int len, unsigned int off) in kfifo_copy_in()
101 len *= esize; in kfifo_copy_in()
103 l = min(len, size - off); in kfifo_copy_in()
106 memcpy(fifo->data, src + l, len - l); in kfifo_copy_in()
115 const void *buf, unsigned int len) in __kfifo_in()
120 if (len > l) in __kfifo_in()
121 len = l; in __kfifo_in()
123 kfifo_copy_in(fifo, buf, len, fifo->in); in __kfifo_in()
124 fifo->in += len; in __kfifo_in()
125 return len; in __kfifo_in()
90 kfifo_copy_in(struct __kfifo * fifo,const void * src,unsigned int len,unsigned int off) kfifo_copy_in() argument
114 __kfifo_in(struct __kfifo * fifo,const void * buf,unsigned int len) __kfifo_in() argument
129 kfifo_copy_out(struct __kfifo * fifo,void * dst,unsigned int len,unsigned int off) kfifo_copy_out() argument
153 __kfifo_out_peek(struct __kfifo * fifo,void * buf,unsigned int len) __kfifo_out_peek() argument
167 __kfifo_out(struct __kfifo * fifo,void * buf,unsigned int len) __kfifo_out() argument
176 kfifo_copy_from_user(struct __kfifo * fifo,const void __user * from,unsigned int len,unsigned int off,unsigned int * copied) kfifo_copy_from_user() argument
211 __kfifo_from_user(struct __kfifo * fifo,const void __user * from,unsigned long len,unsigned int * copied) __kfifo_from_user() argument
237 kfifo_copy_to_user(struct __kfifo * fifo,void __user * to,unsigned int len,unsigned int off,unsigned int * copied) kfifo_copy_to_user() argument
271 __kfifo_to_user(struct __kfifo * fifo,void __user * to,unsigned long len,unsigned int * copied) __kfifo_to_user() argument
296 setup_sgl_buf(struct scatterlist * sgl,void * buf,int nents,unsigned int len) setup_sgl_buf() argument
335 setup_sgl(struct __kfifo * fifo,struct scatterlist * sgl,int nents,unsigned int len,unsigned int off) setup_sgl() argument
357 __kfifo_dma_in_prepare(struct __kfifo * fifo,struct scatterlist * sgl,int nents,unsigned int len) __kfifo_dma_in_prepare() argument
370 __kfifo_dma_out_prepare(struct __kfifo * fifo,struct scatterlist * sgl,int nents,unsigned int len) __kfifo_dma_out_prepare() argument
382 __kfifo_max_r(unsigned int len,size_t recsize) __kfifo_max_r() argument
439 __kfifo_in_r(struct __kfifo * fifo,const void * buf,unsigned int len,size_t recsize) __kfifo_in_r() argument
453 kfifo_out_copy_r(struct __kfifo * fifo,void * buf,unsigned int len,size_t recsize,unsigned int * n) kfifo_out_copy_r() argument
465 __kfifo_out_peek_r(struct __kfifo * fifo,void * buf,unsigned int len,size_t recsize) __kfifo_out_peek_r() argument
477 __kfifo_out_r(struct __kfifo * fifo,void * buf,unsigned int len,size_t recsize) __kfifo_out_r() argument
500 __kfifo_from_user_r(struct __kfifo * fifo,const void __user * from,unsigned long len,unsigned int * copied,size_t recsize) __kfifo_from_user_r() argument
524 __kfifo_to_user_r(struct __kfifo * fifo,void __user * to,unsigned long len,unsigned int * copied,size_t recsize) __kfifo_to_user_r() argument
549 __kfifo_dma_in_prepare_r(struct __kfifo * fifo,struct scatterlist * sgl,int nents,unsigned int len,size_t recsize) __kfifo_dma_in_prepare_r() argument
563 __kfifo_dma_in_finish_r(struct __kfifo * fifo,unsigned int len,size_t recsize) __kfifo_dma_in_finish_r() argument
572 __kfifo_dma_out_prepare_r(struct __kfifo * fifo,struct scatterlist * sgl,int nents,unsigned int len,size_t recsize) __kfifo_dma_out_prepare_r() argument
587 unsigned int len; __kfifo_dma_out_finish_r() local
[all...]
/linux/drivers/net/wireless/ath/ath6kl/
H A Ddebug.c151 const void *buf, size_t len) in ath6kl_dbg_dump() argument
157 print_hex_dump_bytes(prefix, DUMP_PREFIX_OFFSET, buf, len); in ath6kl_dbg_dump()
162 buf, len); in ath6kl_dbg_dump()
305 unsigned int len = 0, buf_len = 1500; in read_file_war_stats() local
312 len += scnprintf(buf + len, buf_len - len, "\n"); in read_file_war_stats()
313 len += scnprintf(buf + len, buf_len - len, "%25s\n", in read_file_war_stats()
315 len += scnprintf(buf + len, buf_len - len, "%25s\n\n", in read_file_war_stats()
317 len += scnprintf(buf + len, buf_len - len, "%20s %10u\n", in read_file_war_stats()
320 if (WARN_ON(len > buf_len)) in read_file_war_stats()
321 len = buf_len; in read_file_war_stats()
[all …]
/linux/drivers/net/wireless/ath/ath10k/
H A Ddebugfs_sta.c185 int len = 0; in ath10k_dbg_sta_read_aggr_mode() local
188 len = scnprintf(buf, sizeof(buf) - len, "aggregation mode: %s\n", in ath10k_dbg_sta_read_aggr_mode()
193 return simple_read_from_buffer(user_buf, count, ppos, buf, len); in ath10k_dbg_sta_read_aggr_mode()
400 int len = 0; in ath10k_dbg_sta_read_peer_debug_trigger() local
403 len = scnprintf(buf, sizeof(buf) - len, in ath10k_dbg_sta_read_peer_debug_trigger()
407 return simple_read_from_buffer(user_buf, count, ppos, buf, len); in ath10k_dbg_sta_read_peer_debug_trigger()
462 int len = 0; in ath10k_dbg_sta_read_peer_ps_state() local
466 len = scnprintf(buf, sizeof(buf) - len, "%d\n", in ath10k_dbg_sta_read_peer_ps_state()
471 return simple_read_from_buffer(user_buf, count, ppos, buf, len); in ath10k_dbg_sta_read_peer_ps_state()
548 len += scnprintf(buf + len, buf_len - len, \
[all …]
/linux/drivers/pnp/pnpbios/
H A Drsparser.c57 int start, int len) in pnpbios_parse_allocated_ioresource() argument
60 int end = start + len - 1; in pnpbios_parse_allocated_ioresource()
62 if (len <= 0 || end >= 0x10003) in pnpbios_parse_allocated_ioresource()
69 int start, int len) in pnpbios_parse_allocated_memresource() argument
72 int end = start + len - 1; in pnpbios_parse_allocated_memresource()
74 if (len <= 0) in pnpbios_parse_allocated_memresource()
84 unsigned int len, tag; in pnpbios_parse_allocated_resource_data() local
98 len = (p[2] << 8) | p[1]; in pnpbios_parse_allocated_resource_data()
101 len = p[0] & 0x07; in pnpbios_parse_allocated_resource_data()
108 if (len != 9) in pnpbios_parse_allocated_resource_data()
[all …]
/linux/tools/include/nolibc/
H A Dstring.h16 static void *malloc(size_t len);
38 void *memmove(void *dst, const void *src, size_t len);
40 void *memmove(void *dst, const void *src, size_t len) in memmove() argument
44 pos = len; in memmove()
52 while (len) { in memmove()
55 len--; in memmove()
63 void *memcpy(void *dst, const void *src, size_t len);
65 void *memcpy(void *dst, const void *src, size_t len) in memcpy() argument
69 while (pos < len) { in memcpy()
81 void *memset(void *dst, int b, size_t len);
[all …]
/linux/scripts/dtc/
H A Ddata.c36 while ((d.len + xlen) > newsize) in data_grow_for()
44 struct data data_copy_mem(const char *mem, int len) in data_copy_mem() argument
48 d = data_grow_for(empty_data, len); in data_copy_mem()
50 d.len = len; in data_copy_mem()
51 memcpy(d.val, mem, len); in data_copy_mem()
56 struct data data_copy_escape_string(const char *s, int len) in data_copy_escape_string() argument
63 d = data_grow_for(d, len + 1); in data_copy_escape_string()
66 while (i < len) { in data_copy_escape_string()
72 q[d.len in data_copy_escape_string()
107 data_append_data(struct data d,const void * p,int len) data_append_data() argument
116 data_insert_at_marker(struct data d,struct marker * m,const void * p,int len) data_insert_at_marker() argument
212 data_append_zeroes(struct data d,int len) data_append_zeroes() argument
243 int len = d.len; data_is_one_string() local
[all...]
/linux/net/sunrpc/
H A Dxdr.c31 unsigned int quadlen = XDR_QUADLEN(obj->len); in xdr_encode_netobj()
34 *p++ = cpu_to_be32(obj->len); in xdr_encode_netobj()
35 memcpy(p, obj->data, obj->len); in xdr_encode_netobj()
36 return p + XDR_QUADLEN(obj->len); in xdr_encode_netobj()
95 * @len: length of string, in bytes
98 void xdr_terminate_string(const struct xdr_buf *buf, const u32 len) in xdr_terminate_string() argument
103 kaddr[buf->page_base + len] = '\0'; in xdr_terminate_string()
160 unsigned int offset, len, remaining; in xdr_buf_to_bvec() local
166 len = min_t(unsigned int, remaining, in xdr_buf_to_bvec()
168 bvec_set_page(bvec++, *pages++, len, offset); in xdr_buf_to_bvec()
[all …]
/linux/tools/testing/selftests/bpf/progs/
H A Dtest_varlen.c47 long len; in handler64_unsigned() local
53 len = bpf_probe_read_kernel_str(payload, MAX_LEN, &buf_in1[0]); in handler64_unsigned()
54 if (len >= 0) { in handler64_unsigned()
55 payload += len; in handler64_unsigned()
56 payload1_len1 = len; in handler64_unsigned()
59 len = bpf_probe_read_kernel_str(payload, MAX_LEN, &buf_in2[0]); in handler64_unsigned()
60 if (len >= 0) { in handler64_unsigned()
61 payload += len; in handler64_unsigned()
62 payload1_len2 = len; in handler64_unsigned()
77 long len; in handler64_signed() local
[all …]
/linux/lib/crc/arm64/
H A Dcrc32.h11 asmlinkage u32 crc32_le_arm64(u32 crc, unsigned char const *p, size_t len);
12 asmlinkage u32 crc32c_le_arm64(u32 crc, unsigned char const *p, size_t len);
13 asmlinkage u32 crc32_be_arm64(u32 crc, unsigned char const *p, size_t len);
15 asmlinkage u32 crc32_le_arm64_4way(u32 crc, unsigned char const *p, size_t len);
16 asmlinkage u32 crc32c_le_arm64_4way(u32 crc, unsigned char const *p, size_t len);
17 asmlinkage u32 crc32_be_arm64_4way(u32 crc, unsigned char const *p, size_t len);
19 static inline u32 crc32_le_arch(u32 crc, const u8 *p, size_t len) in crc32_le_arch() argument
22 return crc32_le_base(crc, p, len); in crc32_le_arch()
24 if (len >= min_len && cpu_have_named_feature(PMULL) && in crc32_le_arch()
27 crc = crc32_le_arm64_4way(crc, p, len); in crc32_le_arch()
[all …]
/linux/tools/testing/selftests/net/af_unix/
H A Dtest_unix_oob.c
/linux/arch/arc/net/
H A Dbpf_jit_arcv2.c1315 u8 len = 0; in mov_r32() local
1319 len = arc_sexb_r(buf, REG_LO(rd), REG_LO(rs)); in mov_r32()
1321 len = arc_sexh_r(buf, REG_LO(rd), REG_LO(rs)); in mov_r32()
1323 len = arc_mov_r(buf, REG_LO(rd), REG_LO(rs)); in mov_r32()
1325 return len; in mov_r32()
1331 len = arc_mov_r(buf, REG_LO(rd), REG_LO(rs)); in mov_r32()
1333 return len; in mov_r32()
1343 u8 len = 0; in mov_r64() local
1347 len = mov_r32(buf, rd, rs, sign_ext); in mov_r64()
1351 len += arc_asri_r(BUF(buf, len), in mov_r64()
[all …]
/linux/drivers/s390/char/
H A Dhmcdrv_cache.c26 * @len: size of @content cache (0 if caching disabled)
43 size_t len; member
51 .len = 0,
65 ssize_t len; in hmcdrv_cache_get() local
81 len = hmcdrv_cache_file.fsize - ftp->ofs; in hmcdrv_cache_get()
83 if (len > ftp->len) in hmcdrv_cache_get()
84 len = ftp->len; in hmcdrv_cache_get()
92 ((pos + len) <= hmcdrv_cache_file.len)) { in hmcdrv_cache_get()
96 len); in hmcdrv_cache_get()
98 hmcdrv_cache_file.fname, len, in hmcdrv_cache_get()
[all …]
/linux/arch/arm64/kvm/vgic/
H A Dvgic-mmio.h10 unsigned int len; member
15 unsigned int len);
17 gpa_t addr, unsigned int len);
21 unsigned int len, unsigned long val);
23 gpa_t addr, unsigned int len,
27 unsigned int len);
30 unsigned int len, unsigned long val);
32 gpa_t addr, unsigned int len,
71 .len = bpi * 1024 / 8, \
83 .len = length, \
[all …]
/linux/net/dccp/
H A Doptions.c
/linux/drivers/iio/imu/bno055/
H A Dbno055_ser_trace.h12 TP_PROTO(int len, const u8 *data),
13 TP_ARGS(len, data),
15 __field(int, len)
16 __dynamic_array(u8, chunk, len)
19 __entry->len = len;
21 data, __entry->len);
23 TP_printk("len: %d, data: = %*ph",
24 __entry->len, __entry->len, __get_dynamic_array(chunk)
64 TP_PROTO(int addr, size_t len),
65 TP_ARGS(addr, len),
[all …]
/linux/net/wireless/tests/
H A Dscan.c21 u8 len; member
40 { .id = WLAN_EID_EXTENSION, .len = 255,
44 { .id = WLAN_EID_SSID, .len = 2 },
47 { .id = WLAN_EID_SSID, .len = 2 },
51 .desc = "fragments are ignored if previous len not 255",
53 { .id = WLAN_EID_REDUCED_NEIGHBOR_REPORT, .len = 254, },
54 { .id = WLAN_EID_FRAGMENT, .len = 125, },
57 { .id = WLAN_EID_SSID, .len = 2 },
58 { .id = WLAN_EID_FRAGMENT, .len = 125, },
61 { .id = WLAN_EID_REDUCED_NEIGHBOR_REPORT, .len = 254, },
[all …]
/linux/drivers/pnp/
H A Dsupport.c107 int len = 0, i; in dbg_pnp_show_option() local
114 len += scnprintf(buf + len, sizeof(buf) - len, in dbg_pnp_show_option()
119 len += scnprintf(buf + len, sizeof(buf) - len, in dbg_pnp_show_option()
125 len += scnprintf(buf + len, sizeof(buf) - len, "io min %#llx " in dbg_pnp_show_option()
134 len += scnprintf(buf + len, sizeof(buf) - len, "mem min %#llx " in dbg_pnp_show_option()
143 len += scnprintf(buf + len, sizeof(buf) - len, "irq"); in dbg_pnp_show_option()
145 len += scnprintf(buf + len, sizeof(buf) - len, in dbg_pnp_show_option()
150 len += scnprintf(buf + len, in dbg_pnp_show_option()
151 sizeof(buf) - len, in dbg_pnp_show_option()
154 len += scnprintf(buf + len, sizeof(buf) - len, " flags %#x", in dbg_pnp_show_option()
[all …]

12345678910>>...181