Home
last modified time | relevance | path

Searched refs:what (Results 1 – 25 of 745) sorted by relevance

12345678910>>...30

/linux/drivers/usb/storage/
H A Ddebug.c43 char *what = NULL; in usb_stor_show_command() local
46 case TEST_UNIT_READY: what = "TEST_UNIT_READY"; break; in usb_stor_show_command()
47 case REZERO_UNIT: what = "REZERO_UNIT"; break; in usb_stor_show_command()
48 case REQUEST_SENSE: what = "REQUEST_SENSE"; break; in usb_stor_show_command()
49 case FORMAT_UNIT: what = "FORMAT_UNIT"; break; in usb_stor_show_command()
50 case READ_BLOCK_LIMITS: what = "READ_BLOCK_LIMITS"; break; in usb_stor_show_command()
51 case REASSIGN_BLOCKS: what = "REASSIGN_BLOCKS"; break; in usb_stor_show_command()
52 case READ_6: what = "READ_6"; break; in usb_stor_show_command()
53 case WRITE_6: what = "WRITE_6"; break; in usb_stor_show_command()
54 case SEEK_6: what = "SEEK_6"; break; in usb_stor_show_command()
[all …]
/linux/tools/testing/selftests/net/forwarding/
H A Dmirror_gre_lib.sh44 local what=$1; shift
55 log_test "$direction $what"
65 local what=$1; shift
84 log_test "$direction $what"
110 local what=$1; shift
113 "$backward_type" "$what" 192.0.2.1 192.0.2.2
123 local what=$1; shift
127 "$what" 192.0.2.1 192.0.2.2
134 local what=$1; shift
158 log_test "$what: STP state"
[all …]
H A Dmirror_gre_changes.sh71 local what=$1; shift
90 log_test "$what: TTL change"
96 local what=$1; shift
109 log_test "$what: tunnel down/up"
116 local what=$1; shift
133 log_test "$what: egress down/up"
142 local what=$1; shift
154 log_test "$what: remote address change"
164 local what=$1; shift
183 log_test "$what: tunnel deleted"
[all …]
H A Dmirror_gre_vlan_bridge_1q.sh130 local what=$1; shift
132 full_test_span_gre_dir_vlan $tundev ingress "$vlan_match" 8 0 "$what"
133 full_test_span_gre_dir_vlan $tundev egress "$vlan_match" 0 8 "$what"
151 local what=$1; shift
170 log_test "$what: vlan forbidden at a bridge"
186 local what=$1; shift
205 log_test "$what: vlan forbidden at a bridge egress"
222 local what=$1; shift
249 log_test "$what: vlan untagged at a bridge egress"
265 local what
[all...]
H A Drouter_mpath_nh_lib.sh5 local what=$1; shift
48 log_test "NH stats test $what"
53 local what=$1; shift
59 nh_stats_do_test "$what" "$nh1_id" "$nh2_id" "$group_id" \
63 nh_stats_do_test "HW $what" "$nh1_id" "$nh2_id" "$group_id" \
70 local what=$1; shift
88 nh_stats_test_dispatch_swhw "$what" "$nh1_id" "$nh2_id" \
/linux/include/trace/events/
H A Dnetfs.h292 enum netfs_read_trace what),
294 TP_ARGS(rreq, start, len, what),
302 __field(enum netfs_read_trace, what)
312 __entry->what = what;
318 __print_symbolic(__entry->what, netfs_read_traces),
326 enum netfs_rreq_trace what),
328 TP_ARGS(rreq, what),
334 __field(enum netfs_rreq_trace, what)
341 __entry->what = what;
347 __print_symbolic(__entry->what, netfs_rreq_traces),
[all …]
/linux/tools/lib/python/abi/
H A Dabi_regex.py7 Convert ABI what into regular expressions
114 def regex_append(self, what, new):
148 self.log.debug("%s: mapped as %s", what, search_group) argument
156 if what.find(self.search_string) >= 0:
157 print(f"What: {what}")
160 " '%s'", what, new)
162 def get_regexes(self, what):
170 patches = what.split("/")
218 for what in v.get("what", [])
100 regex_append(self, what, new) global() argument
[all...]
H A Dabi_parser.py27 TAGS = r"(what|where|date|kernelversion|contact|description|users)"
82 def add_symbol(self, what, fname, ln=None, xref=None):
83 """Create a reference table describing where each 'what' is located."""
85 if what not in self.what_symbols:
86 self.what_symbols[what] = {"file": {}}
88 if fname not in self.what_symbols[what]["file"]:
89 self.what_symbols[what]["file"][fname] = []
91 if ln and ln not in self.what_symbols[what]["file"][fname]:
92 self.what_symbols[what]["file"][fname].append(ln)
95 self.what_symbols[what]["xre
79 add_symbol(self, what, fname, ln=None, xref=None) global() argument
[all...]
/linux/drivers/ata/
H A Dlibata-pata-timings.c75 struct ata_timing *m, unsigned int what) in ata_timing_merge() argument
77 if (what & ATA_TIMING_SETUP) in ata_timing_merge()
79 if (what & ATA_TIMING_ACT8B) in ata_timing_merge()
81 if (what & ATA_TIMING_REC8B) in ata_timing_merge()
83 if (what & ATA_TIMING_CYC8B) in ata_timing_merge()
85 if (what & ATA_TIMING_ACTIVE) in ata_timing_merge()
87 if (what & ATA_TIMING_RECOVER) in ata_timing_merge()
89 if (what & ATA_TIMING_DMACK_HOLD) in ata_timing_merge()
91 if (what & ATA_TIMING_CYCLE) in ata_timing_merge()
93 if (what & ATA_TIMING_UDMA) in ata_timing_merge()
/linux/drivers/block/drbd/
H A Ddrbd_req.h269 extern int __req_mod(struct drbd_request *req, enum drbd_req_event what,
275 extern void tl_restart(struct drbd_connection *connection, enum drbd_req_event what);
276 extern void _tl_restart(struct drbd_connection *connection, enum drbd_req_event what);
284 static inline int _req_mod(struct drbd_request *req, enum drbd_req_event what, in _req_mod() argument
292 rv = __req_mod(req, what, peer_device, &m); in _req_mod()
304 enum drbd_req_event what, in req_mod() argument
313 rv = __req_mod(req, what, peer_device, &m); in req_mod()
/linux/include/net/
H A Dinet_connection_sock.h204 static inline void inet_csk_clear_xmit_timer(struct sock *sk, const int what) in inet_csk_clear_xmit_timer() argument
208 if (what == ICSK_TIME_RETRANS || what == ICSK_TIME_PROBE0) { in inet_csk_clear_xmit_timer()
213 } else if (what == ICSK_TIME_DACK) { in inet_csk_clear_xmit_timer()
227 static inline void inet_csk_reset_xmit_timer(struct sock *sk, const int what, in inet_csk_reset_xmit_timer() argument
235 sk, what, when, (void *)_THIS_IP_); in inet_csk_reset_xmit_timer()
240 if (what == ICSK_TIME_RETRANS || what == ICSK_TIME_PROBE0 || in inet_csk_reset_xmit_timer()
241 what == ICSK_TIME_LOSS_PROBE || what == ICSK_TIME_REO_TIMEOUT) { in inet_csk_reset_xmit_timer()
242 smp_store_release(&icsk->icsk_pending, what); in inet_csk_reset_xmit_timer()
244 } else if (what == ICSK_TIME_DACK) { in inet_csk_reset_xmit_timer()
/linux/drivers/gpu/drm/amd/display/include/
H A Dvector.h74 const void *what,
88 const void *what,
115 type_t what, \
118 return dal_vector_insert_at(vector, what, position); \
144 type_t what, \
147 dal_vector_set_at_index(vector, what, index); \
/linux/kernel/trace/
H A Dblktrace.c67 sector_t sector, int bytes, u64 what, in record_blktrace_event() argument
83 t->action = lower_32_bits(what); in record_blktrace_event()
95 sector_t sector, int bytes, u64 what, in record_blktrace_event2() argument
105 t2->action = what; in record_blktrace_event2()
118 u64 what, int error, u64 cgid, in relay_blktrace_event1() argument
132 record_blktrace_event(t, pid, cpu, sector, bytes, what, bt->dev, error, in relay_blktrace_event1()
138 int bytes, u64 what, int error, u64 cgid, in relay_blktrace_event2() argument
152 record_blktrace_event2(t, pid, cpu, sector, bytes, what, bt->dev, error, in relay_blktrace_event2()
158 u64 what, int error, u64 cgid, in relay_blktrace_event() argument
163 bytes, what, error, cgid, cgid_len, in relay_blktrace_event()
[all …]
/linux/tools/testing/selftests/drivers/net/lib/py/
H A Dremote_ssh.py29 def deploy(self, what): argument
33 file_name = self._tmpdir + "/" + self._mktmp() + os.path.basename(what)
35 if not os.path.isabs(what):
36 what = os.path.abspath(self.dir_path + "/" + what)
H A Dremote_netns.py18 def deploy(self, what): argument
19 if os.path.isabs(what):
20 return what
21 return os.path.abspath(self.dir_path + "/" + what)
/linux/tools/testing/selftests/drivers/net/mlxsw/
H A Dqos_lib.sh7 local what=$1; shift
13 echo "$what $(humanize $ir) < $(humanize $min)" > /dev/stderr
22 local what=$1; shift
44 if check_rate $ir $min_ingress "$what ingress rate"; then
H A Dmirror_gre.sh123 local what=$1; shift
136 log_test "$what: no offload on TTL of inherit"
143 local what=$1; shift
155 log_test "$what: no offload on a fixed TOS"
161 local what=$1; shift
169 log_test "fail $what"
/linux/drivers/connector/
H A Dcn_proc.c53 __u32 what, exit_code, *ptr; in cn_filter() local
61 what = *ptr++; in cn_filter()
77 (what == PROC_EVENT_EXIT)) { in cn_filter()
82 if ((__u32)val & what) in cn_filter()
103 filter_data[0] = ((struct proc_event *)msg->data)->what; in send_msg()
131 ev->what = PROC_EVENT_FORK; in proc_fork_connector()
160 ev->what = PROC_EVENT_EXEC; in proc_exec_connector()
184 ev->what = which_id; in proc_id_connector()
222 ev->what = PROC_EVENT_SID; in proc_sid_connector()
246 ev->what = PROC_EVENT_PTRACE; in proc_ptrace_connector()
[all …]
/linux/fs/netfs/
H A Dobjects.c86 void netfs_get_request(struct netfs_io_request *rreq, enum netfs_rreq_ref_trace what) in netfs_get_request() argument
91 trace_netfs_rreq_ref(rreq->debug_id, r + 1, what); in netfs_get_request()
161 void netfs_put_request(struct netfs_io_request *rreq, enum netfs_rreq_ref_trace what) in netfs_put_request() argument
170 trace_netfs_rreq_ref(debug_id, r - 1, what); in netfs_put_request()
223 enum netfs_sreq_ref_trace what) in netfs_get_subrequest() argument
229 what); in netfs_get_subrequest()
245 enum netfs_sreq_ref_trace what) in netfs_put_subrequest() argument
253 trace_netfs_sreq_ref(debug_id, debug_index, r - 1, what); in netfs_put_subrequest()
/linux/security/lockdown/
H A Dlockdown.c59 static int lockdown_is_locked_down(enum lockdown_reason what) in lockdown_is_locked_down() argument
61 if (WARN(what >= LOCKDOWN_CONFIDENTIALITY_MAX, in lockdown_is_locked_down()
65 if (kernel_locked_down >= what) { in lockdown_is_locked_down()
66 if (lockdown_reasons[what]) in lockdown_is_locked_down()
68 current->comm, lockdown_reasons[what]); in lockdown_is_locked_down()
/linux/tools/testing/selftests/net/netfilter/
H A Dnft_flowtable.sh241 local what=$1
259 echo "FAIL: $what: original counter $orig_cnt exceeds expected value $max_orig, reply counter $repl_cnt" 1>&2
265 echo "FAIL: $what: reply counter $repl_cnt exceeds expected value $max_repl, original counter $orig_cnt" 1>&2
271 echo "PASS: $what"
277 local what=$1
291 local failmsg="FAIL: pmtu $pmtu: $what counters do not match, expected"
293 case "$what" in
329 echo "PASS: $what: dscp packet counters match"
337 local what=$3
340 echo "FAIL: file mismatch for $what"
[all...]
/linux/tools/testing/selftests/wireguard/qemu/
H A Dinit.c39 static void panic(const char *what) in panic() argument
41 …31m\x1b[1m%s: %s\x1b[0m\n\n\x1b[37m\x1b[44m\x1b[1mPower off...\x1b[0m\n\n", what, strerror(errno)); in panic()
203 int what = -1; in launch_tests() local
207 what = WEXITSTATUS(status); in launch_tests()
210 what = WTERMSIG(status); in launch_tests()
212 printf("\x1b[31m\x1b[1m[-] Tests failed with %s %d! \u2639\x1b[0m\n", why, what); in launch_tests()
/linux/tools/testing/selftests/net/
H A Dvlan_bridge_binding.sh121 local what=$1; shift
153 log_test "Test bridge_binding $what"
159 local what=$1; shift
161 do_test_binding "$inject" "$what" \
171 local what=$1; shift
173 do_test_binding "$inject" "$what" \
/linux/net/rxrpc/
H A Dtxbuf.c63 void rxrpc_see_txbuf(struct rxrpc_txbuf *txb, enum rxrpc_txbuf_trace what) in rxrpc_see_txbuf() argument
67 trace_rxrpc_txbuf(txb->debug_id, txb->call_debug_id, txb->seq, r, what); in rxrpc_see_txbuf()
80 void rxrpc_put_txbuf(struct rxrpc_txbuf *txb, enum rxrpc_txbuf_trace what) in rxrpc_put_txbuf() argument
92 trace_rxrpc_txbuf(debug_id, call_debug_id, seq, r - 1, what); in rxrpc_put_txbuf()
/linux/arch/riscv/
H A DKconfig.vendor16 If you don't know what to do here, say Y.
29 If you don't know what to do here, say Y.
42 If you don't know what to do here, say Y.
55 If you don't know what to do here, say Y.
68 If you don't know what to do here, say Y.

12345678910>>...30