Searched refs:blocked (Results 51 - 75 of 118) sorted by relevance

12345

/linux-master/init/
H A Dinit_task.c125 .blocked = {{0}},
/linux-master/drivers/net/wireless/ath/ath9k/
H A Dgpio.c120 bool blocked = !!ath_is_rfkill_set(sc); local
122 wiphy_rfkill_set_hw_state(hw->wiphy, blocked);
/linux-master/fs/ocfs2/dlm/
H A Ddlmlock.c160 list_add_tail(&lock->list, &res->blocked);
222 list_add_tail(&lock->list, &res->blocked);
H A Ddlmast.c245 mlog(0, "%s: res %.*s, lock %u:%llu, Local BAST, blocked %d\n",
352 /* if not on convert, try blocked for ast, granted for bast */
354 head = &res->blocked;
H A Ddlmdebug.c110 printk(" blocked queue:\n");
111 list_for_each_entry(lock, &res->blocked, list) {
173 [DLM_BLOCKED] = "lock request blocked",
174 [DLM_BLOCKED_ORPHAN] = "lock request blocked by a orphan lock",
195 [DLM_ABORT] = "blocked lock request cancelled",
530 /* blocked */
531 list_for_each_entry(lock, &res->blocked, list)
H A Ddlmcommon.h281 * Please keep granted, converting, and blocked in this order,
288 struct list_head blocked; member in struct:dlm_lock_resource
326 u8 list; // 0=granted, 1=converting, 2=blocked
382 return "blocked";
396 ret = &res->blocked;
/linux-master/include/linux/sched/
H A Dsignal.h290 ret = dequeue_signal(task, &task->blocked, &__info, &__type);
433 * This is required every time the blocked sigset_t changes.
556 sigset_t *res = &current->blocked;
/linux-master/drivers/isdn/capi/
H A Dkcapi.c448 ctr->blocked = 0;
676 if (ctr->blocked)
/linux-master/drivers/gpu/drm/i915/gt/
H A Dintel_engine_heartbeat.c179 * ringbuffer. If one context is blocked on an
215 if (xchg(&engine->heartbeat.blocked, serial) == serial)
H A Dintel_engine_types.h443 unsigned long blocked; member in struct:intel_engine_cs::__anon686
/linux-master/drivers/platform/x86/dell/
H A Ddell-rbtn.c101 static int rbtn_rfkill_set_block(void *data, bool blocked) argument
/linux-master/drivers/platform/x86/hp/
H A Dhp-wmi.c591 static int hp_wmi_set_block(void *data, bool blocked) argument
594 int query = BIT(r + 8) | ((!blocked) << r);
631 static int hp_wmi_rfkill2_set_block(void *data, bool blocked) argument
634 char buffer[4] = { 0x01, 0x00, rfkill_id, !blocked };
1177 pr_info("device %s blocked by BIOS\n", name);
/linux-master/drivers/infiniband/hw/bnxt_re/
H A Dqplib_rcfw.c628 u16 cookie, blocked = 0; local
665 blocked = cookie & RCFW_CMD_IS_BLOCKING;
691 if (!blocked)
/linux-master/net/nfc/
H A Dcore.c170 static int nfc_rfkill_set_block(void *data, bool blocked) argument
174 pr_debug("%s blocked %d", dev_name(&dev->dev), blocked);
176 if (!blocked)
/linux-master/kernel/rcu/
H A Dtasks.h34 * @rtp_blkd_tasks: List of tasks blocked as readers.
755 * that are not already voluntarily blocked. Mark these tasks
1412 // holdout list, then checks the state of all tasks that blocked
1503 * Also remove from the per-CPU list of blocked tasks.
1524 if (trs.b.blocked) {
1528 WRITE_ONCE(t->trc_reader_special.b.blocked, false);
1535 /* Add a newly blocked reader task to its CPU's list. */
1548 WRITE_ONCE(t->trc_reader_special.b.blocked, true);
1768 // safe to take care of the tasks that have blocked within their
1848 ".B"[!!data_race(t->trc_reader_special.b.blocked)],
[all...]
/linux-master/fs/bcachefs/
H A Djournal.c127 * can end up stuck for a variety of reasons, such as a blocked I/O, journal
362 if (j->blocked)
507 if (j->blocked)
850 j->blocked--;
859 j->blocked++;
1446 prt_printf(out, "blocked:\t%u\n", j->blocked);
/linux-master/drivers/platform/x86/
H A Dasus-wmi.c1768 bool blocked; local
1773 blocked = asus_wlan_rfkill_blocked(asus);
1780 rfkill_set_sw_state(asus->wlan.rfkill, blocked);
1795 if (blocked != absent) {
1797 blocked ? "blocked" : "unblocked",
1803 if (!blocked) {
1942 static int asus_rfkill_set(void *data, bool blocked) argument
1945 u32 ctrl_param = !blocked;
1976 static int asus_rfkill_wlan_set(void *data, bool blocked) argument
[all...]
H A Dcompal-laptop.c338 static int compal_rfkill_set(void *data, bool blocked) argument
344 if (!blocked)
/linux-master/fs/fuse/
H A Ddev.c87 return !fc->initialized || (for_background && fc->blocked);
169 if (!fc->blocked)
305 fc->blocked = 0;
307 } else if (!fc->blocked) {
311 * fc->blocked with waiters with the wake_up() call
540 fc->blocked = 1;
2223 fc->blocked = 0;
/linux-master/drivers/tty/
H A Dtty_jobctrl.c18 return (sigismember(&current->blocked, sig) ||
28 * not in the foreground, send a SIGTTOU. If the signal is blocked or
/linux-master/net/wireless/
H A Dcore.c304 static int cfg80211_rfkill_set_block(void *data, bool blocked) argument
308 if (!blocked)
1179 void wiphy_rfkill_set_hw_state_reason(struct wiphy *wiphy, bool blocked, argument
1184 if (rfkill_set_hw_state_reason(wiphy->rfkill, blocked, reason))
/linux-master/fs/ubifs/
H A Djournal.c404 bool blocked = wait_for_reservation(c); local
462 if (!blocked) {
463 blocked = true;
490 if (blocked) {
505 * if (blocked) // false
/linux-master/drivers/net/wireless/mediatek/mt76/
H A Dmt76.h219 bool blocked; member in struct:mt76_queue
1659 void __mt76_set_tx_blocked(struct mt76_dev *dev, bool blocked);
1683 static inline void mt76_set_tx_blocked(struct mt76_dev *dev, bool blocked) argument
1686 __mt76_set_tx_blocked(dev, blocked);
/linux-master/include/linux/
H A Drcupdate.h191 !READ_ONCE((t)->trc_reader_special.b.blocked)) { \
/linux-master/drivers/net/wireless/broadcom/b43/
H A Dphy_lcn.c743 bool blocked)
748 if (blocked) {
742 b43_phy_lcn_op_software_rfkill(struct b43_wldev *dev, bool blocked) argument

Completed in 273 milliseconds

12345