Home
last modified time | relevance | path

Searched refs:wrq (Results 1 – 3 of 3) sorted by relevance

/linux-6.15/drivers/s390/char/
H A Dcon3270.c528 struct raw3270_request *wrq; in tty3270_update() local
532 wrq = xchg(&tp->write, NULL); in tty3270_update()
533 if (!wrq) { in tty3270_update()
542 raw3270_request_set_cmd(wrq, cmd); in tty3270_update()
543 raw3270_request_add_data(wrq, &tp->wcc, 1); in tty3270_update()
566 tty3270_update_lines_all(tp, wrq); in tty3270_update()
568 tty3270_update_lines_visible(tp, wrq); in tty3270_update()
571 wrq->callback = tty3270_write_callback; in tty3270_update()
572 rc = raw3270_start(&tp->view, wrq); in tty3270_update()
577 raw3270_request_reset(wrq); in tty3270_update()
[all …]
/linux-6.15/net/wireless/
H A Dwext-compat.c1123 struct iw_param *wrq = &wrqu->power; in cfg80211_wext_siwpower() local
1136 if (wrq->disabled) { in cfg80211_wext_siwpower()
1139 switch (wrq->flags & IW_POWER_MODE) { in cfg80211_wext_siwpower()
1149 if (wrq->flags & ~(IW_POWER_MODE | IW_POWER_TIMEOUT)) in cfg80211_wext_siwpower()
1152 if (wrq->flags & IW_POWER_TIMEOUT) in cfg80211_wext_siwpower()
1153 timeout = wrq->value / 1000; in cfg80211_wext_siwpower()
1173 struct iw_param *wrq = &wrqu->power; in cfg80211_wext_giwpower() local
1176 wrq->disabled = !wdev->ps; in cfg80211_wext_giwpower()
/linux-6.15/fs/nilfs2/
H A Dsegment.c2299 struct nilfs_segctor_wait_request *wrq, *n; in nilfs_segctor_wakeup() local
2303 list_for_each_entry_safe(wrq, n, &sci->sc_wait_request.head, wq.entry) { in nilfs_segctor_wakeup()
2304 if (!atomic_read(&wrq->done) && in nilfs_segctor_wakeup()
2305 (force || nilfs_cnt32_ge(sci->sc_seq_done, wrq->seq))) { in nilfs_segctor_wakeup()
2306 wrq->err = err; in nilfs_segctor_wakeup()
2307 atomic_set(&wrq->done, 1); in nilfs_segctor_wakeup()
2309 if (atomic_read(&wrq->done)) { in nilfs_segctor_wakeup()
2310 wrq->wq.func(&wrq->wq, in nilfs_segctor_wakeup()