Home
last modified time | relevance | path

Searched refs:condition (Results 1 – 200 of 252) sorted by relevance

12

/linux-4.4.14/include/linux/
Dwait.h188 #define ___wait_cond_timeout(condition) \ argument
190 bool __cond = (condition); \
212 #define ___wait_event(wq, condition, state, exclusive, ret, cmd) \ argument
227 if (condition) \
246 #define __wait_event(wq, condition) \ argument
247 (void)___wait_event(wq, condition, TASK_UNINTERRUPTIBLE, 0, 0, \
262 #define wait_event(wq, condition) \ argument
265 if (condition) \
267 __wait_event(wq, condition); \
270 #define __io_wait_event(wq, condition) \ argument
[all …]
Dratelimit.h52 #define WARN_ON_RATELIMIT(condition, state) \ argument
53 WARN_ON((condition) && __ratelimit(state))
55 #define WARN_RATELIMIT(condition, format, ...) \ argument
60 int rtn = !!(condition); \
70 #define WARN_ON_RATELIMIT(condition, state) \ argument
71 WARN_ON(condition)
73 #define WARN_RATELIMIT(condition, format, ...) \ argument
75 int rtn = WARN(condition, format, ##__VA_ARGS__); \
Dbug.h21 #define BUILD_BUG_ON(condition) (0) argument
71 #define BUILD_BUG_ON(condition) ((void)sizeof(char[1 - 2*!!(condition)])) argument
73 #define BUILD_BUG_ON(condition) \ argument
74 BUILD_BUG_ON_MSG(condition, "BUILD_BUG_ON failed: " #condition)
Dcompiler.h454 # define __compiletime_error_fallback(condition) \ argument
455 do { ((void)sizeof(char[1 - 2 * condition])); } while (0)
459 # define __compiletime_error_fallback(condition) do { } while (0) argument
462 #define __compiletime_assert(condition, msg, prefix, suffix) \ argument
464 bool __cond = !(condition); \
471 #define _compiletime_assert(condition, msg, prefix, suffix) \ argument
472 __compiletime_assert(condition, msg, prefix, suffix)
483 #define compiletime_assert(condition, msg) \ argument
484 _compiletime_assert(condition, msg, __compiletime_assert_, __LINE__)
Dfreezer.h250 #define wait_event_freezekillable_unsafe(wq, condition) \ argument
254 __retval = wait_event_killable(wq, (condition)); \
296 #define wait_event_freezekillable_unsafe(wq, condition) \ argument
297 wait_event_killable(wq, condition)
Dseqno-fence.h37 enum seqno_fence_condition condition; member
114 fence->condition = cond; in seqno_fence_init()
Dmmiotrace.h13 unsigned long condition, struct pt_regs *);
Dgenl_magic_func.h136 #define BUILD_BUG_ON(condition) ((void)BUILD_BUG_ON_ZERO(condition)) argument
Dsched.h2114 #define conditional_stopped_child_used_math(condition, child) \ argument
2115 do { (child)->flags &= ~PF_USED_MATH, (child)->flags |= (condition) ? PF_USED_MATH : 0; } while (0)
2116 #define conditional_used_math(condition) \ argument
2117 conditional_stopped_child_used_math(condition, current)
Ddevice.h1294 #define dev_WARN_ONCE(dev, condition, format, arg...) \ argument
1295 WARN_ONCE(condition, "%s %s: " format, \
Dusb.h175 enum usb_interface_condition condition; /* state of binding */ member
/linux-4.4.14/include/asm-generic/
Dbug.h55 #define BUG_ON(condition) do { if (unlikely(condition)) BUG(); } while (0) argument
85 #define WARN_ON(condition) ({ \ argument
86 int __ret_warn_on = !!(condition); \
94 #define WARN(condition, format...) ({ \ argument
95 int __ret_warn_on = !!(condition); \
102 #define WARN_TAINT(condition, taint, format...) ({ \ argument
103 int __ret_warn_on = !!(condition); \
109 #define WARN_ON_ONCE(condition) ({ \ argument
111 int __ret_warn_once = !!(condition); \
119 #define WARN_ONCE(condition, format...) ({ \ argument
[all …]
/linux-4.4.14/net/ax25/
Dax25_std_in.c163 ax25->condition = 0x00; in ax25_std_state3_machine()
182 ax25->condition &= ~AX25_COND_PEER_RX_BUSY; in ax25_std_state3_machine()
184 ax25->condition |= AX25_COND_PEER_RX_BUSY; in ax25_std_state3_machine()
196 ax25->condition &= ~AX25_COND_PEER_RX_BUSY; in ax25_std_state3_machine()
217 if (ax25->condition & AX25_COND_PEER_RX_BUSY) { in ax25_std_state3_machine()
222 if (ax25->condition & AX25_COND_OWN_RX_BUSY) { in ax25_std_state3_machine()
229 if (ax25->condition & AX25_COND_OWN_RX_BUSY) in ax25_std_state3_machine()
231 ax25->condition &= ~AX25_COND_REJECT; in ax25_std_state3_machine()
235 if (!(ax25->condition & AX25_COND_ACK_PENDING)) { in ax25_std_state3_machine()
236 ax25->condition |= AX25_COND_ACK_PENDING; in ax25_std_state3_machine()
[all …]
Dax25_std_subr.c40 ax25->condition = 0x00; in ax25_std_establish_data_link()
57 if (ax25->condition & AX25_COND_OWN_RX_BUSY) in ax25_std_transmit_enquiry()
62 ax25->condition &= ~AX25_COND_ACK_PENDING; in ax25_std_transmit_enquiry()
70 if (ax25->condition & AX25_COND_OWN_RX_BUSY) in ax25_std_enquiry_response()
75 ax25->condition &= ~AX25_COND_ACK_PENDING; in ax25_std_enquiry_response()
80 if (ax25->condition & AX25_COND_OWN_RX_BUSY) in ax25_std_timeout_response()
85 ax25->condition &= ~AX25_COND_ACK_PENDING; in ax25_std_timeout_response()
Dax25_ds_in.c166 ax25->condition = 0x00; in ax25_ds_state3_machine()
188 ax25->condition &= ~AX25_COND_PEER_RX_BUSY; in ax25_ds_state3_machine()
190 ax25->condition |= AX25_COND_PEER_RX_BUSY; in ax25_ds_state3_machine()
204 ax25->condition &= ~AX25_COND_PEER_RX_BUSY; in ax25_ds_state3_machine()
230 if (ax25->condition & AX25_COND_PEER_RX_BUSY) { in ax25_ds_state3_machine()
237 if (ax25->condition & AX25_COND_OWN_RX_BUSY) { in ax25_ds_state3_machine()
244 if (ax25->condition & AX25_COND_OWN_RX_BUSY) in ax25_ds_state3_machine()
246 ax25->condition &= ~AX25_COND_REJECT; in ax25_ds_state3_machine()
250 if (!(ax25->condition & AX25_COND_ACK_PENDING)) { in ax25_ds_state3_machine()
251 ax25->condition |= AX25_COND_ACK_PENDING; in ax25_ds_state3_machine()
[all …]
Dax25_ds_subr.c68 if (!(ax25->condition & AX25_COND_PEER_RX_BUSY)) { in ax25_ds_enquiry_response()
94 if (!(ax25o->condition & AX25_COND_PEER_RX_BUSY) && ax25o->state == AX25_STATE_3) { in ax25_ds_enquiry_response()
112 ax25->condition &= AX25_COND_DAMA_MODE; in ax25_ds_establish_data_link()
164 …if (ax25->ax25_dev == ax25_dev && (ax25->condition & AX25_COND_DAMA_MODE) && ax25->state > AX25_ST… in ax25_check_dama_slave()
200 ax25->condition |= AX25_COND_DAMA_MODE; in ax25_dama_on()
205 ax25->condition &= ~AX25_COND_DAMA_MODE; in ax25_dama_off()
Dax25_std_timer.c65 (ax25->condition & AX25_COND_OWN_RX_BUSY)) { in ax25_std_heartbeat_expiry()
66 ax25->condition &= ~AX25_COND_OWN_RX_BUSY; in ax25_std_heartbeat_expiry()
67 ax25->condition &= ~AX25_COND_ACK_PENDING; in ax25_std_heartbeat_expiry()
82 if (ax25->condition & AX25_COND_ACK_PENDING) { in ax25_std_t2timer_expiry()
83 ax25->condition &= ~AX25_COND_ACK_PENDING; in ax25_std_t2timer_expiry()
Dax25_ds_timer.c84 if (ax25->ax25_dev != ax25_dev || !(ax25->condition & AX25_COND_DAMA_MODE)) in ax25_ds_timeout()
128 (ax25->condition & AX25_COND_OWN_RX_BUSY)) { in ax25_ds_heartbeat_expiry()
129 ax25->condition &= ~AX25_COND_OWN_RX_BUSY; in ax25_ds_heartbeat_expiry()
130 ax25->condition &= ~AX25_COND_ACK_PENDING; in ax25_ds_heartbeat_expiry()
Dax25_out.c253 if (ax25->condition & AX25_COND_PEER_RX_BUSY) in ax25_kick()
320 ax25->condition &= ~AX25_COND_ACK_PENDING; in ax25_kick()
Dax25_in.c150 ax25->condition |= AX25_COND_OWN_RX_BUSY; in ax25_rx_iframe()
/linux-4.4.14/net/rose/
Drose_in.c47 rose->condition = 0x00; in rose_state1_machine()
114 rose->condition = 0x00; in rose_state3_machine()
132 rose->condition = 0x00; in rose_state3_machine()
143 rose->condition |= ROSE_COND_PEER_RX_BUSY; in rose_state3_machine()
145 rose->condition &= ~ROSE_COND_PEER_RX_BUSY; in rose_state3_machine()
151 rose->condition &= ~ROSE_COND_PEER_RX_BUSY; in rose_state3_machine()
154 rose->condition = 0x00; in rose_state3_machine()
173 rose->condition = 0x00; in rose_state3_machine()
185 rose->condition |= ROSE_COND_OWN_RX_BUSY; in rose_state3_machine()
192 rose->condition &= ~ROSE_COND_ACK_PENDING; in rose_state3_machine()
[all …]
Drose_out.c57 if (rose->condition & ROSE_COND_PEER_RX_BUSY) in rose_kick()
102 rose->condition &= ~ROSE_COND_ACK_PENDING; in rose_kick()
116 if (rose->condition & ROSE_COND_OWN_RX_BUSY) in rose_enquiry_response()
122 rose->condition &= ~ROSE_COND_ACK_PENDING; in rose_enquiry_response()
Drose_timer.c151 (rose->condition & ROSE_COND_OWN_RX_BUSY)) { in rose_heartbeat_expiry()
152 rose->condition &= ~ROSE_COND_OWN_RX_BUSY; in rose_heartbeat_expiry()
153 rose->condition &= ~ROSE_COND_ACK_PENDING; in rose_heartbeat_expiry()
186 if (rose->condition & ROSE_COND_ACK_PENDING) { in rose_timer_expiry()
187 rose->condition &= ~ROSE_COND_ACK_PENDING; in rose_timer_expiry()
Daf_rose.c1031 make_rose->condition = 0x00; in rose_rx_call_request()
1360 rose->condition = 0x00; in rose_ioctl()
/linux-4.4.14/drivers/input/joystick/iforce/
Diforce-ff.c214 ret |= old->u.condition[i].right_saturation != new->u.condition[i].right_saturation in need_condition_modifier()
215 || old->u.condition[i].left_saturation != new->u.condition[i].left_saturation in need_condition_modifier()
216 || old->u.condition[i].right_coeff != new->u.condition[i].right_coeff in need_condition_modifier()
217 || old->u.condition[i].left_coeff != new->u.condition[i].left_coeff in need_condition_modifier()
218 || old->u.condition[i].deadband != new->u.condition[i].deadband in need_condition_modifier()
219 || old->u.condition[i].center != new->u.condition[i].center; in need_condition_modifier()
503 effect->u.condition[0].right_saturation, in iforce_upload_condition()
504 effect->u.condition[0].left_saturation, in iforce_upload_condition()
505 effect->u.condition[0].right_coeff, in iforce_upload_condition()
506 effect->u.condition[0].left_coeff, in iforce_upload_condition()
[all …]
/linux-4.4.14/arch/mips/include/asm/
Dbug.h21 static inline void __BUG_ON(unsigned long condition) in __BUG_ON() argument
23 if (__builtin_constant_p(condition)) { in __BUG_ON()
24 if (condition) in __BUG_ON()
30 : : "r" (condition), "i" (BRK_BUG)); in __BUG_ON()
/linux-4.4.14/net/netrom/
Dnr_in.c181 nrom->condition |= NR_COND_PEER_RX_BUSY; in nr_state3_machine()
184 nrom->condition &= ~NR_COND_PEER_RX_BUSY; in nr_state3_machine()
194 if (nrom->condition & NR_COND_PEER_RX_BUSY) { in nr_state3_machine()
211 nrom->condition |= NR_COND_PEER_RX_BUSY; in nr_state3_machine()
214 nrom->condition &= ~NR_COND_PEER_RX_BUSY; in nr_state3_machine()
222 if (nrom->condition & NR_COND_PEER_RX_BUSY) { in nr_state3_machine()
231 if (nrom->condition & NR_COND_OWN_RX_BUSY) in nr_state3_machine()
242 nrom->condition |= NR_COND_OWN_RX_BUSY; in nr_state3_machine()
261 if (!(nrom->condition & NR_COND_ACK_PENDING)) { in nr_state3_machine()
262 nrom->condition |= NR_COND_ACK_PENDING; in nr_state3_machine()
Dnr_out.c92 if (nr->condition & NR_COND_OWN_RX_BUSY) in nr_send_iframe()
114 if (nr->condition & NR_COND_OWN_RX_BUSY) in nr_send_nak_frame()
119 nr->condition &= ~NR_COND_ACK_PENDING; in nr_send_nak_frame()
134 if (nr->condition & NR_COND_PEER_RX_BUSY) in nr_kick()
182 nr->condition &= ~NR_COND_ACK_PENDING; in nr_kick()
227 nr->condition = 0x00; in nr_establish_data_link()
246 if (nr->condition & NR_COND_OWN_RX_BUSY) { in nr_enquiry_response()
256 nr->condition &= ~NR_COND_ACK_PENDING; in nr_enquiry_response()
Dnr_timer.c141 (nr->condition & NR_COND_OWN_RX_BUSY)) { in nr_heartbeat_expiry()
142 nr->condition &= ~NR_COND_OWN_RX_BUSY; in nr_heartbeat_expiry()
143 nr->condition &= ~NR_COND_ACK_PENDING; in nr_heartbeat_expiry()
161 if (nr->condition & NR_COND_ACK_PENDING) { in nr_t2timer_expiry()
162 nr->condition &= ~NR_COND_ACK_PENDING; in nr_t2timer_expiry()
173 nr_sk(sk)->condition &= ~NR_COND_PEER_RX_BUSY; in nr_t4timer_expiry()
/linux-4.4.14/tools/include/asm/
Dbug.h8 #define WARN(condition, format...) ({ \ argument
9 int __ret_warn_on = !!(condition); \
15 #define WARN_ONCE(condition, format...) ({ \ argument
17 int __ret_warn_once = !!(condition); \
/linux-4.4.14/drivers/staging/lustre/lustre/include/
Dlustre_lib.h528 #define __l_wait_event(wq, condition, info, ret, l_add_wait) \ argument
536 if (condition) \
549 if (condition) \
578 if (condition) \
604 #define l_wait_event(wq, condition, info) \ argument
609 __l_wait_event(wq, condition, __info, \
614 #define l_wait_event_exclusive(wq, condition, info) \ argument
619 __l_wait_event(wq, condition, __info, \
624 #define l_wait_event_exclusive_head(wq, condition, info) \ argument
629 __l_wait_event(wq, condition, __info, \
[all …]
/linux-4.4.14/arch/powerpc/include/asm/
Ddelay.h56 #define spin_event_timeout(condition, timeout, delay) \ argument
58 typeof(condition) __ret; \
61 while (!(__ret = (condition)) && (tb_ticks_since(__start) <= __loops)) \
67 __ret = (condition); \
/linux-4.4.14/net/x25/
Dx25_in.c102 x25->condition = 0x00; in x25_state1_machine()
217 x25->condition = 0x00; in x25_state3_machine()
239 x25->condition = 0x00; in x25_state3_machine()
248 x25->condition |= X25_COND_PEER_RX_BUSY; in x25_state3_machine()
250 x25->condition &= ~X25_COND_PEER_RX_BUSY; in x25_state3_machine()
256 x25->condition &= ~X25_COND_PEER_RX_BUSY; in x25_state3_machine()
261 x25->condition = 0x00; in x25_state3_machine()
279 x25->condition = 0x00; in x25_state3_machine()
289 x25->condition |= X25_COND_OWN_RX_BUSY; in x25_state3_machine()
296 x25->condition &= ~X25_COND_ACK_PENDING; in x25_state3_machine()
[all …]
Dx25_out.c161 if (x25->condition & X25_COND_PEER_RX_BUSY) in x25_kick()
208 x25->condition &= ~X25_COND_ACK_PENDING; in x25_kick()
222 if (x25->condition & X25_COND_OWN_RX_BUSY) in x25_enquiry_response()
228 x25->condition &= ~X25_COND_ACK_PENDING; in x25_enquiry_response()
Dx25_timer.c144 if (x25->condition & X25_COND_ACK_PENDING) { in x25_do_timer_expiry()
145 x25->condition &= ~X25_COND_ACK_PENDING; in x25_do_timer_expiry()
Dx25_subr.c382 (x25->condition & X25_COND_OWN_RX_BUSY)) { in x25_check_rbuf()
383 x25->condition &= ~X25_COND_OWN_RX_BUSY; in x25_check_rbuf()
384 x25->condition &= ~X25_COND_ACK_PENDING; in x25_check_rbuf()
/linux-4.4.14/net/lapb/
Dlapb_in.c64 lapb->condition = 0x00; in lapb_state0_machine()
84 lapb->condition = 0x00; in lapb_state0_machine()
162 lapb->condition = 0x00; in lapb_state1_machine()
273 lapb->condition = 0x00; in lapb_state3_machine()
291 lapb->condition = 0x00; in lapb_state3_machine()
329 lapb->condition |= LAPB_PEER_RX_BUSY_CONDITION; in lapb_state3_machine()
348 lapb->condition &= ~LAPB_PEER_RX_BUSY_CONDITION; in lapb_state3_machine()
367 lapb->condition &= ~LAPB_PEER_RX_BUSY_CONDITION; in lapb_state3_machine()
400 if (lapb->condition & LAPB_PEER_RX_BUSY_CONDITION) in lapb_state3_machine()
421 lapb->condition &= ~LAPB_REJECT_CONDITION; in lapb_state3_machine()
[all …]
Dlapb_out.c80 if (!(lapb->condition & LAPB_PEER_RX_BUSY_CONDITION) && in lapb_kick()
112 lapb->condition &= ~LAPB_ACK_PENDING_CONDITION; in lapb_kick()
161 lapb->condition = 0x00; in lapb_establish_data_link()
183 lapb->condition &= ~LAPB_ACK_PENDING_CONDITION; in lapb_enquiry_response()
192 lapb->condition &= ~LAPB_ACK_PENDING_CONDITION; in lapb_timeout_response()
Dlapb_timer.c82 if (lapb->condition & LAPB_ACK_PENDING_CONDITION) { in lapb_t2timer_expiry()
83 lapb->condition &= ~LAPB_ACK_PENDING_CONDITION; in lapb_t2timer_expiry()
/linux-4.4.14/scripts/coccinelle/misc/
Dbugon.cocci1 /// Use BUG_ON instead of a if condition followed by BUG.
4 //# condition on an expression and replaces the if condition and BUG()
60 msg="WARNING: Use BUG_ON instead of if condition followed by BUG.\nPlease make sure the condition h…
/linux-4.4.14/drivers/staging/rtl8188eu/hal/
Drf_cfg.c25 static bool check_condition(struct adapter *adapt, const u32 condition) in check_condition() argument
31 u32 cond = condition; in check_condition()
33 if (condition == 0xCDCDCDCD) in check_condition()
36 cond = condition & 0x000000FF; in check_condition()
40 cond = condition & 0x0000FF00; in check_condition()
45 cond = condition & 0x00FF0000; in check_condition()
/linux-4.4.14/arch/arm/nwfpe/
Dentry.S86 bl arm_check_condition @ check the condition
87 cmp r0, #ARM_OPCODE_CONDTEST_PASS @ condition passed?
89 @ if condition code failed to match, next insn
111 b emulate @ check condition and emulate
/linux-4.4.14/drivers/gpu/drm/nouveau/nvkm/subdev/volt/
Dgk20a.c129 gk20a_volt_set_id(struct nvkm_volt *base, u8 id, int condition) in gk20a_volt_set_id() argument
138 prev_uv, target_uv, condition); in gk20a_volt_set_id()
139 if (!condition || in gk20a_volt_set_id()
140 (condition < 0 && target_uv < prev_uv) || in gk20a_volt_set_id()
141 (condition > 0 && target_uv > prev_uv)) { in gk20a_volt_set_id()
Dbase.c91 nvkm_volt_set_id(struct nvkm_volt *volt, u8 id, int condition) in nvkm_volt_set_id() argument
96 return volt->func->set_id(volt, id, condition); in nvkm_volt_set_id()
101 if (!condition || prev < 0 || in nvkm_volt_set_id()
102 (condition < 0 && ret < prev) || in nvkm_volt_set_id()
103 (condition > 0 && ret > prev)) { in nvkm_volt_set_id()
Dpriv.h16 int (*set_id)(struct nvkm_volt *, u8 id, int condition);
/linux-4.4.14/arch/blackfin/include/asm/
Dbug.h58 #define WARN_ON(condition) \ argument
60 int __ret_warn_on = !!(condition); \
/linux-4.4.14/drivers/net/ethernet/cavium/liquidio/
Docteon_main.h166 sleep_cond(wait_queue_head_t *wait_queue, int *condition) in sleep_cond() argument
172 while (!(ACCESS_ONCE(*condition))) { in sleep_cond()
207 int *condition, in sleep_timeout_cond() argument
215 if (!(*condition)) in sleep_timeout_cond()
/linux-4.4.14/arch/avr32/include/asm/
Dbug.h58 #define WARN_ON(condition) \ argument
60 int __ret_warn_on = !!(condition); \
/linux-4.4.14/tools/lib/lockdep/uinclude/linux/
Dkernel.h22 #define BUILD_BUG_ON(condition) ((void)sizeof(char[1 - 2*!!(condition)])) argument
/linux-4.4.14/arch/x86/include/asm/
Dtraps.h96 static inline int get_si_code(unsigned long condition) in get_si_code() argument
98 if (condition & DR_STEP) in get_si_code()
100 else if (condition & (DR_TRAP0|DR_TRAP1|DR_TRAP2|DR_TRAP3)) in get_si_code()
/linux-4.4.14/Documentation/devicetree/bindings/iio/accel/
Dlis302.txt37 - st,irq{1,2}-ff-wu-1: raise IRQ 1/2 on FF_WU_1 condition
38 - st,irq{1,2}-ff-wu-2: raise IRQ 1/2 on FF_WU_2 condition
40 - st,irq{1,2}-click: raise IRQ 1/2 on click condition
47 - st,wakeup-{x,y,z}-{lo,hi}: set wakeup condition on x/y/z axis for
50 - st,wakeup2-{x,y,z}-{lo,hi}: set wakeup condition on x/y/z axis for
/linux-4.4.14/drivers/misc/sgi-xp/
Dxp.h45 #define DBUG_ON(condition) BUG_ON(condition) argument
47 #define DBUG_ON(condition) argument
/linux-4.4.14/sound/soc/intel/atom/sst/
Dsst_pvt.c96 block->condition)) { in sst_wait_interruptible()
134 block->condition, block->msg_id, block->drv_id); in sst_wait_timeout()
136 block->condition, in sst_wait_timeout()
140 block->condition); in sst_wait_timeout()
148 block->condition, block->msg_id, sst_drv_ctx->sst_state); in sst_wait_timeout()
Dsst_ipc.c46 msg->condition = false; in sst_create_block()
88 block->condition = true; in sst_wake_up_block()
Dsst.h169 bool condition; member
/linux-4.4.14/lib/
Dtest_user_copy.c28 #define test(condition, msg) \ argument
30 int cond = (condition); \
/linux-4.4.14/include/drm/
Ddrm_os_linux.h43 #define DRM_WAIT_ON( ret, queue, timeout, condition ) \ argument
51 if (condition) \
/linux-4.4.14/Documentation/hwmon/
Dibmpowernv34 fanX_fault 0: No fail condition
39 inX_fault 0: No fail condition.
Dltc426151 on all chip variants. To ensure that the alarm condition is reported to the user,
Dsysfs-interface593 boolean value. 1 means than an alarm condition exists, 0 means no alarm.
641 Input fault condition
643 1: fault condition
/linux-4.4.14/Documentation/powerpc/
Dptrace.txt24 watchpoints and whether it supports a range of addresses and a condition.
69 uint32_t condition_mode; /* break/watchpoint condition flags */
77 For instance, if the request is for a watchpoint with a condition, both the
119 p.condition_value = (uint64_t) condition;
Dcxlflash.txt286 changed in response to a check condition. As the user is operating out
300 User contexts are put into an error condition when the device needs to
301 be reset or is terminating. Users are notified of this error condition
Deeh-pci-error-recovery.txt22 a CPU machine-check/check-stop condition, halting the CPU entirely.
69 condition, it will "isolate" the affected PCI card. Isolation
/linux-4.4.14/drivers/usb/core/
Ddriver.c317 intf->condition = USB_INTERFACE_BINDING; in usb_probe_interface()
362 intf->condition = USB_INTERFACE_BOUND; in usb_probe_interface()
374 intf->condition = USB_INTERFACE_UNBOUND; in usb_probe_interface()
399 intf->condition = USB_INTERFACE_UNBINDING; in usb_unbind_interface()
461 intf->condition = USB_INTERFACE_UNBOUND; in usb_unbind_interface()
531 iface->condition = USB_INTERFACE_BOUND; in usb_driver_claim_interface()
593 if (iface->condition != USB_INTERFACE_BOUND) in usb_driver_release_interface()
595 iface->condition = USB_INTERFACE_UNBINDING; in usb_driver_release_interface()
1201 intf->condition == USB_INTERFACE_UNBOUND) in usb_suspend_interface()
1225 if (intf->condition == USB_INTERFACE_UNBINDING) in usb_resume_interface()
[all …]
Dusb.c628 if (iface && (iface->condition == USB_INTERFACE_UNBINDING || in usb_lock_device_for_reset()
629 iface->condition == USB_INTERFACE_UNBOUND)) in usb_lock_device_for_reset()
644 if (iface && (iface->condition == USB_INTERFACE_UNBINDING || in usb_lock_device_for_reset()
645 iface->condition == USB_INTERFACE_UNBOUND)) in usb_lock_device_for_reset()
/linux-4.4.14/Documentation/zh_CN/
DCodingStyle76 if (condition) do_this;
99 if (condition)
146 } while (condition);
166 if (condition)
172 if (condition) {
/linux-4.4.14/Documentation/devicetree/bindings/gpio/
Dgpio-poweroff.txt11 condition. This will also cause an inactive->active edge condition, so
Dgpio-restart.txt12 triggering a level triggered reset condition. This will also cause an
13 inactive->active edge condition, triggering positive edge triggered
/linux-4.4.14/drivers/gpu/drm/nouveau/include/nvkm/subdev/
Dvolt.h18 int nvkm_volt_set_id(struct nvkm_volt *, u8 id, int condition);
/linux-4.4.14/include/net/irda/
Ddiscovery.h80 LAP_REASON condition; /* More info about the discovery */ member
/linux-4.4.14/Documentation/ABI/testing/
Dsysfs-fs-f2fs44 Controls the FS utilization condition for the in-place-update
51 Controls the dirty page count condition for the in-place-update
Dima_policy18 rule format: action [condition ...]
21 condition:= base | lsm [option]
Dsysfs-class-led-flash71 a short or open circuit condition on the indicator LED
78 the condition persists until this flag is no longer set
Dsysfs-class-cxl16 to know about the current error condition and take appropriate
/linux-4.4.14/drivers/hid/usbhid/
Dhid-pidff.c391 effect->u.condition[i].center); in pidff_set_condition_report()
393 effect->u.condition[i].right_coeff); in pidff_set_condition_report()
395 effect->u.condition[i].left_coeff); in pidff_set_condition_report()
397 effect->u.condition[i].right_saturation); in pidff_set_condition_report()
399 effect->u.condition[i].left_saturation); in pidff_set_condition_report()
401 effect->u.condition[i].deadband); in pidff_set_condition_report()
417 struct ff_condition_effect *cond = &effect->u.condition[i]; in pidff_needs_set_condition()
418 struct ff_condition_effect *old_cond = &old->u.condition[i]; in pidff_needs_set_condition()
/linux-4.4.14/security/tomoyo/
DMakefile1 obj-y = audit.o common.o condition.o domain.o environ.o file.o gc.o group.o load_policy.o memory.o …
/linux-4.4.14/drivers/input/
Dinput-compat.h63 struct ff_condition_effect condition[2]; /* One for each axis */ member
/linux-4.4.14/drivers/staging/lustre/include/linux/libcfs/
Dlibcfs_hash.h530 atomic_t *condition) in cfs_hash_dec_and_lock() argument
533 return atomic_dec_and_lock(condition, &hs->hs_lock.spin); in cfs_hash_dec_and_lock()
626 atomic_t *condition) in cfs_hash_bd_dec_and_lock() argument
629 return atomic_dec_and_lock(condition, &bd->bd_bucket->hsb_lock.spin); in cfs_hash_bd_dec_and_lock()
/linux-4.4.14/Documentation/devicetree/bindings/power_supply/
Dmax17042_battery.txt13 If skipped the condition won't be reported.
/linux-4.4.14/arch/x86/boot/
Dboot.h32 #define BUILD_BUG_ON(condition) ((void)sizeof(char[1 - 2*!!(condition)])) argument
/linux-4.4.14/drivers/staging/lustre/lnet/selftest/
Dconrpc.h126 void *arg, lstcon_rpc_cond_func_t condition,
Dconrpc.c1086 void *arg, lstcon_rpc_cond_func_t condition, in lstcon_rpc_trans_ndlist() argument
1106 rc = condition == NULL ? 1 : in lstcon_rpc_trans_ndlist()
1107 condition(transop, ndl->ndl_node, arg); in lstcon_rpc_trans_ndlist()
/linux-4.4.14/drivers/staging/fwserial/
Ddma_fifo.c30 #define FAIL(fifo, condition, format...) ({ \ argument
31 fifo->corrupt = !!(condition); \
/linux-4.4.14/drivers/char/tpm/st33zp24/
Dst33zp24.c277 bool condition; in wait_for_stat() local
308 condition = wait_for_tpm_stat_cond(chip, mask, in wait_for_stat()
310 if (ret >= 0 && condition) { in wait_for_stat()
/linux-4.4.14/include/net/
Dlapb.h89 unsigned char condition; member
Drose.h135 unsigned char state, condition, qbitincl, defer; member
Dnetrom.h69 unsigned char state, condition, bpqext, window; member
Dx25.h152 unsigned char state, condition; member
Dax25.h235 unsigned char condition, backoff; member
/linux-4.4.14/arch/powerpc/platforms/cell/spufs/
Dspufs.h321 #define spufs_wait(wq, condition) \ argument
327 if (condition) \
/linux-4.4.14/arch/s390/net/
Dbpf_jit.S114 ltgr %r15,%r15 # Set condition code
/linux-4.4.14/include/sound/
Dcore.h368 #define snd_BUG_ON(condition) ({ \ argument
369 int __ret_warn_on = !!(condition); \
/linux-4.4.14/arch/m68k/fpsp040/
Dx_unimp.S56 | exception byte and condition codes are clear before proceeding
Dkernel_ex.S51 | set FPSR exception status dz bit, condition code
106 | set FPSR exception status operr bit, condition code
Dres_func.S604 | condition exists with a very large norm and a denorm. One
614 | The wrap-around condition occurs for add, sub, div, and cmp
626 | for this condition. The restore flag (RES_FLG) is left clear.
697 | One of the ops is denormalized. Test for wrap condition
758 | an overflow condition.
801 | One of the ops is denormalized. Test for wrap condition
976 | One of the ops is denormalized. Test for wrap condition
1157 | One of the ops is denormalized. Test for wrap condition
1195 | One of the ops is denormalized. Test for wrap condition
1218 | an underflow condition.
Dbugfix.S206 | bug condition. Otherwise, exit.
358 | go and fix the bug condition. Otherwise, exit.
Dx_operr.S211 | This operr condition is not of the special case. Set operr
Dget_op.S544 | packed cases, but we must set the FPSR condition codes properly.
Dskeleton.S15 | the FPSP was entered. In particular, whatever condition
Dfpsp.h95 .set FPSR_CC,USER_FPSR+0 | FPSR condition code
/linux-4.4.14/Documentation/frv/
Datomic-ops.txt53 condition in ICC3 to remain with the Z flag set, thus causing step (5) to loop back to step (1).
58 (1) The condition CCCR.CC3 is cleared unconditionally by an exception, irrespective of whether or
Dkernel-ABI.txt172 the ICC2 condition code flags to note virtual disablement, such that if we
175 Setting condition flags as a side effect of an arithmetic or logical
210 A TIHI #2 instruction (trap #2 if condition HI - Z==0 && C==0) would
/linux-4.4.14/arch/x86/mm/
Dkmmio.c327 static int post_kmmio_handler(unsigned long condition, struct pt_regs *regs) in post_kmmio_handler() argument
344 ctx->probe->post_handler(ctx->probe, condition, regs); in post_kmmio_handler()
Dmmio-mod.c208 static void post(struct kmmio_probe *p, unsigned long condition, in post() argument
/linux-4.4.14/arch/alpha/include/asm/
Derr_ev7.h157 u8 condition; /* condition reported */ member
/linux-4.4.14/Documentation/video4linux/
Dpxa_camera.txt71 - each arrow is the condition to transition to another state
72 - an arrow with a comment is a mandatory transition (no condition)
Domap3isp.txt228 case. In order to avoid such condition, either disable/reconfigure/enable the
/linux-4.4.14/Documentation/networking/
Dspider_net.txt117 pointer will catch up to the head, notice the not-empty condition,
122 will be set in GHIINT1STS). When the RX ram full condition occurs,
124 This section describes the special handling for this condition.
131 deadlock condition, as the tail pointer will be pointing at this descr,
Dnetdev-features.txt89 should not be altered unless some error condition happens that can't
Dphonet.txt182 intrinsic race condition whereby writability might be lost between the
Dpacket_mmap.txt225 indeed, packet_set_ring checks that the following condition is true
248 A frame can be of any size with the only condition it can fit in a block. A block
499 It doesn't incur in a race condition to first check the status value and
DREADME.ipw210063 modules, and accordingly, condition system-level regulatory approval
/linux-4.4.14/include/uapi/linux/
Dinput.h435 struct ff_condition_effect condition[2]; /* One for each axis */ member
/linux-4.4.14/drivers/media/i2c/m5mols/
Dm5mols.h313 int m5mols_wait_interrupt(struct v4l2_subdev *sd, u8 condition, u32 timeout);
/linux-4.4.14/Documentation/input/
Dbcm5974.txt37 different interfaces of the same usb device. This creates a race condition
Dalps.txt95 Note that the device never signals overflow condition.
/linux-4.4.14/arch/m68k/ifpsp060/
Dilsp.doc110 The library routines also return the correct condition code
123 mov.w %cc,_tmp # save off condition codes
Dfskeleton.S246 | discovers that the trap condition is true and it should branch to the operating
/linux-4.4.14/Documentation/thermal/
Dexynos_thermal51 Although an interrupt condition for level_0 can be set,
Dintel_powerclamp.txt205 idle time is injected when such a condition is detected. Currently,
/linux-4.4.14/Documentation/arm/Samsung-S3C24XX/
DUSB-Host.txt70 check the power condition on the port, such as an IRQ.
/linux-4.4.14/drivers/ssb/
Dsdio.c465 #define GOTO_ERROR_ON(condition, description) do { \ argument
466 if (unlikely(condition)) { \
Dpcmcia.c594 #define GOTO_ERROR_ON(condition, description) do { \ argument
595 if (unlikely(condition)) { \
/linux-4.4.14/fs/logfs/
Dlogfs_abi.h15 #define BUILD_BUG_ON(condition) /**/ argument
Dlogfs.h650 #define LOGFS_BUG_ON(condition, sb) \ argument
651 do { if (unlikely(condition)) LOGFS_BUG((sb)); } while (0)
/linux-4.4.14/Documentation/scheduler/
Dsched-deadline.txt84 this condition is verified, the scheduling deadline and the
190 It is important to notice that this condition is only sufficient, and not
192 condition. For example, consider the task set {Task_1,Task_2} composed by
200 D_i != P_i (checking a condition that is both sufficient and necessary),
245 have D_i = P_i, a sufficient schedulability condition can be expressed in
249 M - (M - 1) · U_max becomes M - M + 1 = 1 and this schedulability condition
344 As already stated in Section 3, a necessary condition to be respected to
/linux-4.4.14/arch/c6x/lib/
Dcsum_64plus.S38 OR .L2X B0,A1,B0 ; non aligned condition
41 || MV .D1X B5,A1 ; words condition
/linux-4.4.14/scripts/
Dcheckpatch.pl1175 my $condition = substr($blk, $soff, $coff - $soff + 1);
1182 return ($statement, $condition,
1231 my ($statement, $condition, $level);
1236 ($statement, $condition, $linenr, $remain, $off, $level) =
1239 push(@chunks, [ $condition, $statement ]);
1240 if (!($remain > 0 && $condition =~ /^\s*(?:\n[+-])?\s*(?:if|else|do)\b/s)) {
1247 ($statement, $condition, $linenr, $remain, $off, $level) =
1250 last if (!($remain > 0 && $condition =~ /^(?:\s*\n[+-])*\s*(?:else|do)\b/s));
1252 push(@chunks, [ $condition, $statement ]);
/linux-4.4.14/Documentation/devicetree/bindings/mfd/
Dmax14577.txt32 In an overvoltage condition, INT asserts and charging
/linux-4.4.14/drivers/net/wireless/libertas/
Dif_sdio.c315 static int if_sdio_wait_status(struct if_sdio_card *card, const u8 condition) in if_sdio_wait_status() argument
326 if ((status & condition) == condition) in if_sdio_wait_status()
/linux-4.4.14/Documentation/i2c/
Di2c-protocol86 Force a stop condition (P) after the message. Some I2C related protocols
Dslave-interface117 A stop condition was received. This can happen anytime and the backend should
/linux-4.4.14/arch/m68k/math-emu/
Dfp_cond.S83 swap %d1 | test condition in %d1
/linux-4.4.14/drivers/net/wireless/mwifiex/
DREADME202 echo "<condition> [GPIO# [gap]]]" > hscfg
206 <condition>: bit 0 = 1 -- broadcast data
Dutil.c507 *cmd_node->condition = true; in mwifiex_complete_cmd()
Dsta_ioctl.c64 *(cmd_queued->condition), in mwifiex_wait_queue_complete()
/linux-4.4.14/arch/m68k/ifpsp060/src/
Dilsp.S88 # Restore sign info if signed instruction. Set the condition #
501 # Set the condition codes as appropriate before performing an #
578 # now, grab the condition codes. only one that can be set is 'N'.
590 # use movm here to not disturb the condition codes.
/linux-4.4.14/Documentation/usb/
Dbulk-streams.txt38 The return value is an error condition (if one of the endpoints doesn't support
/linux-4.4.14/arch/sparc/kernel/
Dwof.S121 wr %t_psr, 0x0, %psr ! restore condition codes in %psr
/linux-4.4.14/Documentation/RCU/
Dstallwarn.txt191 o A CPU looping with interrupts disabled. This condition can
194 o A CPU looping with preemption disabled. This condition can
198 o A CPU looping with bottom halves disabled. This condition can
Dtorture.txt227 This condition is important, since it can fool you into thinking
257 an RCU priority inversion condition. If you are testing RCU
Dtrace.txt360 A "." character appears if the corresponding condition
459 condition does not hold.
/linux-4.4.14/drivers/net/wireless/realtek/rtlwifi/rtl8188ee/
Dphy.c284 const u32 condition) in _rtl88e_check_condition() argument
291 u32 cond = condition; in _rtl88e_check_condition()
293 if (condition == 0xCDCDCDCD) in _rtl88e_check_condition()
296 cond = condition & 0xFF; in _rtl88e_check_condition()
300 cond = condition & 0xFF00; in _rtl88e_check_condition()
305 cond = condition & 0xFF0000; in _rtl88e_check_condition()
/linux-4.4.14/drivers/net/wireless/realtek/rtlwifi/rtl8723be/
Dphy.c156 const u32 condition) in _rtl8723be_check_condition() argument
163 u32 cond = condition; in _rtl8723be_check_condition()
165 if (condition == 0xCDCDCDCD) in _rtl8723be_check_condition()
168 cond = condition & 0xFF; in _rtl8723be_check_condition()
172 cond = condition & 0xFF00; in _rtl8723be_check_condition()
177 cond = condition & 0xFF0000; in _rtl8723be_check_condition()
/linux-4.4.14/Documentation/w1/masters/
Dds249050 maximum buffer size to not run into this error condition, only extra
/linux-4.4.14/Documentation/scsi/
DChangeLog.ips105 0.99.04 - Fix race condition in the passthru mechanism
DChangeLog.1992-1997339 * scsi.h: Define QUEUE_FULL condition.
552 is not stable under heavy load. Race condition and all that.
977 active, else return NULL if inactive. Fixes race condition.
1492 * wd7000.c: Make stab at fixing race condition.
1501 * aha1542.c: Fix race condition in aha1542_out.
1838 * wd7000.c: Allow another condition for power on that are normal
1886 (allocate_device): Fix race condition. Allow more space in dma pool
1897 * sd.c: Fix race condition for multiple disks. Use INIT_SCSI_REQUEST
1904 * sr.c: Fix race condition, a la sd.c. Increase the number of retries
1967 with SCint to fix race condition. Use recursion_depth to keep track
[all …]
Dsym53c8xx_2.txt611 When the driver detects an unexpected error condition, it may display a
632 PCI bus fault condition detected
635 on some condition that makes an instruction illegal.
643 Indicates that the chip detected a severe error condition
649 …indicate the SCSI initiator that an error condition not reportable using the SCSI pro…
655 On a faulty SCSI BUS, any error condition among SGE (0x08), UDC (0x04) and
DChangeLog.ncr53c8xx127 - Remove the compilation condition about having to acquire the
139 - Remove the compilation condition about having to acquire the
408 - Nail another one on CHECK condition when requeuing the command
464 - generalization of the restart of CCB on special condition as
DChangeLog.arcmsr41 ** cast off sizeof(dma_addr_t) condition for 64bit pci_set_dma_mask
DChangeLog.sym53c8xx158 condition - to remove any reads of the sbdl
229 - Remove the compilation condition about having to acquire the
296 about a UNIT ATTENTION for a RESET condition by this target.
323 - Check against data OVERRUN/UNDERRUN condition at the end of a data
Dncr53c8xx.txt1285 When the driver detects an unexpected error condition, it may display a
1306 PCI bus fault condition detected
1309 on some condition that makes an instruction illegal.
1317 Indicates that the chip detected a severe error condition
1323 …indicate the SCSI initiator that an error condition not reportable using the SCSI pro…
1329 On a faulty SCSI BUS, any error condition among SGE (0x08), UDC (0x04) and
/linux-4.4.14/Documentation/power/
Dcharger-manager.txt135 chargers. Recharge with voltage drop condition only (without delay
136 condition) is needed to be implemented with hardware interrupts from
Dpower_supply_class.txt128 condition.
/linux-4.4.14/tools/power/cpupower/bench/
DREADME-BENCH27 cpufreq-bench helps to test the condition of a given cpufreq governor.
/linux-4.4.14/drivers/gpu/drm/i915/
Di915_drv.h87 #define I915_STATE_WARN(condition, format...) ({ \ argument
88 int __ret_warn_on = !!(condition); \
98 #define I915_STATE_WARN_ON(condition) ({ \ argument
99 int __ret_warn_on = !!(condition); \
102 WARN(1, "WARN_ON(" #condition ")\n"); \
104 DRM_ERROR("WARN_ON(" #condition ")\n"); \
Di915_cmd_parser.c1070 u32 condition = cmd[offset] & in check_cmd() local
1073 if (condition == 0) in check_cmd()
/linux-4.4.14/net/iucv/
Daf_iucv.c52 #define __iucv_sock_wait(sk, condition, timeo, ret) \ argument
58 while (!(condition)) { \
77 #define iucv_sock_wait(sk, condition, timeo) \ argument
80 if (!(condition)) \
81 __iucv_sock_wait(sk, condition, timeo, __ret); \
/linux-4.4.14/Documentation/ide/
DChangeLog.ide-cd.1994-200454 * Fix a race condition in retrieving error information.
59 * Fix race condition in setting up interrupt handlers
DChangeLog.ide-tape.1995-200290 * Ver 1.2 Jan 1 96 Eliminated pipelined mode race condition.
160 * Ver 1.15 Mar 25 99 Fix SMP race condition by replacing hwgroup
/linux-4.4.14/fs/f2fs/
Df2fs.h26 #define f2fs_bug_on(sbi, condition) BUG_ON(condition) argument
29 #define f2fs_bug_on(sbi, condition) \ argument
31 if (unlikely(condition)) { \
/linux-4.4.14/drivers/net/wireless/realtek/rtlwifi/rtl8192ee/
Dphy.c282 const u32 condition) in _check_condition() argument
289 u32 cond = condition; in _check_condition()
291 if (condition == 0xCDCDCDCD) in _check_condition()
294 cond = condition & 0xFF; in _check_condition()
298 cond = condition & 0xFF00; in _check_condition()
303 cond = condition & 0xFF0000; in _check_condition()
/linux-4.4.14/Documentation/
DCodingStyle62 if (condition) do_this;
136 } while (condition);
158 if (condition)
163 if (condition)
171 if (condition) {
915 block references symbols that will not exist if the condition is not met.
Dstable_kernel_rules.txt22 - No "theoretical race condition" issues, unless an explanation of how the
Dcrc32.txt174 a CRC to detect this condition, it's common to invert the CRC before
/linux-4.4.14/Documentation/trace/
Dtracepoints.txt18 (checking a condition for a branch) and space penalty (adding a few
Dmmiotrace.txt116 Setting the page present in the page fault handler has a race condition on SMP
/linux-4.4.14/arch/cris/arch-v10/kernel/
Dentry.S206 pop $dccr ; condition codes
220 pop $dccr ; condition codes
/linux-4.4.14/Documentation/PCI/
Dpci-error-recovery.txt22 into working condition. The reset phase requires coordination
240 in working condition.
400 condition, typically by masking the IRQ source during the duration of
/linux-4.4.14/Documentation/netlabel/
Ddraft-ietf-cipso-ipsecurity-01.txt612 The default condition for any CIPSO implementation is that an
643 All datagrams leaving a CIPSO system MUST meet the following condition:
647 If this condition is not satisfied the datagram MUST be discarded.
650 the above condition.
/linux-4.4.14/Documentation/video4linux/cx2341x/
Dfw-decoder-api.txt116 This API call may be used to detect an end of stream condition.
Dfw-encoder-api.txt552 During a pause condition, all frames are dropped instead of being encoded.
/linux-4.4.14/Documentation/arm/
Dkernel_mode_neon.txt74 executed in kernel mode. If such a condition is encountered, the kernel will
/linux-4.4.14/Documentation/virtual/kvm/
Dlocking.txt91 /* 'if' condition is satisfied. */
Dtimekeeping.txt423 an overheating condition, and typically, there is no way to detect that this
424 condition has happened.
/linux-4.4.14/Documentation/console/
Dconsole.txt131 condition is satisfied, then the driver must call do_unregister_con_driver()
/linux-4.4.14/Documentation/isdn/
DREADME.diversion46 unconditionally (CFU), when not reachable (CFNR) or on busy condition
/linux-4.4.14/arch/
DKconfig66 instruction. When the condition flag is toggled to true, the
72 of the condition is slower, but those are always very rare.
/linux-4.4.14/Documentation/filesystems/
Dhpfs.txt220 Fixed a race-condition when write_inode is called while deleting file
274 Fixed race-condition in buffer code - it is in all filesystems in Linux;
Dseq_file.txt101 "past end of file" condition and return NULL if need be.
/linux-4.4.14/Documentation/cpu-freq/
Dpcc-cpufreq.txt104 also signifies if the CPU frequency is limited by a power budget condition.
/linux-4.4.14/drivers/net/wireless/realtek/rtlwifi/rtl8821ae/
Dphy.c665 const u32 condition) in _rtl8821ae_check_condition() argument
671 u32 cond = condition; in _rtl8821ae_check_condition()
673 if (condition == 0xCDCDCDCD) in _rtl8821ae_check_condition()
676 cond = condition & 0xFF; in _rtl8821ae_check_condition()
680 cond = condition & 0xFF00; in _rtl8821ae_check_condition()
685 cond = condition & 0xFF0000; in _rtl8821ae_check_condition()
/linux-4.4.14/arch/blackfin/
DKconfig.debug33 will happen immediately when an error condition occurs. This comes
/linux-4.4.14/Documentation/s390/
Dmonreader.txt166 indicates the error condition:
/linux-4.4.14/arch/alpha/kernel/
Derr_marvel.c62 env->condition); in marvel_print_680_frame()
/linux-4.4.14/arch/cris/arch-v32/kernel/
Dentry.S268 rfe ; Restore condition code stack in delay-slot.
/linux-4.4.14/Documentation/sysctl/
Dkernel.txt300 lockup condition is detected as to whether or not to gather further
827 when a soft lockup condition is detected as to whether or not
852 detect a hard lockup condition.
/linux-4.4.14/Documentation/sound/alsa/
DCMIPCI.txt70 formats, the 4/6-ch playback supports only the same condition for all
/linux-4.4.14/Documentation/prctl/
Dseccomp_filter.txt217 condition: future kernels may improve vsyscall emulation and current
/linux-4.4.14/drivers/net/wireless/ath/carl9170/
Dusb.c870 if (ar->intf->condition != USB_INTERFACE_BOUND) in carl9170_usb_restart()
/linux-4.4.14/drivers/net/wireless/zd1211rw/
Dzd_usb.c1502 if (!hw || intf->condition != USB_INTERFACE_BOUND) in pre_reset()
1522 if (!hw || intf->condition != USB_INTERFACE_BOUND) in post_reset()
/linux-4.4.14/drivers/usb/gadget/udc/
Dudc-xilinx.c1521 bool condition = (udc->usb_state != USB_STATE_SUSPENDED); in xudc_startup_handler() local
1523 dev_WARN_ONCE(udc->dev, condition, in xudc_startup_handler()
/linux-4.4.14/scripts/dtc/
Ddtc-lexer.lex.c_shipped122 /* Enter a start condition. This macro really ought to take a parameter,
807 /* Number of entries by which start-condition stack grows. */
1647 * @note This function does not reset the start condition to @c INITIAL .
/linux-4.4.14/scripts/genksyms/
Dlex.lex.c_shipped120 /* Enter a start condition. This macro really ought to take a parameter,
710 /* Number of entries by which start-condition stack grows. */
1351 * @note This function does not reset the start condition to @c INITIAL .
/linux-4.4.14/scripts/kconfig/
Dzconf.lex.c_shipped140 /* Enter a start condition. This macro really ought to take a parameter,
991 /* Number of entries by which start-condition stack grows. */
1803 * @note This function does not reset the start condition to @c INITIAL .
/linux-4.4.14/Documentation/nvdimm/
Dbtt.txt162 writes. We can hit a condition where the writer thread grabs a free block to do
/linux-4.4.14/drivers/net/wireless/p54/
Dp54usb.c454 int ret, lock = (priv->intf->condition != USB_INTERFACE_BINDING); in p54u_device_reset()
/linux-4.4.14/Documentation/locking/
Dww-mutex-design.txt223 different when retrying due to hitting the -EDEADLK wound condition) there's
/linux-4.4.14/Documentation/vm/
Dunevictable-lru.txt196 condition is keeping them unevictable. If an unevictable region is destroyed,
226 dropping the page lock. Because the condition which makes the page unevictable
/linux-4.4.14/Documentation/serial/
Ddriver190 Disable the port, disable any break condition that may be in

12