Home
last modified time | relevance | path

Searched full:extra (Results 1 – 25 of 2178) sorted by relevance

12345678910>>...88

/linux/include/net/
H A Dcfg80211-wext.h22 union iwreq_data *wrqu, char *extra);
24 union iwreq_data *wrqu, char *extra);
26 union iwreq_data *wrqu, char *extra);
29 union iwreq_data *wrqu, char *extra);
32 union iwreq_data *wrqu, char *extra);
35 union iwreq_data *wrqu, char *extra);
38 union iwreq_data *wrqu, char *extra);
41 union iwreq_data *wrqu, char *extra);
44 union iwreq_data *wrqu, char *extra);
47 union iwreq_data *wrqu, char *extra);
[all …]
H A Dbond_options.h90 * copy the data to extra storage
99 char extra[BOND_OPT_EXTRA_MAXLEN];
143 void *extra, size_t extra_len) in __bond_opt_init()
152 if (extra && extra_len <= BOND_OPT_EXTRA_MAXLEN) in __bond_opt_init()
153 memcpy(optval->extra, extra, extra_len); in __bond_opt_init()
157 #define bond_opt_initextra(optval, extra, extra_len) \
158 __bond_opt_init(optval, NULL, ULLONG_MAX, extra, extra_len)
98 char extra[BOND_OPT_EXTRA_MAXLEN]; global() member
142 __bond_opt_init(struct bond_opt_value * optval,char * string,u64 value,void * extra,size_t extra_len) __bond_opt_init() argument
156 bond_opt_initextra(optval,extra,extra_len) global() argument
/linux/tools/perf/util/
H A Dprint_binary.c8 void *extra, FILE *fp) in binary__fprintf() argument
19 printed += printer(BINARY_PRINT_DATA_BEGIN, 0, extra, fp); in binary__fprintf()
22 printed += printer(BINARY_PRINT_LINE_BEGIN, -1, extra, fp); in binary__fprintf()
23 printed += printer(BINARY_PRINT_ADDR, i, extra, fp); in binary__fprintf()
26 printed += printer(BINARY_PRINT_NUM_DATA, data[i], extra, fp); in binary__fprintf()
30 printed += printer(BINARY_PRINT_NUM_PAD, -1, extra, fp); in binary__fprintf()
32 printer(BINARY_PRINT_SEP, i, extra, fp); in binary__fprintf()
34 printed += printer(BINARY_PRINT_CHAR_DATA, data[j], extra, fp); in binary__fprintf()
36 printed += printer(BINARY_PRINT_CHAR_PAD, i, extra, fp); in binary__fprintf()
37 printed += printer(BINARY_PRINT_LINE_END, -1, extra, fp); in binary__fprintf()
[all …]
H A Dprint_binary.h22 unsigned int val, void *extra, FILE *fp);
26 void *extra, FILE *fp);
30 void *extra) in print_binary() argument
32 binary__fprintf(data, len, bytes_per_line, printer, extra, stdout); in print_binary()
/linux/fs/ext4/
H A Dinode-test.c43 "1901-12-13 Lower bound of 32bit < 0 timestamp, no extra bits"
45 "1969-12-31 Upper bound of 32bit < 0 timestamp, no extra bits"
47 "1970-01-01 Lower bound of 32bit >=0 timestamp, no extra bits"
49 "2038-01-19 Upper bound of 32bit >=0 timestamp, no extra bits"
51 "2038-01-19 Lower bound of 32bit <0 timestamp, lo extra sec bit on"
53 "2106-02-07 Upper bound of 32bit <0 timestamp, lo extra sec bit on"
55 "2106-02-07 Lower bound of 32bit >=0 timestamp, lo extra sec bit on"
57 "2174-02-25 Upper bound of 32bit >=0 timestamp, lo extra sec bit on"
59 "2174-02-25 Lower bound of 32bit <0 timestamp, hi extra sec bit on"
61 "2242-03-16 Upper bound of 32bit <0 timestamp, hi extra sec bit on"
[all …]
/linux/tools/testing/selftests/arm64/signal/testcases/
H A Dtestcases.c9 bool validate_extra_context(struct extra_context *extra, char **err, in validate_extra_context() argument
14 if (!extra || !err) in validate_extra_context()
17 fprintf(stderr, "Validating EXTRA...\n"); in validate_extra_context()
18 term = GET_RESV_NEXT_HEAD(&extra->head); in validate_extra_context()
20 *err = "Missing terminator after EXTRA context"; in validate_extra_context()
23 if (extra->datap & 0x0fUL) in validate_extra_context()
24 *err = "Extra DATAP misaligned"; in validate_extra_context()
25 else if (extra->size & 0x0fUL) in validate_extra_context()
26 *err = "Extra SIZE misaligned"; in validate_extra_context()
27 else if (extra->datap != (uint64_t)term + 0x10UL) in validate_extra_context()
[all …]
/linux/drivers/net/xen-netback/
H A Drx.c273 struct xen_netif_extra_info *extra; in xenvif_rx_next_skb() local
275 extra = &pkt->extras[XEN_NETIF_EXTRA_TYPE_GSO - 1]; in xenvif_rx_next_skb()
277 extra->u.gso.type = gso_type; in xenvif_rx_next_skb()
278 extra->u.gso.size = skb_shinfo(skb)->gso_size; in xenvif_rx_next_skb()
279 extra->u.gso.pad = 0; in xenvif_rx_next_skb()
280 extra->u.gso.features = 0; in xenvif_rx_next_skb()
281 extra->type = XEN_NETIF_EXTRA_TYPE_GSO; in xenvif_rx_next_skb()
282 extra->flags = 0; in xenvif_rx_next_skb()
288 struct xen_netif_extra_info *extra; in xenvif_rx_next_skb() local
290 extra = &pkt->extras[XEN_NETIF_EXTRA_TYPE_XDP - 1]; in xenvif_rx_next_skb()
[all …]
/linux/net/wireless/
H A Dwext-priv.c19 char * extra) in iw_handler_get_private() argument
39 memcpy(extra, dev->wireless_handlers->private_args, in iw_handler_get_private()
142 char *extra; in ioctl_private_iw_point() local
155 extra = kzalloc(extra_size, GFP_KERNEL); in ioctl_private_iw_point()
156 if (!extra) in ioctl_private_iw_point()
159 /* If it is a SET, get all the extra data in here */ in ioctl_private_iw_point()
161 if (copy_from_user(extra, iwp->pointer, extra_size)) { in ioctl_private_iw_point()
168 err = handler(dev, info, (union iwreq_data *) iwp, extra); in ioctl_private_iw_point()
178 if (copy_to_user(iwp->pointer, extra, extra_size)) in ioctl_private_iw_point()
183 kfree(extra); in ioctl_private_iw_point()
[all …]
H A Dwext-compat.c28 union iwreq_data *wrqu, char *extra) in cfg80211_wext_giwname() argument
35 union iwreq_data *wrqu, char *extra) in cfg80211_wext_siwmode() argument
70 union iwreq_data *wrqu, char *extra) in cfg80211_wext_giwmode() argument
107 union iwreq_data *wrqu, char *extra) in cfg80211_wext_giwrange() argument
111 struct iw_range *range = (struct iw_range *) extra; in cfg80211_wext_giwrange()
250 union iwreq_data *wrqu, char *extra) in cfg80211_wext_siwrts() argument
274 union iwreq_data *wrqu, char *extra) in cfg80211_wext_giwrts() argument
288 union iwreq_data *wrqu, char *extra) in cfg80211_wext_siwfrag() argument
315 union iwreq_data *wrqu, char *extra) in cfg80211_wext_giwfrag() argument
329 union iwreq_data *wrqu, char *extra) in cfg80211_wext_siwretry() argument
[all …]
H A Dwext-core.c455 const char * extra) in wireless_send_event() argument
478 * for compat, due to being contained in 'extra', but normally in wireless_send_event()
483 if (WARN_ON(cmd == SIOCGIWSCAN && extra)) in wireless_send_event()
484 extra = NULL; in wireless_send_event()
510 /* Check extra parameters and set extra_len */ in wireless_send_event()
523 /* Calculate extra_len - extra is NULL for restricted events */ in wireless_send_event()
524 if (extra != NULL) in wireless_send_event()
549 * | extra data ... in wireless_send_event()
582 memcpy(((char *) event) + hdr_len, extra, extra_len); in wireless_send_event()
625 extra, extra_len); in wireless_send_event()
[all …]
/linux/fs/ubifs/
H A Ddebug.h53 * @chk_gen: if general extra checks are enabled
55 * @chk_orph: if orphans extra checks are enabled
56 * @chk_lprops: if lprops extra checks are enabled
57 * @chk_fs: if UBIFS contents extra checks are enabled
65 * @dfs_chk_gen: debugfs knob to enable UBIFS general extra checks
66 * @dfs_chk_index: debugfs knob to enable UBIFS index extra checks
67 * @dfs_chk_orph: debugfs knob to enable UBIFS orphans extra checks
68 * @dfs_chk_lprops: debugfs knob to enable UBIFS LEP properties extra checks
69 * @dfs_chk_fs: debugfs knob to enable UBIFS contents extra checks
124 * @chk_gen: if general extra checks are enabled
[all …]
/linux/lib/zlib_inflate/
H A Dinflate.h21 OS, /* i: waiting for extra flags and operating system (gzip) */
22 EXLEN, /* i: waiting for extra length (gzip) */
23 EXTRA, /* i: waiting for extra bytes (gzip) */ enumerator
37 LENEXT, /* i: waiting for length extra bits */
39 DISTEXT, /* i: waiting for distance extra bits */
57 (gzip) -> FLAGS -> TIME -> OS -> EXLEN -> EXTRA -> NAME
97 unsigned extra; /* extra bits needed */ member
/linux/net/xfrm/
H A Dxfrm_ipcomp.c50 struct ipcomp_req_extra *extra; in ipcomp_post_acomp() local
57 extra = acomp_request_extra(req); in ipcomp_post_acomp()
58 dsg = extra->sg; in ipcomp_post_acomp()
120 struct ipcomp_req_extra *extra; in ipcomp_setup_req() local
162 tfm, sizeof(*extra) + sizeof(*sg) * (nfrags + dnfrags), in ipcomp_setup_req()
168 extra = acomp_request_extra(req); in ipcomp_setup_req()
169 extra->x = x; in ipcomp_setup_req()
171 dsg = extra->sg; in ipcomp_setup_req()
261 struct ipcomp_req_extra *extra; in ipcomp_output_done() local
266 extra = acomp_request_extra(req); in ipcomp_output_done()
[all …]
/linux/net/dsa/
H A Dtag_dsa.c130 u8 extra) in dsa_xmit_ll() argument
166 if (extra) { in dsa_xmit_ll()
167 skb_push(skb, extra); in dsa_xmit_ll()
168 dsa_alloc_etype_header(skb, extra); in dsa_xmit_ll()
172 dsa_header = dsa_etype_header_pos_tx(skb) + extra; in dsa_xmit_ll()
186 skb_push(skb, DSA_HLEN + extra); in dsa_xmit_ll()
187 dsa_alloc_etype_header(skb, DSA_HLEN + extra); in dsa_xmit_ll()
190 dsa_header = dsa_etype_header_pos_tx(skb) + extra; in dsa_xmit_ll()
202 u8 extra) in dsa_rcv_ll() argument
287 * tag, and delete the ethertype (extra) if applicable. If the in dsa_rcv_ll()
[all …]
/linux/drivers/media/i2c/s5c73m3/
H A Ds5c73m3-spi.c67 u32 extra = len % tx_size; in s5c73m3_spi_write() local
81 if (extra > 0) { in s5c73m3_spi_write()
82 r = spi_xmit(spi_dev, (void *)addr + j, extra, SPI_DIR_TX); in s5c73m3_spi_write()
95 u32 extra = len % tx_size; in s5c73m3_spi_read() local
106 if (extra > 0) in s5c73m3_spi_read()
107 return spi_xmit(spi_dev, addr + j, extra, SPI_DIR_RX); in s5c73m3_spi_read()
/linux/drivers/usb/storage/
H A Duas-detect.h35 unsigned char *extra = endpoint[i].extra; in uas_find_endpoints() local
38 if (extra[1] == USB_DT_PIPE_USAGE) { in uas_find_endpoints()
39 unsigned pipe_id = extra[2]; in uas_find_endpoints()
44 len -= extra[0]; in uas_find_endpoints()
45 extra += extra[0]; in uas_find_endpoints()
H A Dene_ub6250.c111 #define MS_REG_ST1_EXER 0x08 /* error on extra(corrected) */
112 #define MS_REG_ST1_UCEX 0x04 /* unable to correct extra */
216 #define MS_REG_ST1_EXER 0x08 /* error on extra(corrected) */
481 static void ene_ub6250_info_destructor(void *extra) in ene_ub6250_info_destructor() argument
483 struct ene_ub6250_info *info = (struct ene_ub6250_info *) extra; in ene_ub6250_info_destructor()
485 if (!extra) in ene_ub6250_info_destructor()
572 struct ene_ub6250_info *info = (struct ene_ub6250_info *) us->extra; in do_scsi_request_sense()
600 struct ene_ub6250_info *info = (struct ene_ub6250_info *) us->extra; in sd_scsi_test_unit_ready()
614 struct ene_ub6250_info *info = (struct ene_ub6250_info *) us->extra; in sd_scsi_mode_sense()
638 struct ene_ub6250_info *info = (struct ene_ub6250_info *) us->extra; in sd_scsi_read_capacity()
[all …]
/linux/tools/testing/selftests/x86/
H A DMakefile115 define extra-files
120 $(eval $(call extra-files,sysret_ss_attrs_64,thunks.S))
121 $(eval $(call extra-files,ptrace_syscall_32,raw_syscall_helper_32.S))
122 $(eval $(call extra-files,test_syscall_vdso_32,thunks_32.S))
123 $(eval $(call extra-files,fsgsbase_restore_64,clang_helpers_64.S))
124 $(eval $(call extra-files,fsgsbase_restore_32,clang_helpers_32.S))
125 $(eval $(call extra-files,sysret_rip_64,clang_helpers_64.S))
/linux/arch/x86/include/asm/
H A Dbug.h57 #define _BUG_FLAGS_ASM(ins, file, line, flags, size, extra) \ argument
63 extra
65 #define _BUG_FLAGS(ins, flags, extra) \ argument
68 "%c1", "%c2", "%c3", extra) \
79 #define _BUG_FLAGS(ins, flags, extra) asm volatile(ins) argument
/linux/drivers/parport/
H A Ddaisy.c71 struct parport *extra = parport_register_port(real->base, in clone_parport() local
75 if (extra) { in clone_parport()
76 extra->portnum = real->portnum; in clone_parport()
77 extra->physport = real; in clone_parport()
78 extra->muxport = muxport; in clone_parport()
79 real->slaves[muxport-1] = extra; in clone_parport()
82 return extra; in clone_parport()
135 * parports for each extra port. */ in parport_daisy_init()
145 struct parport *extra = clone_parport(port, i); in parport_daisy_init() local
146 if (!extra) { in parport_daisy_init()
[all …]
/linux/Documentation/staging/
H A Dlzo.rst31 Optionally depending on the opcode and operands, extra data may follow. These
32 extra data can be a complement for the operand (eg: a length or a distance
42 rate of at most 255 per extra byte (thus the compression ratio cannot exceed
56 Certain encodings involve one extra byte, others involve two extra bytes
66 taken from the last two bits of an extra operand (eg: distance).
77 They just have to "refill" this credit if they consume extra bytes. This
117 state = 4 [ don't copy extra literals ]
130 state = 4 (no extra literals are copied)
/linux/drivers/input/mouse/
H A Dsermouse.c161 case 1: /* Extra mouse info */ in sermouse_process_ms()
231 unsigned char c = serio->id.extra; in sermouse_connect()
286 .extra = SERIO_ANY,
292 .extra = SERIO_ANY,
298 .extra = SERIO_ANY,
304 .extra = SERIO_ANY,
310 .extra = SERIO_ANY,
316 .extra = SERIO_ANY,
322 .extra = SERIO_ANY,
/linux/arch/um/drivers/
H A Dvirtio_pcidev.c92 const void *extra, unsigned int extra_size, in virtio_pcidev_send_cmd() argument
98 [1] = extra ? &extra_sg : &in_sg, in virtio_pcidev_send_cmd()
99 [2] = extra ? &in_sg : NULL, in virtio_pcidev_send_cmd()
131 if (posted && extra && extra_size > sizeof(buf) - cmd_size) { in virtio_pcidev_send_cmd()
132 dev->extra_ptrs[buf_idx] = kmemdup(extra, extra_size, in virtio_pcidev_send_cmd()
139 extra = dev->extra_ptrs[buf_idx]; in virtio_pcidev_send_cmd()
140 } else if (extra && extra_size <= sizeof(buf) - cmd_size) { in virtio_pcidev_send_cmd()
141 memcpy((u8 *)buf + cmd_size, extra, extra_size); in virtio_pcidev_send_cmd()
144 extra = NULL; in virtio_pcidev_send_cmd()
151 if (extra) in virtio_pcidev_send_cmd()
[all …]
/linux/drivers/gpu/drm/msm/disp/dpu1/
H A Ddpu_hw_util.h163 * @left_ftch: Number of extra pixels to overfetch from left
164 * @right_ftch: Number of extra pixels to overfetch from right
165 * @top_ftch: Number of extra lines to overfetch from top
166 * @btm_ftch: Number of extra lines to overfetch from bottom
167 * @left_rpt: Number of extra pixels to repeat from left
168 * @right_rpt: Number of extra pixels to repeat from right
169 * @top_rpt: Number of extra lines to repeat from top
170 * @btm_rpt: Number of extra lines to repeat from bottom
/linux/Documentation/bpf/
H A Dringbuf.rst48 with lookup/update/delete operations. This approach would add a lot of extra
96 ``bpf_ringbuf_output()`` has disadvantage of incurring extra memory copy,
102 ``bpf_ringbuf_reserve()`` avoids the extra copy of memory by providing a memory
104 than BPF stack space allows, so many programs have use extra per-CPU array as
109 due to extra memory copy, covers some use cases that are not suitable for
167 length of reserved record, as well as two extra bits: busy bit to denote that
199 will see new data anyways without needing an extra poll notification.
206 data availability, but require extra caution and diligence in using this API.

12345678910>>...88