Home
last modified time | relevance | path

Searched refs:stop (Results 1 – 25 of 1670) sorted by relevance

12345678910>>...67

/linux-6.6.21/include/trace/events/
Dmmc.h52 __entry->stop_opcode = mrq->stop ? mrq->stop->opcode : 0;
53 __entry->stop_arg = mrq->stop ? mrq->stop->arg : 0;
54 __entry->stop_flags = mrq->stop ? mrq->stop->flags : 0;
55 __entry->stop_retries = mrq->stop ? mrq->stop->retries : 0;
136 __entry->stop_opcode = mrq->stop ? mrq->stop->opcode : 0;
137 __entry->stop_err = mrq->stop ? mrq->stop->error : 0;
138 __entry->stop_resp[0] = mrq->stop ? mrq->stop->resp[0] : 0;
139 __entry->stop_resp[1] = mrq->stop ? mrq->stop->resp[1] : 0;
140 __entry->stop_resp[2] = mrq->stop ? mrq->stop->resp[2] : 0;
141 __entry->stop_resp[3] = mrq->stop ? mrq->stop->resp[3] : 0;
[all …]
Dintel_ifs.h21 __field( u8, stop )
27 __entry->stop = activate.stop;
34 __entry->stop,
/linux-6.6.21/drivers/scsi/aic7xxx/aicasm/
Daicasm_gram.y280 stop("Prefix multiply defined",
284 stop("Unable to record prefix", EX_SOFTWARE);
292 stop("Patch argument list multiply defined",
296 stop("Unable to record patch arg list", EX_SOFTWARE);
313 stop("Register multiply defined", EX_DATAERR);
392 stop("SCB or SRAM space exhausted", EX_DATAERR);
440 stop("Valid register modes range between 0 and 4.",
453 stop("Only \"const\" symbols allowed in "
458 stop("Valid register modes range between 0 and 4.",
535 stop("Re-definition of register alias",
[all …]
Daicasm_macro_gram.y92 stop("Too few arguments for macro invocation",
114 stop("Comma without preceding argument in arg list",
132 stop("Invalid current symbol for adding macro arg",
147 stop("Too many arguments for macro invocation", EX_DATAERR);
152 stop("Unable to replicate replacement text", EX_SOFTWARE);
160 stop(string, EX_DATAERR); in mmerror()
Daicasm.c162 stop("-d: Assembler not built with debugging " in main()
173 stop(NULL, EX_CANTCREAT); in main()
189 stop(NULL, EX_CANTCREAT); in main()
197 stop(NULL, EX_CANTCREAT); in main()
204 stop(NULL, EX_CANTCREAT); in main()
234 stop(NULL, EX_OSERR); in main()
239 stop(NULL, EX_OSERR); in main()
277 stop("Unterminated conditional expression", EX_DATAERR); in main()
302 stop(NULL, 0); in main()
337 stop(buf, EX_DATAERR); in back_patch()
[all …]
/linux-6.6.21/arch/powerpc/lib/
Dpmem.c13 static inline void __clean_pmem_range(unsigned long start, unsigned long stop) in __clean_pmem_range() argument
18 unsigned long size = stop - (unsigned long)addr + (bytes - 1); in __clean_pmem_range()
25 static inline void __flush_pmem_range(unsigned long start, unsigned long stop) in __flush_pmem_range() argument
30 unsigned long size = stop - (unsigned long)addr + (bytes - 1); in __flush_pmem_range()
37 static inline void clean_pmem_range(unsigned long start, unsigned long stop) in clean_pmem_range() argument
40 return __clean_pmem_range(start, stop); in clean_pmem_range()
43 static inline void flush_pmem_range(unsigned long start, unsigned long stop) in flush_pmem_range() argument
46 return __flush_pmem_range(start, stop); in flush_pmem_range()
/linux-6.6.21/arch/powerpc/include/asm/
Dcacheflush.h53 void flush_icache_range(unsigned long start, unsigned long stop);
70 static inline void flush_dcache_range(unsigned long start, unsigned long stop) in flush_dcache_range() argument
75 unsigned long size = stop - (unsigned long)addr + (bytes - 1); in flush_dcache_range()
92 static inline void clean_dcache_range(unsigned long start, unsigned long stop) in clean_dcache_range() argument
97 unsigned long size = stop - (unsigned long)addr + (bytes - 1); in clean_dcache_range()
111 unsigned long stop) in invalidate_dcache_range() argument
116 unsigned long size = stop - (unsigned long)addr + (bytes - 1); in invalidate_dcache_range()
/linux-6.6.21/kernel/
Dstatic_call_inline.c107 struct static_call_site *stop) in static_call_sort_entries() argument
109 sort(start, stop - start, sizeof(struct static_call_site), in static_call_sort_entries()
136 struct static_call_site *site, *stop; in __static_call_update() local
177 stop = __stop_static_call_sites; in __static_call_update()
181 stop = mod->static_call_sites + in __static_call_update()
188 site < stop && static_call_key(site) == key; site++) { in __static_call_update()
222 struct static_call_site *stop) in __static_call_init() argument
228 if (start == stop) in __static_call_init()
231 static_call_sort_entries(start, stop); in __static_call_init()
233 for (site = start; site < stop; site++) { in __static_call_init()
[all …]
/linux-6.6.21/tools/testing/selftests/bpf/prog_tests/
Dhtab_reuse.c12 bool stop; member
25 while (i++ < ctx->loop && !ctx->stop) { in htab_lookup_fn()
42 while (i++ < ctx->loop && !ctx->stop) { in htab_update_fn()
76 ctx.stop = false; in test_htab_reuse()
82 ctx.stop = true; in test_htab_reuse()
89 ctx.stop = true; in test_htab_reuse()
Dhtab_update.c12 bool stop; member
60 while (i++ < ctx->loop && !ctx->stop) { in htab_update_thread()
66 ctx->stop = true; in htab_update_thread()
88 ctx.stop = false; in test_concurrent_update()
100 ctx.stop = true; in test_concurrent_update()
Dsubprogs.c9 bool stop; member
18 while (!ctx->stop) { in toggle_jit_harden()
39 ctx.stop = false; in test_subprogs_with_jit_harden_toggling()
55 ctx.stop = true; in test_subprogs_with_jit_harden_toggling()
/linux-6.6.21/virt/lib/
Dirqbypass.c35 if (prod->stop) in __connect()
36 prod->stop(prod); in __connect()
37 if (cons->stop) in __connect()
38 cons->stop(cons); in __connect()
61 if (prod->stop) in __disconnect()
62 prod->stop(prod); in __disconnect()
63 if (cons->stop) in __disconnect()
64 cons->stop(cons); in __disconnect()
/linux-6.6.21/arch/arm/kernel/
Dunwind.c106 const struct unwind_idx *stop) in search_index() argument
111 __func__, addr, start, origin, stop); in search_index()
119 stop = origin; in search_index()
127 while (start < stop - 1) { in search_index()
128 const struct unwind_idx *mid = start + ((stop - start) >> 1); in search_index()
136 stop = mid; in search_index()
154 const struct unwind_idx *start, const struct unwind_idx *stop) in unwind_find_origin() argument
156 pr_debug("%s(%p, %p)\n", __func__, start, stop); in unwind_find_origin()
157 while (start < stop) { in unwind_find_origin()
158 const struct unwind_idx *mid = start + ((stop - start) >> 1); in unwind_find_origin()
[all …]
/linux-6.6.21/drivers/i2c/busses/
Di2c-hix5hd2.c85 int stop; member
189 if (priv->stop) { in hix5hd2_rw_handle_stop()
259 goto stop; in hix5hd2_i2c_irq()
265 goto stop; in hix5hd2_i2c_irq()
274 goto stop; in hix5hd2_i2c_irq()
285 stop: in hix5hd2_i2c_irq()
299 static void hix5hd2_i2c_message_start(struct hix5hd2_i2c_priv *priv, int stop) in hix5hd2_i2c_message_start() argument
315 struct i2c_msg *msgs, int stop) in hix5hd2_i2c_xfer_msg() argument
323 priv->stop = stop; in hix5hd2_i2c_xfer_msg()
328 hix5hd2_i2c_message_start(priv, stop); in hix5hd2_i2c_xfer_msg()
[all …]
/linux-6.6.21/lib/raid6/
Dneon.h4 void raid6_neon1_xor_syndrome_real(int disks, int start, int stop,
7 void raid6_neon2_xor_syndrome_real(int disks, int start, int stop,
10 void raid6_neon4_xor_syndrome_real(int disks, int start, int stop,
13 void raid6_neon8_xor_syndrome_real(int disks, int start, int stop,
/linux-6.6.21/kernel/power/
Dswap.c550 ktime_t stop; in save_image() local
575 stop = ktime_get(); in save_image()
580 swsusp_show_speed(start, stop, nr_to_write, "Wrote"); in save_image()
590 atomic_t stop; /* ready to stop flag */ member
612 atomic_set_release(&d->stop, 1); in crc32_threadfn()
621 atomic_set_release(&d->stop, 1); in crc32_threadfn()
632 atomic_t stop; /* ready to stop flag */ member
656 atomic_set_release(&d->stop, 1); in lzo_compress_threadfn()
665 atomic_set_release(&d->stop, 1); in lzo_compress_threadfn()
687 ktime_t stop; in save_image_lzo() local
[all …]
/linux-6.6.21/arch/powerpc/platforms/cell/spufs/
Dspu_restore_crt0.S96 stop SPU_RESTORE_COMPLETE
97 stop 0
98 stop 0
99 stop 0
/linux-6.6.21/drivers/video/fbdev/
Dep93xx-fb.c230 unsigned int vlines_total, hclks_total, start, stop; in ep93xxfb_set_timing() local
242 stop = vlines_total - info->var.vsync_len; in ep93xxfb_set_timing()
243 ep93xxfb_out_locked(fbi, start | (stop << 16), EP93XXFB_VSYNC); in ep93xxfb_set_timing()
246 stop = info->var.lower_margin - 1; in ep93xxfb_set_timing()
247 ep93xxfb_out_locked(fbi, start | (stop << 16), EP93XXFB_VBLANK); in ep93xxfb_set_timing()
248 ep93xxfb_out_locked(fbi, start | (stop << 16), EP93XXFB_VACTIVE); in ep93xxfb_set_timing()
251 stop = vlines_total + 1; in ep93xxfb_set_timing()
252 ep93xxfb_out_locked(fbi, start | (stop << 16), EP93XXFB_VCLK); in ep93xxfb_set_timing()
255 stop = hclks_total - info->var.hsync_len; in ep93xxfb_set_timing()
256 ep93xxfb_out_locked(fbi, start | (stop << 16), EP93XXFB_HSYNC); in ep93xxfb_set_timing()
[all …]
/linux-6.6.21/arch/powerpc/mm/
Dcacheflush.c34 static void invalidate_icache_range(unsigned long start, unsigned long stop) in invalidate_icache_range() argument
39 unsigned long size = stop - (unsigned long)addr + (bytes - 1); in invalidate_icache_range()
58 void flush_icache_range(unsigned long start, unsigned long stop) in flush_icache_range() argument
63 clean_dcache_range(start, stop); in flush_icache_range()
75 invalidate_icache_range(start, stop); in flush_icache_range()
/linux-6.6.21/drivers/staging/rtl8192e/
Drtllib_wx.c27 char *start, char *stop, in rtl819x_translate_scan() argument
44 start = iwe_stream_add_event(info, start, stop, &iwe, IW_EV_ADDR_LEN); in rtl819x_translate_scan()
52 start = iwe_stream_add_point(info, start, stop, &iwe, network->ssid); in rtl819x_translate_scan()
55 start = iwe_stream_add_point(info, start, stop, &iwe, "<hidden>"); in rtl819x_translate_scan()
58 start = iwe_stream_add_point(info, start, stop, &iwe, network->hidden_ssid); in rtl819x_translate_scan()
70 start = iwe_stream_add_event(info, start, stop, &iwe, IW_EV_CHAR_LEN); in rtl819x_translate_scan()
79 start = iwe_stream_add_event(info, start, stop, &iwe, IW_EV_UINT_LEN); in rtl819x_translate_scan()
87 start = iwe_stream_add_event(info, start, stop, &iwe, IW_EV_FREQ_LEN); in rtl819x_translate_scan()
96 start = iwe_stream_add_point(info, start, stop, &iwe, network->ssid); in rtl819x_translate_scan()
147 start = iwe_stream_add_event(info, start, stop, &iwe, IW_EV_PARAM_LEN); in rtl819x_translate_scan()
[all …]
/linux-6.6.21/drivers/net/wireless/ti/wl18xx/
Dscan.c299 struct wl18xx_cmd_scan_stop *stop; in __wl18xx_scan_stop() local
304 stop = kzalloc(sizeof(*stop), GFP_KERNEL); in __wl18xx_scan_stop()
305 if (!stop) { in __wl18xx_scan_stop()
310 stop->role_id = wlvif->role_id; in __wl18xx_scan_stop()
311 stop->scan_type = scan_type; in __wl18xx_scan_stop()
313 ret = wl1271_cmd_send(wl, CMD_STOP_SCAN, stop, sizeof(*stop), 0); in __wl18xx_scan_stop()
320 kfree(stop); in __wl18xx_scan_stop()
/linux-6.6.21/Documentation/devicetree/bindings/net/can/
Dfsl,flexcan.yaml80 fsl,stop-mode:
82 Register bits of stop mode control.
87 req_gpr is the gpr register offset of CAN stop request.
88 req_bit is the bit offset of CAN stop request.
93 - description: The 'req_gpr' is the gpr register offset of CAN stop request.
95 - description: The 'req_bit' is the bit offset of CAN stop request.
119 For SoCs with SCU support, need setup stop mode via SCU firmware, so this
155 fsl,stop-mode = <&gpr 0x34 28>;
168 fsl,stop-mode = <&gpr 0x34 28>;
/linux-6.6.21/drivers/net/wireless/intel/ipw2x00/
Dlibipw_wx.c46 char *start, char *stop, in libipw_translate_scan() argument
61 start = iwe_stream_add_event(info, start, stop, &iwe, IW_EV_ADDR_LEN); in libipw_translate_scan()
69 start = iwe_stream_add_point(info, start, stop, in libipw_translate_scan()
76 start = iwe_stream_add_event(info, start, stop, &iwe, IW_EV_CHAR_LEN); in libipw_translate_scan()
86 start = iwe_stream_add_event(info, start, stop, in libipw_translate_scan()
96 start = iwe_stream_add_event(info, start, stop, &iwe, IW_EV_FREQ_LEN); in libipw_translate_scan()
105 start = iwe_stream_add_point(info, start, stop, in libipw_translate_scan()
127 stop, &iwe, IW_EV_PARAM_LEN); in libipw_translate_scan()
135 stop, &iwe, IW_EV_PARAM_LEN); in libipw_translate_scan()
185 start = iwe_stream_add_event(info, start, stop, &iwe, IW_EV_QUAL_LEN); in libipw_translate_scan()
[all …]
/linux-6.6.21/Documentation/translations/zh_CN/admin-guide/
Dcpu-load.rst53 static volatile sig_atomic_t stop;
58 stop = 1;
62 stop = 0;
63 while (!stop && --niters);
/linux-6.6.21/net/netfilter/
Dnf_conntrack_amanda.c96 unsigned int dataoff, start, stop, off, i; in amanda_help() local
124 stop = skb_find_text(skb, start, skb->len, in amanda_help()
126 if (stop == UINT_MAX) in amanda_help()
128 stop += start; in amanda_help()
131 off = skb_find_text(skb, start, stop, search[i].ts); in amanda_help()
136 len = min_t(unsigned int, sizeof(pbuf) - 1, stop - off); in amanda_help()

12345678910>>...67