Searched defs:ws (Results 1 - 25 of 28) sorted by relevance

12

/drivers/net/wimax/i2400m/
H A Dsdio-tx.c73 void i2400ms_tx_submit(struct work_struct *ws) argument
76 struct i2400ms *i2400ms = container_of(ws, struct i2400ms, tx_worker);
H A Dnetdev.c153 void i2400m_wake_tx_work(struct work_struct *ws) argument
156 struct i2400m *i2400m = container_of(ws, struct i2400m, wake_tx_ws);
167 d_fnstart(3, dev, "(ws %p i2400m %p skb %p)\n", ws, i2400m, skb);
206 d_fnend(3, dev, "(ws %p i2400m %p skb %p) = void [%d]\n",
207 ws, i2400m, skb, result);
H A Ddriver.c601 void __i2400m_dev_reset_handle(struct work_struct *ws) argument
603 struct i2400m *i2400m = container_of(ws, struct i2400m, reset_ws);
609 d_fnstart(3, dev, "(ws %p i2400m %p reason %s)\n", ws, i2400m, reason);
682 d_fnend(3, dev, "(ws %p i2400m %p reason %s) = void\n",
683 ws, i2400m, reason);
713 void __i2400m_error_recovery(struct work_struct *ws) argument
715 struct i2400m *i2400m = container_of(ws, struct i2400m, recovery_ws);
H A Drx.c105 * - update ws: update the queue's window start and deliver queued
108 * - queue & update ws: queue a packet, update the window start and
183 void i2400m_report_hook_work(struct work_struct *ws) argument
185 struct i2400m *i2400m = container_of(ws, struct i2400m, rx_report_ws);
476 * @ws: Window Start; sequence number where the current window start
490 unsigned ws; member in struct:i2400m_roq
499 roq->ws = 0;
515 * nsn = (sn - ws) % 2048
517 * Note that if @sn < @roq->ws, we still need a positive number; %'s
525 r = ((int) sn - (int) roq->ws)
545 unsigned ws, count, sn, nsn, new_ws; member in struct:i2400m_roq_log::i2400m_roq_log_entry
588 i2400m_roq_log_add(struct i2400m *i2400m, struct i2400m_roq *roq, enum i2400m_ro_type type, unsigned ws, unsigned count, unsigned sn, unsigned nsn, unsigned new_ws) argument
[all...]
/drivers/usb/wusbcore/
H A Dwa-nep.c92 static void wa_notif_dispatch(struct work_struct *ws) argument
96 struct wa_notif_work *nw = container_of(ws, struct wa_notif_work, work);
H A Ddevconnect.c476 static void wusbhc_keep_alive_run(struct work_struct *ws) argument
478 struct delayed_work *dw = to_delayed_work(ws);
H A Dwa-xfer.c986 void wa_urb_enqueue_run(struct work_struct *ws) argument
988 struct wahc *wa = container_of(ws, struct wahc, xfer_work);
/drivers/isdn/mISDN/
H A Dhwchannel.c23 dchannel_bh(struct work_struct *ws) argument
25 struct dchannel *dch = container_of(ws, struct dchannel, workq);
46 bchannel_bh(struct work_struct *ws) argument
48 struct bchannel *bch = container_of(ws, struct bchannel, workq);
/drivers/tty/hvc/
H A Dhvc_console.h61 struct winsize ws; member in struct:hvc_struct
97 extern void __hvc_resize(struct hvc_struct *hp, struct winsize ws);
99 static inline void hvc_resize(struct hvc_struct *hp, struct winsize ws) argument
104 __hvc_resize(hp, ws);
H A Dhvc_console.c525 struct winsize ws; local
534 ws = hp->ws;
538 tty_do_resize(tty, &ws);
694 * @ws: Terminal window size structure
701 void __hvc_resize(struct hvc_struct *hp, struct winsize ws) argument
703 hp->ws = ws;
/drivers/hwmon/
H A Dgpio-fan.c56 static void fan_alarm_notify(struct work_struct *ws) argument
59 container_of(ws, struct gpio_fan_data, alarm_work);
/drivers/input/misc/
H A Dgpio_input.c48 struct wakeup_source *ws; member in struct:gpio_input_state
156 __pm_relax(ds->ws);
182 __pm_stay_awake(ds->ws);
305 ds->ws = wakeup_source_register(wlname);
307 if (!ds->ws) {
385 wakeup_source_unregister(ds->ws);
/drivers/misc/iwmc3200top/
H A Dmain.c73 static void iwmct_rescan_worker(struct work_struct *ws) argument
78 priv = container_of(ws, struct iwmct_priv, bus_rescan_worker);
183 static void iwmct_irq_read_worker(struct work_struct *ws) argument
193 priv = container_of(ws, struct iwmct_priv, isr_worker);
195 LOG_TRACE(priv, IRQ, "enter iwmct_irq_read_worker %p\n", ws);
/drivers/net/wireless/prism54/
H A Dislpci_mgt.h114 struct work_struct ws; /* argument for schedule_work() */ member in struct:islpci_mgmtframe
/drivers/tty/
H A Dpty.c236 * @ws: window size being set.
242 int pty_resize(struct tty_struct *tty, struct winsize *ws) argument
250 if (!memcmp(ws, &tty->winsize, sizeof(*ws)))
273 tty->winsize = *ws;
274 pty->winsize = *ws; /* Never used so will go away soon */
H A Dtty_io.c2164 int tty_do_resize(struct tty_struct *tty, struct winsize *ws) argument
2171 if (!memcmp(ws, &tty->winsize, sizeof(*ws)))
2183 tty->winsize = *ws;
/drivers/base/power/
H A Dwakeup.c58 * @ws: Wakeup source to prepare.
61 * Callers must ensure that the @name string won't be freed when @ws is still in
64 void wakeup_source_prepare(struct wakeup_source *ws, const char *name) argument
66 if (ws) {
67 memset(ws, 0, sizeof(*ws));
68 ws->name = name;
79 struct wakeup_source *ws; local
81 ws = kmalloc(sizeof(*ws), GFP_KERNE
97 wakeup_source_drop(struct wakeup_source *ws) argument
113 wakeup_source_destroy(struct wakeup_source *ws) argument
128 wakeup_source_add(struct wakeup_source *ws) argument
150 wakeup_source_remove(struct wakeup_source *ws) argument
170 struct wakeup_source *ws; local
184 wakeup_source_unregister(struct wakeup_source *ws) argument
200 device_wakeup_attach(struct device *dev, struct wakeup_source *ws) argument
220 struct wakeup_source *ws; local
246 struct wakeup_source *ws; local
264 struct wakeup_source *ws; local
381 wakeup_source_activate(struct wakeup_source *ws) argument
401 wakeup_source_report_event(struct wakeup_source *ws) argument
418 __pm_stay_awake(struct wakeup_source *ws) argument
460 update_prevent_sleep_time(struct wakeup_source *ws, ktime_t now) argument
466 update_prevent_sleep_time(struct wakeup_source *ws, ktime_t now) argument
478 wakeup_source_deactivate(struct wakeup_source *ws) argument
535 __pm_relax(struct wakeup_source *ws) argument
578 struct wakeup_source *ws = (struct wakeup_source *)data; local
604 __pm_wakeup_event(struct wakeup_source *ws, unsigned int msec) argument
658 struct wakeup_source *ws; local
779 struct wakeup_source *ws; local
807 print_wakeup_source_stats(struct seq_file *m, struct wakeup_source *ws) argument
858 struct wakeup_source *ws; local
[all...]
/drivers/spi/
H A Dspi-sh.c91 struct work_struct ws; member in struct:spi_sh_data
296 struct spi_sh_data *ss = container_of(work, struct spi_sh_data, ws);
395 queue_work(ss->workqueue, &ss->ws);
498 INIT_WORK(&ss->ws, spi_sh_work);
H A Dspi-rspi.c139 struct work_struct ws; member in struct:rspi_data
312 struct rspi_data *rspi = container_of(work, struct rspi_data, ws);
377 schedule_work(&rspi->ws);
471 INIT_WORK(&rspi->ws, rspi_work);
/drivers/gpu/drm/radeon/
H A Datom.c57 uint32_t *ps, *ws; member in struct:__anon602
263 val = ctx->ws[idx];
533 ctx->ws[idx] = val;
1162 int len, ws, ps, ptr; local
1171 ws = CU8(base + ATOM_CT_WS_PTR);
1175 SDEBUG(">> execute %04X (len %d, WS %d, PS %d)\n", base, len, ws, ps);
1183 if (ws)
1184 ectx.ws = kzalloc(4 * ws, GFP_KERNEL);
1186 ectx.ws
[all...]
/drivers/md/
H A Ddm-raid.c544 static void do_table_event(struct work_struct *ws) argument
546 struct raid_set *rs = container_of(ws, struct raid_set, md.event_work);
H A Ddm-thin.c1484 static void do_worker(struct work_struct *ws) argument
1486 struct pool *pool = container_of(ws, struct pool, worker);
1497 static void do_waker(struct work_struct *ws) argument
1499 struct pool *pool = container_of(to_delayed_work(ws), struct pool, waker);
/drivers/usb/core/
H A Dmessage.c1619 static void __usb_queue_reset_device(struct work_struct *ws) argument
1623 container_of(ws, struct usb_interface, reset_ws);
/drivers/char/
H A Dvirtio_console.c90 struct winsize ws; member in struct:console
922 hvc_resize(port->cons.hvc, port->cons.ws);
1093 port->cons.ws.ws_row = rows;
1094 port->cons.ws.ws_col = cols;
1153 port->cons.ws.ws_row = port->cons.ws.ws_col = 0;
/drivers/net/can/
H A Dmcp251x.c719 static void mcp251x_tx_work_handler(struct work_struct *ws) argument
721 struct mcp251x_priv *priv = container_of(ws, struct mcp251x_priv,
745 static void mcp251x_restart_work_handler(struct work_struct *ws) argument
747 struct mcp251x_priv *priv = container_of(ws, struct mcp251x_priv,

Completed in 573 milliseconds

12