Home
last modified time | relevance | path

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

/linux/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()
551 if (raw3270_request_add_data(wrq, tp->converted_line, len) == 0) in tty3270_update()
560 if (raw3270_request_add_data(wrq, tp->converted_line, len) == 0) 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()
[all …]
/linux/net/wireless/
H A Dwext-compat.c1122 struct iw_param *wrq = &wrqu->power; in cfg80211_wext_siwpower() local
1135 if (wrq->disabled) { in cfg80211_wext_siwpower()
1138 switch (wrq->flags & IW_POWER_MODE) { in cfg80211_wext_siwpower()
1148 if (wrq->flags & ~(IW_POWER_MODE | IW_POWER_TIMEOUT)) in cfg80211_wext_siwpower()
1151 if (wrq->flags & IW_POWER_TIMEOUT) in cfg80211_wext_siwpower()
1152 timeout = wrq->value / 1000; in cfg80211_wext_siwpower()
1172 struct iw_param *wrq = &wrqu->power; in cfg80211_wext_giwpower() local
1175 wrq->disabled = !wdev->ps; in cfg80211_wext_giwpower()
/linux/fs/nilfs2/
H A Dsegment.c2283 struct nilfs_segctor_wait_request *wrq, *n; in nilfs_segctor_wakeup() local
2287 list_for_each_entry_safe(wrq, n, &sci->sc_wait_request.head, wq.entry) { in nilfs_segctor_wakeup()
2288 if (!atomic_read(&wrq->done) && in nilfs_segctor_wakeup()
2289 (force || nilfs_cnt32_ge(sci->sc_seq_done, wrq->seq))) { in nilfs_segctor_wakeup()
2290 wrq->err = err; in nilfs_segctor_wakeup()
2291 atomic_set(&wrq->done, 1); in nilfs_segctor_wakeup()
2293 if (atomic_read(&wrq->done)) { in nilfs_segctor_wakeup()
2294 wrq->wq.func(&wrq->wq, in nilfs_segctor_wakeup()