Home
last modified time | relevance | path

Searched refs:up (Results 1 – 200 of 1718) sorted by relevance

123456789

/linux-4.1.27/drivers/tty/serial/
Domap-serial.c180 static void serial_omap_mdr1_errataset(struct uart_omap_port *up, u8 mdr1);
182 static inline unsigned int serial_in(struct uart_omap_port *up, int offset) in serial_in() argument
184 offset <<= up->port.regshift; in serial_in()
185 return readw(up->port.membase + offset); in serial_in()
188 static inline void serial_out(struct uart_omap_port *up, int offset, int value) in serial_out() argument
190 offset <<= up->port.regshift; in serial_out()
191 writew(value, up->port.membase + offset); in serial_out()
194 static inline void serial_omap_clear_fifos(struct uart_omap_port *up) in serial_omap_clear_fifos() argument
196 serial_out(up, UART_FCR, UART_FCR_ENABLE_FIFO); in serial_omap_clear_fifos()
197 serial_out(up, UART_FCR, UART_FCR_ENABLE_FIFO | in serial_omap_clear_fifos()
[all …]
Dsunsu.c107 static unsigned int serial_in(struct uart_sunsu_port *up, int offset) in serial_in() argument
109 offset <<= up->port.regshift; in serial_in()
111 switch (up->port.iotype) { in serial_in()
113 outb(up->port.hub6 - 1 + offset, up->port.iobase); in serial_in()
114 return inb(up->port.iobase + 1); in serial_in()
117 return readb(up->port.membase + offset); in serial_in()
120 return inb(up->port.iobase + offset); in serial_in()
124 static void serial_out(struct uart_sunsu_port *up, int offset, int value) in serial_out() argument
138 offset <<= up->port.regshift; in serial_out()
140 switch (up->port.iotype) { in serial_out()
[all …]
Dsunsab.c94 static __inline__ void sunsab_tec_wait(struct uart_sunsab_port *up) in sunsab_tec_wait() argument
96 int timeout = up->tec_timeout; in sunsab_tec_wait()
98 while ((readb(&up->regs->r.star) & SAB82532_STAR_TEC) && --timeout) in sunsab_tec_wait()
102 static __inline__ void sunsab_cec_wait(struct uart_sunsab_port *up) in sunsab_cec_wait() argument
104 int timeout = up->cec_timeout; in sunsab_cec_wait()
106 while ((readb(&up->regs->r.star) & SAB82532_STAR_CEC) && --timeout) in sunsab_cec_wait()
111 receive_chars(struct uart_sunsab_port *up, in receive_chars() argument
121 if (up->port.state != NULL) /* Unopened serial console */ in receive_chars()
122 port = &up->port.state->port; in receive_chars()
131 count = readb(&up->regs->r.rbcl) & (SAB82532_RECV_FIFO_SIZE - 1); in receive_chars()
[all …]
Dbfin_sport_uart.c59 static int sport_uart_tx_chars(struct sport_uart_port *up);
62 static inline void tx_one_byte(struct sport_uart_port *up, unsigned int value) in tx_one_byte() argument
65 up->txmask1, up->txmask2); in tx_one_byte()
73 : [mask1]"d"(up->txmask1), [mask2]"d"(up->txmask2) in tx_one_byte()
78 SPORT_PUT_TX(up, value); in tx_one_byte()
81 static inline unsigned char rx_one_byte(struct sport_uart_port *up) in rx_one_byte() argument
87 if ((up->csize + up->stopb) > 7) in rx_one_byte()
88 value = SPORT_GET_RX32(up); in rx_one_byte()
90 value = SPORT_GET_RX(up); in rx_one_byte()
93 up->csize, up->rxmask); in rx_one_byte()
[all …]
Dpxa.c60 static inline unsigned int serial_in(struct uart_pxa_port *up, int offset) in serial_in() argument
63 return readl(up->port.membase + offset); in serial_in()
66 static inline void serial_out(struct uart_pxa_port *up, int offset, int value) in serial_out() argument
69 writel(value, up->port.membase + offset); in serial_out()
74 struct uart_pxa_port *up = (struct uart_pxa_port *)port; in serial_pxa_enable_ms() local
76 up->ier |= UART_IER_MSI; in serial_pxa_enable_ms()
77 serial_out(up, UART_IER, up->ier); in serial_pxa_enable_ms()
82 struct uart_pxa_port *up = (struct uart_pxa_port *)port; in serial_pxa_stop_tx() local
84 if (up->ier & UART_IER_THRI) { in serial_pxa_stop_tx()
85 up->ier &= ~UART_IER_THRI; in serial_pxa_stop_tx()
[all …]
Dnwpserial.c44 static void wait_for_bits(struct nwpserial_port *up, int bits) in wait_for_bits() argument
50 status = dcr_read(up->dcr_host, UART_LSR); in wait_for_bits()
61 struct nwpserial_port *up; in nwpserial_console_putchar() local
62 up = container_of(port, struct nwpserial_port, port); in nwpserial_console_putchar()
64 wait_for_bits(up, UART_LSR_THRE); in nwpserial_console_putchar()
65 dcr_write(up->dcr_host, UART_TX, c); in nwpserial_console_putchar()
66 up->port.icount.tx++; in nwpserial_console_putchar()
72 struct nwpserial_port *up = &nwpserial_ports[co->index]; in nwpserial_console_write() local
77 locked = spin_trylock_irqsave(&up->port.lock, flags); in nwpserial_console_write()
79 spin_lock_irqsave(&up->port.lock, flags); in nwpserial_console_write()
[all …]
Dsunzilog.c271 static void sunzilog_maybe_update_regs(struct uart_sunzilog_port *up, in sunzilog_maybe_update_regs() argument
274 if (!ZS_REGS_HELD(up)) { in sunzilog_maybe_update_regs()
275 if (ZS_TX_ACTIVE(up)) { in sunzilog_maybe_update_regs()
276 up->flags |= SUNZILOG_FLAG_REGS_HELD; in sunzilog_maybe_update_regs()
278 __load_zsregs(channel, up->curregs); in sunzilog_maybe_update_regs()
283 static void sunzilog_change_mouse_baud(struct uart_sunzilog_port *up) in sunzilog_change_mouse_baud() argument
285 unsigned int cur_cflag = up->cflag; in sunzilog_change_mouse_baud()
288 up->cflag &= ~CBAUD; in sunzilog_change_mouse_baud()
289 up->cflag |= suncore_mouse_baud_cflag_next(cur_cflag, &new_baud); in sunzilog_change_mouse_baud()
292 up->curregs[R12] = (brg & 0xff); in sunzilog_change_mouse_baud()
[all …]
Dar933x_uart.c60 static inline unsigned int ar933x_uart_read(struct ar933x_uart_port *up, in ar933x_uart_read() argument
63 return readl(up->port.membase + offset); in ar933x_uart_read()
66 static inline void ar933x_uart_write(struct ar933x_uart_port *up, in ar933x_uart_write() argument
69 writel(value, up->port.membase + offset); in ar933x_uart_write()
72 static inline void ar933x_uart_rmw(struct ar933x_uart_port *up, in ar933x_uart_rmw() argument
79 t = ar933x_uart_read(up, offset); in ar933x_uart_rmw()
82 ar933x_uart_write(up, offset, t); in ar933x_uart_rmw()
85 static inline void ar933x_uart_rmw_set(struct ar933x_uart_port *up, in ar933x_uart_rmw_set() argument
89 ar933x_uart_rmw(up, offset, 0, val); in ar933x_uart_rmw_set()
92 static inline void ar933x_uart_rmw_clear(struct ar933x_uart_port *up, in ar933x_uart_rmw_clear() argument
[all …]
Dserial_txx9.c173 static inline unsigned int sio_in(struct uart_txx9_port *up, int offset) in sio_in() argument
175 switch (up->port.iotype) { in sio_in()
177 return __raw_readl(up->port.membase + offset); in sio_in()
179 return inl(up->port.iobase + offset); in sio_in()
184 sio_out(struct uart_txx9_port *up, int offset, int value) in sio_out() argument
186 switch (up->port.iotype) { in sio_out()
188 __raw_writel(value, up->port.membase + offset); in sio_out()
191 outl(value, up->port.iobase + offset); in sio_out()
197 sio_mask(struct uart_txx9_port *up, int offset, unsigned int value) in sio_mask() argument
199 sio_out(up, offset, sio_in(up, offset) & ~value); in sio_mask()
[all …]
Dip22zilog.c236 static void ip22zilog_maybe_update_regs(struct uart_ip22zilog_port *up, in ip22zilog_maybe_update_regs() argument
239 if (!ZS_REGS_HELD(up)) { in ip22zilog_maybe_update_regs()
240 if (ZS_TX_ACTIVE(up)) { in ip22zilog_maybe_update_regs()
241 up->flags |= IP22ZILOG_FLAG_REGS_HELD; in ip22zilog_maybe_update_regs()
243 __load_zsregs(channel, up->curregs); in ip22zilog_maybe_update_regs()
251 static bool ip22zilog_receive_chars(struct uart_ip22zilog_port *up, in ip22zilog_receive_chars() argument
256 bool push = up->port.state != NULL; in ip22zilog_receive_chars()
274 ch &= up->parity_mask; in ip22zilog_receive_chars()
278 r1 |= up->tty_break; in ip22zilog_receive_chars()
282 up->port.icount.rx++; in ip22zilog_receive_chars()
[all …]
Dm32r_sio.c224 static unsigned int sio_in(struct uart_sio_port *up, int offset) in sio_in() argument
226 return __sio_in(up->port.iobase + offset); in sio_in()
229 static void sio_out(struct uart_sio_port *up, int offset, int value) in sio_out() argument
231 __sio_out(value, up->port.iobase + offset); in sio_out()
234 static unsigned int serial_in(struct uart_sio_port *up, int offset) in serial_in() argument
242 static void serial_out(struct uart_sio_port *up, int offset, int value) in serial_out() argument
252 struct uart_sio_port *up = in m32r_sio_stop_tx() local
255 if (up->ier & UART_IER_THRI) { in m32r_sio_stop_tx()
256 up->ier &= ~UART_IER_THRI; in m32r_sio_stop_tx()
257 serial_out(up, UART_IER, up->ier); in m32r_sio_stop_tx()
[all …]
Detraxfs-uart.c52 struct uart_cris_port *up; in cris_console_write() local
57 up = etraxfs_uart_ports[co->index]; in cris_console_write()
59 if (!up) in cris_console_write()
63 tr_dma_en = old = REG_RD(ser, up->regi_ser, rw_tr_dma_en); in cris_console_write()
66 REG_WR(ser, up->regi_ser, rw_tr_dma_en, tr_dma_en); in cris_console_write()
74 stat = REG_RD(ser, up->regi_ser, r_stat_din); in cris_console_write()
76 REG_WR_INT(ser, up->regi_ser, rw_dout, '\r'); in cris_console_write()
80 stat = REG_RD(ser, up->regi_ser, r_stat_din); in cris_console_write()
82 REG_WR_INT(ser, up->regi_ser, rw_dout, s[i]); in cris_console_write()
87 REG_WR(ser, up->regi_ser, rw_tr_dma_en, old); in cris_console_write()
[all …]
Drp2.c237 static void rp2_rmw(struct rp2_uart_port *up, int reg, in rp2_rmw() argument
240 u32 tmp = readl(up->base + reg); in rp2_rmw()
243 writel(tmp, up->base + reg); in rp2_rmw()
246 static void rp2_rmw_clr(struct rp2_uart_port *up, int reg, u32 val) in rp2_rmw_clr() argument
248 rp2_rmw(up, reg, val, 0); in rp2_rmw_clr()
251 static void rp2_rmw_set(struct rp2_uart_port *up, int reg, u32 val) in rp2_rmw_set() argument
253 rp2_rmw(up, reg, 0, val); in rp2_rmw_set()
256 static void rp2_mask_ch_irq(struct rp2_uart_port *up, int ch_num, in rp2_mask_ch_irq() argument
261 spin_lock_irqsave(&up->card->card_lock, flags); in rp2_mask_ch_irq()
263 irq_mask = readl(up->asic_base + RP2_CH_IRQ_MASK); in rp2_mask_ch_irq()
[all …]
Dsprd_serial.c688 struct uart_port *up; in sprd_probe() local
708 up = &sprd_port[index]->port; in sprd_probe()
709 up->dev = &pdev->dev; in sprd_probe()
710 up->line = index; in sprd_probe()
711 up->type = PORT_SPRD; in sprd_probe()
712 up->iotype = UPIO_MEM; in sprd_probe()
713 up->uartclk = SPRD_DEF_RATE; in sprd_probe()
714 up->fifosize = SPRD_FIFO_SIZE; in sprd_probe()
715 up->ops = &serial_sprd_ops; in sprd_probe()
716 up->flags = UPF_BOOT_AUTOCONF; in sprd_probe()
[all …]
Dlpc32xx_hs.c142 struct lpc32xx_hsuart_port *up = &lpc32xx_hs_ports[co->index]; in lpc32xx_hsuart_console_write() local
148 if (up->port.sysrq) in lpc32xx_hsuart_console_write()
151 locked = spin_trylock(&up->port.lock); in lpc32xx_hsuart_console_write()
153 spin_lock(&up->port.lock); in lpc32xx_hsuart_console_write()
155 uart_console_write(&up->port, s, count, lpc32xx_hsuart_console_putchar); in lpc32xx_hsuart_console_write()
156 wait_for_xmit_empty(&up->port); in lpc32xx_hsuart_console_write()
159 spin_unlock(&up->port.lock); in lpc32xx_hsuart_console_write()
/linux-4.1.27/drivers/tty/serial/8250/
D8250_core.c353 static int default_serial_dl_read(struct uart_8250_port *up) in default_serial_dl_read() argument
355 return serial_in(up, UART_DLL) | serial_in(up, UART_DLM) << 8; in default_serial_dl_read()
359 static void default_serial_dl_write(struct uart_8250_port *up, int value) in default_serial_dl_write() argument
361 serial_out(up, UART_DLL, value & 0xff); in default_serial_dl_write()
362 serial_out(up, UART_DLM, value >> 8 & 0xff); in default_serial_dl_write()
411 static int au_serial_dl_read(struct uart_8250_port *up) in au_serial_dl_read() argument
413 return __raw_readl(up->port.membase + 0x28); in au_serial_dl_read()
416 static void au_serial_dl_write(struct uart_8250_port *up, int value) in au_serial_dl_write() argument
418 __raw_writel(value, up->port.membase + 0x28); in au_serial_dl_write()
490 struct uart_8250_port *up = up_to_u8250p(p); in set_io_from_upio() local
[all …]
D8250_omap.c103 static u32 uart_read(struct uart_8250_port *up, u32 reg) in uart_read() argument
105 return readl(up->port.membase + (reg << up->port.regshift)); in uart_read()
110 struct uart_8250_port *up = up_to_u8250p(port); in omap8250_set_mctrl() local
111 struct omap8250_priv *priv = up->port.private_data; in omap8250_set_mctrl()
120 lcr = serial_in(up, UART_LCR); in omap8250_set_mctrl()
121 serial_out(up, UART_LCR, UART_LCR_CONF_MODE_B); in omap8250_set_mctrl()
126 serial_out(up, UART_EFR, priv->efr); in omap8250_set_mctrl()
127 serial_out(up, UART_LCR, lcr); in omap8250_set_mctrl()
139 static void omap_8250_mdr1_errataset(struct uart_8250_port *up, in omap_8250_mdr1_errataset() argument
145 old_mdr1 = serial_in(up, UART_OMAP_MDR1); in omap_8250_mdr1_errataset()
[all …]
D8250_em.c79 static int serial8250_em_serial_dl_read(struct uart_8250_port *up) in serial8250_em_serial_dl_read() argument
81 return serial_in(up, UART_DLL_EM) | serial_in(up, UART_DLM_EM) << 8; in serial8250_em_serial_dl_read()
84 static void serial8250_em_serial_dl_write(struct uart_8250_port *up, int value) in serial8250_em_serial_dl_write() argument
86 serial_out(up, UART_DLL_EM, value & 0xff); in serial8250_em_serial_dl_write()
87 serial_out(up, UART_DLM_EM, value >> 8 & 0xff); in serial8250_em_serial_dl_write()
95 struct uart_8250_port up; in serial8250_em_probe() local
113 memset(&up, 0, sizeof(up)); in serial8250_em_probe()
114 up.port.mapbase = regs->start; in serial8250_em_probe()
115 up.port.irq = irq->start; in serial8250_em_probe()
116 up.port.type = PORT_UNKNOWN; in serial8250_em_probe()
[all …]
D8250_fsl.c31 struct uart_8250_port *up = up_to_u8250p(port); in fsl8250_handle_irq() local
33 spin_lock_irqsave(&up->port.lock, flags); in fsl8250_handle_irq()
37 spin_unlock_irqrestore(&up->port.lock, flags); in fsl8250_handle_irq()
42 if (unlikely(up->lsr_saved_flags & UART_LSR_BI)) { in fsl8250_handle_irq()
43 up->lsr_saved_flags &= ~UART_LSR_BI; in fsl8250_handle_irq()
45 spin_unlock_irqrestore(&up->port.lock, flags); in fsl8250_handle_irq()
49 lsr = orig_lsr = up->port.serial_in(&up->port, UART_LSR); in fsl8250_handle_irq()
52 lsr = serial8250_rx_chars(up, lsr); in fsl8250_handle_irq()
54 serial8250_modem_status(up); in fsl8250_handle_irq()
57 serial8250_tx_chars(up); in fsl8250_handle_irq()
[all …]
D8250.h95 static inline int serial_in(struct uart_8250_port *up, int offset) in serial_in() argument
97 return up->port.serial_in(&up->port, offset); in serial_in()
100 static inline void serial_out(struct uart_8250_port *up, int offset, int value) in serial_out() argument
102 up->port.serial_out(&up->port, offset, value); in serial_out()
107 static inline int serial_dl_read(struct uart_8250_port *up) in serial_dl_read() argument
109 return up->dl_read(up); in serial_dl_read()
112 static inline void serial_dl_write(struct uart_8250_port *up, int value) in serial_dl_write() argument
114 up->dl_write(up, value); in serial_dl_write()
198 static inline int ns16550a_goto_highspeed(struct uart_8250_port *up) in ns16550a_goto_highspeed() argument
202 status = serial_in(up, 0x04); /* EXCR2 */ in ns16550a_goto_highspeed()
[all …]
D8250_dw.c96 struct uart_8250_port *up = up_to_u8250p(p); in dw8250_force_idle() local
98 serial8250_clear_and_reinit_fifos(up); in dw8250_force_idle()
269 static void dw8250_setup_port(struct uart_8250_port *up) in dw8250_setup_port() argument
271 struct uart_port *p = &up->port; in dw8250_setup_port()
293 up->tx_loadsz = p->fifosize; in dw8250_setup_port()
294 up->capabilities = UART_CAP_FIFO; in dw8250_setup_port()
298 up->capabilities |= UART_CAP_AFE; in dw8250_setup_port()
305 struct uart_8250_port *up = up_to_u8250p(p); in dw8250_probe_of() local
335 dw8250_setup_port(up); in dw8250_probe_of()
339 up->dma = &data->dma; in dw8250_probe_of()
[all …]
D8250_mtk.c46 struct uart_8250_port *up = in mtk8250_set_termios() local
94 serial_port_out(port, UART_LCR, up->lcr | UART_LCR_DLAB); in mtk8250_set_termios()
95 serial_dl_write(up, quot); in mtk8250_set_termios()
98 serial_port_out(port, UART_LCR, up->lcr); in mtk8250_set_termios()
/linux-4.1.27/drivers/media/v4l2-core/
Dv4l2-compat-ioctl32.c48 static int get_v4l2_window32(struct v4l2_window *kp, struct v4l2_window32 __user *up) in get_v4l2_window32() argument
50 if (!access_ok(VERIFY_READ, up, sizeof(struct v4l2_window32)) || in get_v4l2_window32()
51 copy_from_user(&kp->w, &up->w, sizeof(up->w)) || in get_v4l2_window32()
52 get_user(kp->field, &up->field) || in get_v4l2_window32()
53 get_user(kp->chromakey, &up->chromakey) || in get_v4l2_window32()
54 get_user(kp->clipcount, &up->clipcount)) in get_v4l2_window32()
64 if (get_user(p, &up->clips)) in get_v4l2_window32()
82 static int put_v4l2_window32(struct v4l2_window *kp, struct v4l2_window32 __user *up) in put_v4l2_window32() argument
84 if (copy_to_user(&up->w, &kp->w, sizeof(kp->w)) || in put_v4l2_window32()
85 put_user(kp->field, &up->field) || in put_v4l2_window32()
[all …]
/linux-4.1.27/drivers/mtd/maps/
Dsun_uflash.c52 struct uflash_dev *up; in uflash_devinit() local
64 up = kzalloc(sizeof(struct uflash_dev), GFP_KERNEL); in uflash_devinit()
65 if (!up) { in uflash_devinit()
71 memcpy(&up->map, &uflash_map_templ, sizeof(uflash_map_templ)); in uflash_devinit()
73 up->map.size = resource_size(&op->resource[0]); in uflash_devinit()
75 up->name = of_get_property(dp, "model", NULL); in uflash_devinit()
76 if (up->name && 0 < strlen(up->name)) in uflash_devinit()
77 up->map.name = up->name; in uflash_devinit()
79 up->map.phys = op->resource[0].start; in uflash_devinit()
81 up->map.virt = of_ioremap(&op->resource[0], 0, up->map.size, in uflash_devinit()
[all …]
/linux-4.1.27/arch/mips/pmcs-msp71xx/
Dmsp_serial.c95 struct uart_port up; in msp_serial_setup() local
98 memset(&up, 0, sizeof(up)); in msp_serial_setup()
107 up.mapbase = MSP_UART0_BASE; in msp_serial_setup()
108 up.membase = ioremap_nocache(up.mapbase, MSP_UART_REG_LEN); in msp_serial_setup()
109 up.irq = MSP_INT_UART0; in msp_serial_setup()
110 up.uartclk = uartclk; in msp_serial_setup()
111 up.regshift = 2; in msp_serial_setup()
112 up.iotype = UPIO_MEM; in msp_serial_setup()
113 up.flags = ASYNC_BOOT_AUTOCONF | ASYNC_SKIP_TEST; in msp_serial_setup()
114 up.type = PORT_16550A; in msp_serial_setup()
[all …]
/linux-4.1.27/lib/mpi/
Dmpih-mul.c34 #define MPN_MUL_N_RECURSE(prodp, up, vp, size, tspace) \ argument
37 mul_n_basecase(prodp, up, vp, size); \
39 mul_n(prodp, up, vp, size, tspace); \
42 #define MPN_SQR_N_RECURSE(prodp, up, size, tspace) \ argument
45 mpih_sqr_n_basecase(prodp, up, size); \
47 mpih_sqr_n(prodp, up, size, tspace); \
68 mul_n_basecase(mpi_ptr_t prodp, mpi_ptr_t up, mpi_ptr_t vp, mpi_size_t size) in mul_n_basecase() argument
79 MPN_COPY(prodp, up, size); in mul_n_basecase()
84 cy = mpihelp_mul_1(prodp, up, size, v_limb); in mul_n_basecase()
96 cy = mpihelp_add_n(prodp, prodp, up, size); in mul_n_basecase()
[all …]
Dmpi-internal.h123 #define MPN_MUL_N_RECURSE(prodp, up, vp, size, tspace) \ argument
126 mul_n_basecase(prodp, up, vp, size); \
128 mul_n(prodp, up, vp, size, tspace); \
205 int mpihelp_mul_n(mpi_ptr_t prodp, mpi_ptr_t up, mpi_ptr_t vp, mpi_size_t size);
206 int mpihelp_mul(mpi_ptr_t prodp, mpi_ptr_t up, mpi_size_t usize,
208 void mpih_sqr_n_basecase(mpi_ptr_t prodp, mpi_ptr_t up, mpi_size_t size);
209 void mpih_sqr_n(mpi_ptr_t prodp, mpi_ptr_t up, mpi_size_t size,
213 mpi_ptr_t up, mpi_size_t usize,
232 mpi_limb_t mpihelp_lshift(mpi_ptr_t wp, mpi_ptr_t up, mpi_size_t usize,
234 mpi_limb_t mpihelp_rshift(mpi_ptr_t wp, mpi_ptr_t up, mpi_size_t usize,
Dgeneric_mpih-lshift.c41 mpihelp_lshift(mpi_ptr_t wp, mpi_ptr_t up, mpi_size_t usize, unsigned int cnt) in mpihelp_lshift() argument
52 low_limb = up[i]; in mpihelp_lshift()
56 low_limb = up[i]; in mpihelp_lshift()
Dgeneric_mpih-rshift.c42 mpihelp_rshift(mpi_ptr_t wp, mpi_ptr_t up, mpi_size_t usize, unsigned cnt) in mpihelp_rshift() argument
52 high_limb = up[0]; in mpihelp_rshift()
56 high_limb = up[i]; in mpihelp_rshift()
/linux-4.1.27/arch/x86/platform/ce4100/
Dce4100.c93 static void ce4100_serial_fixup(int port, struct uart_port *up, in ce4100_serial_fixup() argument
102 if (up->iotype != UPIO_MEM32) { in ce4100_serial_fixup()
103 up->uartclk = 14745600; in ce4100_serial_fixup()
104 up->mapbase = 0xdffe0200; in ce4100_serial_fixup()
106 up->mapbase & PAGE_MASK); in ce4100_serial_fixup()
107 up->membase = in ce4100_serial_fixup()
109 up->membase += up->mapbase & ~PAGE_MASK; in ce4100_serial_fixup()
110 up->mapbase += port * 0x100; in ce4100_serial_fixup()
111 up->membase += port * 0x100; in ce4100_serial_fixup()
112 up->iotype = UPIO_MEM32; in ce4100_serial_fixup()
[all …]
/linux-4.1.27/drivers/scsi/
Daha1740.h84 #define any2scsi(up, p) \ argument
85 (up)[0] = (((unsigned long)(p)) >> 16) ; \
86 (up)[1] = (((unsigned long)(p)) >> 8); \
87 (up)[2] = ((unsigned long)(p));
89 #define scsi2int(up) ( (((long)*(up)) << 16) + (((long)(up)[1]) << 8) + ((long)(up)[2]) ) argument
91 #define xany2scsi(up, p) \ argument
92 (up)[0] = ((long)(p)) >> 24; \
93 (up)[1] = ((long)(p)) >> 16; \
94 (up)[2] = ((long)(p)) >> 8; \
95 (up)[3] = ((long)(p));
[all …]
Daha1542.h72 #define scsi2int(up) ( (((long)*(up)) << 16) + (((long)(up)[1]) << 8) + ((long)(up)[2]) ) argument
74 #define xscsi2int(up) ( (((long)(up)[0]) << 24) + (((long)(up)[1]) << 16) \ argument
75 + (((long)(up)[2]) << 8) + ((long)(up)[3]) )
/linux-4.1.27/kernel/
Duser.c102 static void uid_hash_insert(struct user_struct *up, struct hlist_head *hashent) in uid_hash_insert() argument
104 hlist_add_head(&up->uidhash_node, hashent); in uid_hash_insert()
107 static void uid_hash_remove(struct user_struct *up) in uid_hash_remove() argument
109 hlist_del_init(&up->uidhash_node); in uid_hash_remove()
130 static void free_user(struct user_struct *up, unsigned long flags) in free_user() argument
133 uid_hash_remove(up); in free_user()
135 key_put(up->uid_keyring); in free_user()
136 key_put(up->session_keyring); in free_user()
137 kmem_cache_free(uid_cachep, up); in free_user()
157 void free_uid(struct user_struct *up) in free_uid() argument
[all …]
/linux-4.1.27/include/net/
Dudplite.h73 const struct udp_sock *up = udp_sk(skb->sk); in udplite_csum_outgoing() local
74 int cscov = up->len; in udplite_csum_outgoing()
77 if (up->pcflag & UDPLITE_SEND_CC) { in udplite_csum_outgoing()
82 if (up->pcslen < up->len) { in udplite_csum_outgoing()
83 if (0 < up->pcslen) in udplite_csum_outgoing()
84 cscov = up->pcslen; in udplite_csum_outgoing()
85 udp_hdr(skb)->len = htons(up->pcslen); in udplite_csum_outgoing()
116 const struct udp_sock *up = udp_sk(skb->sk); in udplite_csum() local
120 if ((up->pcflag & UDPLITE_SEND_CC) && up->pcslen < len) { in udplite_csum()
121 if (0 < up->pcslen) in udplite_csum()
[all …]
/linux-4.1.27/ipc/
Dcompat.c148 struct compat_ipc_perm __user *up) in __get_compat_ipc_perm() argument
152 err = __get_user(p->uid, &up->uid); in __get_compat_ipc_perm()
153 err |= __get_user(p->gid, &up->gid); in __get_compat_ipc_perm()
154 err |= __get_user(p->mode, &up->mode); in __get_compat_ipc_perm()
203 struct compat_semid_ds __user *up) in get_compat_semid_ds() argument
205 if (!access_ok(VERIFY_READ, up, sizeof(*up))) in get_compat_semid_ds()
207 return __get_compat_ipc_perm(&s->sem_perm, &up->sem_perm); in get_compat_semid_ds()
225 struct compat_semid_ds __user *up) in put_compat_semid_ds() argument
229 if (!access_ok(VERIFY_WRITE, up, sizeof(*up))) in put_compat_semid_ds()
231 err = __put_compat_ipc_perm(&s->sem_perm, &up->sem_perm); in put_compat_semid_ds()
[all …]
/linux-4.1.27/net/caif/
Dcfsrvl.c33 if (layr->up == NULL || layr->up->ctrlcmd == NULL) in cfservl_ctrlcmd()
39 layr->up->ctrlcmd(layr->up, ctrl, phyid); in cfservl_ctrlcmd()
44 layr->up->ctrlcmd(layr->up, ctrl, phyid); in cfservl_ctrlcmd()
50 layr->up->ctrlcmd(layr->up, in cfservl_ctrlcmd()
58 layr->up->ctrlcmd(layr->up, in cfservl_ctrlcmd()
66 layr->up->ctrlcmd(layr->up, in cfservl_ctrlcmd()
73 layr->up->ctrlcmd(layr->up, in cfservl_ctrlcmd()
80 layr->up->ctrlcmd(layr->up, in cfservl_ctrlcmd()
84 layr->up->ctrlcmd(layr->up, ctrl, phyid); in cfservl_ctrlcmd()
89 layr->up->ctrlcmd(layr->up, ctrl, phyid); in cfservl_ctrlcmd()
Dcfmuxl.c86 int cfmuxl_set_uplayer(struct cflayer *layr, struct cflayer *up, u8 linkid) in cfmuxl_set_uplayer() argument
98 list_add_rcu(&up->node, &muxl->srvl_list); in cfmuxl_set_uplayer()
125 struct cflayer *up; in get_up() local
127 up = rcu_dereference(muxl->up_cache[idx]); in get_up()
128 if (up == NULL || up->id != id) { in get_up()
130 up = get_from_id(&muxl->srvl_list, id); in get_up()
131 rcu_assign_pointer(muxl->up_cache[idx], up); in get_up()
134 return up; in get_up()
153 struct cflayer *up; in cfmuxl_remove_uplayer() local
163 up = get_from_id(&muxl->srvl_list, id); in cfmuxl_remove_uplayer()
[all …]
Dcffrml.c64 void cffrml_set_uplayer(struct cflayer *this, struct cflayer *up) in cffrml_set_uplayer() argument
66 this->up = up; in cffrml_set_uplayer()
128 if (layr->up == NULL) { in cffrml_receive()
134 return layr->up->receive(layr->up, pkt); in cffrml_receive()
172 if (layr->up && layr->up->ctrlcmd) in cffrml_ctrlcmd()
173 layr->up->ctrlcmd(layr->up, ctrl, layr->id); in cffrml_ctrlcmd()
Dcaif_dev.c157 caifd->layer.up-> in caif_flow_cb()
158 ctrlcmd(caifd->layer.up, in caif_flow_cb()
222 caifd->layer.up->ctrlcmd(caifd->layer.up, in transmit()
251 if (!caifd || !caifd->layer.up || !caifd->layer.up->receive || in receive()
262 err = caifd->layer.up->receive(caifd->layer.up, pkt); in receive()
288 if (!caifd || !caifd->layer.up || !caifd->layer.up->ctrlcmd) { in dev_flowctrl()
296 caifd->layer.up->ctrlcmd(caifd->layer.up, in dev_flowctrl()
414 if (!caifd || !caifd->layer.up || !caifd->layer.up->ctrlcmd) { in caif_device_notify()
423 caifd->layer.up->ctrlcmd(caifd->layer.up, in caif_device_notify()
Dcfutill.c45 caif_assert(layr->up != NULL); in cfutill_receive()
46 caif_assert(layr->up->receive != NULL); in cfutill_receive()
47 caif_assert(layr->up->ctrlcmd != NULL); in cfutill_receive()
56 return layr->up->receive(layr->up, pkt); in cfutill_receive()
Dcaif_usb.c46 return layr->up->receive(layr->up, pkt); in cfusbl_receive()
81 if (layr->up && layr->up->ctrlcmd) in cfusbl_ctrlcmd()
82 layr->up->ctrlcmd(layr->up, ctrl, layr->id); in cfusbl_ctrlcmd()
Dcfrfml.c106 caif_assert(layr->up != NULL); in cfrfml_receive()
167 err = rfml->serv.layer.up->receive(rfml->serv.layer.up, pkt); in cfrfml_receive()
183 layr->up->ctrlcmd(layr->up, CAIF_CTRLCMD_REMOTE_SHUTDOWN_IND, in cfrfml_receive()
291 layr->up->ctrlcmd(layr->up, CAIF_CTRLCMD_REMOTE_SHUTDOWN_IND, in cfrfml_transmit()
Dcfserl.c153 ret = layr->layer.up->receive(layr->layer.up, pkt); in cfserl_receive()
187 layr->up->ctrlcmd(layr->up, ctrl, phyid); in cfserl_ctrlcmd()
Dcfveil.c43 caif_assert(layr->up != NULL); in cfvei_receive()
55 ret = layr->up->receive(layr->up, pkt); in cfvei_receive()
Dcfcnfg.c31 bool up; member
155 if (phy->up && phy->pref == phy_pref && in cfcnfg_get_phyid()
163 if (phy->up) in cfcnfg_get_phyid()
174 if (phy->ifindex == ifi && phy->up) in cfcnfg_get_id_from_ifi()
528 bool up) in cfcnfg_set_phy_state() argument
539 if (phyinfo->up == up) { in cfcnfg_set_phy_state()
543 phyinfo->up = up; in cfcnfg_set_phy_state()
545 if (up) { in cfcnfg_set_phy_state()
Dcfdgml.c46 caif_assert(layr->up != NULL); in cfdgml_receive()
62 ret = layr->up->receive(layr->up, pkt); in cfdgml_receive()
Dcfdbgl.c35 return layr->up->receive(layr->up, pkt); in cfdbgl_receive()
Dcfvidl.c44 return layr->up->receive(layr->up, pkt); in cfvidl_receive()
/linux-4.1.27/fs/hpfs/
Ddnode.c221 if (le32_to_cpu(dd->up) != dno || dd->root_dnode) { in fix_up_ptrs()
222 dd->up = cpu_to_le32(dno); in fix_up_ptrs()
300 if (!(ad = hpfs_alloc_dnode(i->i_sb, le32_to_cpu(d->up), &adno, &qbh1))) { in hpfs_add_to_dnode()
329 ad->up = d->up; in hpfs_add_to_dnode()
330 dno = le32_to_cpu(ad->up); in hpfs_add_to_dnode()
337 if (!(rd = hpfs_alloc_dnode(i->i_sb, le32_to_cpu(d->up), &rdno, &qbh2))) { in hpfs_add_to_dnode()
348 rd->up = d->up; in hpfs_add_to_dnode()
349 if (!(fnode = hpfs_map_fnode(i->i_sb, le32_to_cpu(d->up), &bh))) { in hpfs_add_to_dnode()
362 d->up = ad->up = cpu_to_le32(rdno); in hpfs_add_to_dnode()
447 if (le32_to_cpu(dnode->up) != chk_up) { in move_to_top()
[all …]
Danode.c65 anode_secno a, na = -1, ra, up = -1; in hpfs_add_sector_to_btree() local
124 up = a != node ? le32_to_cpu(anode->up) : -1; in hpfs_add_sector_to_btree()
131 anode->up = cpu_to_le32(node); in hpfs_add_sector_to_btree()
164 while (up != (anode_secno)-1) { in hpfs_add_sector_to_btree()
167 if (hpfs_stop_cycles(s, up, &c1, &c2, "hpfs_add_sector_to_btree #2")) return -1; in hpfs_add_sector_to_btree()
168 if (up != node || !fnod) { in hpfs_add_sector_to_btree()
169 if (!(anode = hpfs_map_anode(s, up, &bh))) return -1; in hpfs_add_sector_to_btree()
172 if (!(fnode = hpfs_map_fnode(s, up, &bh))) return -1; in hpfs_add_sector_to_btree()
186 anode->up = cpu_to_le32(up); in hpfs_add_sector_to_btree()
187 if (up == node && fnod) in hpfs_add_sector_to_btree()
[all …]
/linux-4.1.27/arch/arm/boot/dts/
Dimx28.dtsi219 fsl,pull-up = <MXS_PULL_DISABLE>;
230 fsl,pull-up = <MXS_PULL_DISABLE>;
243 fsl,pull-up = <MXS_PULL_DISABLE>;
267 fsl,pull-up = <MXS_PULL_DISABLE>;
289 fsl,pull-up = <MXS_PULL_DISABLE>;
300 fsl,pull-up = <MXS_PULL_DISABLE>;
313 fsl,pull-up = <MXS_PULL_DISABLE>;
324 fsl,pull-up = <MXS_PULL_DISABLE>;
335 fsl,pull-up = <MXS_PULL_DISABLE>;
346 fsl,pull-up = <MXS_PULL_DISABLE>;
[all …]
Dimx28-cfa10049.dts32 fsl,pull-up = <MXS_PULL_DISABLE>;
43 fsl,pull-up = <MXS_PULL_DISABLE>;
53 fsl,pull-up = <MXS_PULL_DISABLE>;
63 fsl,pull-up = <MXS_PULL_ENABLE>;
74 fsl,pull-up = <MXS_PULL_ENABLE>;
84 fsl,pull-up = <MXS_PULL_ENABLE>;
97 fsl,pull-up = <MXS_PULL_ENABLE>;
111 fsl,pull-up = <MXS_PULL_ENABLE>;
138 fsl,pull-up = <MXS_PULL_DISABLE>;
151 fsl,pull-up = <MXS_PULL_DISABLE>;
[all …]
Dimx28-eukrea-mbmx28lc.dtsi202 fsl,pull-up = <MXS_PULL_DISABLE>;
212 fsl,pull-up = <MXS_PULL_DISABLE>;
225 fsl,pull-up = <MXS_PULL_DISABLE>;
235 fsl,pull-up = <MXS_PULL_DISABLE>;
245 fsl,pull-up = <MXS_PULL_DISABLE>;
255 fsl,pull-up = <MXS_PULL_DISABLE>;
265 fsl,pull-up = <MXS_PULL_DISABLE>;
275 fsl,pull-up = <MXS_PULL_DISABLE>;
Dimx28-cfa10036.dts33 fsl,pull-up = <MXS_PULL_DISABLE>;
43 fsl,pull-up = <MXS_PULL_DISABLE>;
53 fsl,pull-up = <MXS_PULL_DISABLE>;
64 fsl,pull-up = <0>;
Dimx23.dtsi147 fsl,pull-up = <MXS_PULL_DISABLE>;
160 fsl,pull-up = <MXS_PULL_DISABLE>;
171 fsl,pull-up = <MXS_PULL_DISABLE>;
197 fsl,pull-up = <MXS_PULL_DISABLE>;
221 fsl,pull-up = <MXS_PULL_ENABLE>;
241 fsl,pull-up = <MXS_PULL_ENABLE>;
249 fsl,pull-up = <MXS_PULL_DISABLE>;
259 fsl,pull-up = <MXS_PULL_DISABLE>;
296 fsl,pull-up = <MXS_PULL_DISABLE>;
309 fsl,pull-up = <MXS_PULL_ENABLE>;
Dimx28-cfa10055.dts36 fsl,pull-up = <MXS_PULL_ENABLE>;
63 fsl,pull-up = <MXS_PULL_DISABLE>;
76 fsl,pull-up = <MXS_PULL_DISABLE>;
86 fsl,pull-up = <MXS_PULL_ENABLE>;
Dimx28-tx28.dts511 fsl,pull-up = <MXS_PULL_DISABLE>;
522 fsl,pull-up = <MXS_PULL_DISABLE>;
531 fsl,pull-up = <MXS_PULL_DISABLE>;
563 fsl,pull-up = <MXS_PULL_DISABLE>;
573 fsl,pull-up = <MXS_PULL_DISABLE>;
590 fsl,pull-up = <MXS_PULL_DISABLE>;
599 fsl,pull-up = <MXS_PULL_DISABLE>;
613 fsl,pull-up = <MXS_PULL_DISABLE>;
622 fsl,pull-up = <MXS_PULL_DISABLE>;
633 fsl,pull-up = <MXS_PULL_DISABLE>;
[all …]
Dzynq-zc706.dts183 conf-pull-up {
185 bias-pull-up;
202 bias-pull-up;
229 bias-pull-up;
242 bias-pull-up;
Dimx28-cfa10056.dts35 fsl,pull-up = <MXS_PULL_ENABLE>;
48 fsl,pull-up = <MXS_PULL_DISABLE>;
58 fsl,pull-up = <MXS_PULL_ENABLE>;
Dimx28-apx4devkit.dts53 fsl,pull-up = <MXS_PULL_DISABLE>;
66 fsl,pull-up = <MXS_PULL_DISABLE>;
81 fsl,pull-up = <MXS_PULL_ENABLE>;
89 fsl,pull-up = <MXS_PULL_DISABLE>;
Dzynq-zc702.dts234 conf-pull-up {
236 bias-pull-up;
253 bias-pull-up;
280 bias-pull-up;
293 bias-pull-up;
Dste-href-ab8500.dtsi257 * This sets up the YCBCR connector pins, i.e. analog video out.
276 /* This sets up the PWM pins 14 and 15 */
291 /* This sets up audio interface 1 */
308 /* This sets up the USB UICC pins */
324 /* This sets up the microphone pins */
Drk3288-evb.dtsi139 disable-wp; /* wp not hooked up */
193 pcfg_pull_up_drv_8ma: pcfg-pull-up-drv-8ma {
194 bias-pull-up;
219 * high-speed mode on EVB board so bump up to 8ma.
Dimx28-cfa10057.dts33 fsl,pull-up = <MXS_PULL_DISABLE>;
60 fsl,pull-up = <MXS_PULL_DISABLE>;
73 fsl,pull-up = <MXS_PULL_DISABLE>;
Dstih407-family.dtsi298 reg-names = "sata-up",
299 "pcie-up",
313 reg-names = "sata-up",
314 "pcie-up",
329 "usb3-up";
Dat91sam9m10g45ek.dts106 …<AT91_PIOD 10 AT91_PERIPH_GPIO AT91_PINCTRL_PULL_UP_DEGLITCH>; /* PD10 gpio CD pin pull up and deg…
113 …<AT91_PIOD 11 AT91_PERIPH_GPIO AT91_PINCTRL_PULL_UP_DEGLITCH /* PD11 gpio CD pin pull up and degli…
114 AT91_PIOD 29 AT91_PERIPH_GPIO AT91_PINCTRL_PULL_UP>; /* PD29 gpio WP pin pull up */
298 up {
Dimx28-cfa10037.dts32 fsl,pull-up = <MXS_PULL_DISABLE>;
42 fsl,pull-up = <MXS_PULL_DISABLE>;
/linux-4.1.27/fs/cifs/
Dcifs_unicode.h364 register __le16 *up; in UniStrupr() local
366 up = upin; in UniStrupr()
367 while (*up) { /* For all characters */ in UniStrupr()
368 *up = cpu_to_le16(UniToupper(le16_to_cpu(*up))); in UniStrupr()
369 up++; in UniStrupr()
406 register wchar_t *up; in UniStrlwr() local
408 up = upin; in UniStrlwr()
409 while (*up) { /* For all characters */ in UniStrlwr()
410 *up = UniTolower(*up); in UniStrlwr()
411 up++; in UniStrlwr()
/linux-4.1.27/Documentation/aoe/
Daoe.txt70 state, mac, and netif. The state attribute is "up" when the device
73 cannot come up again until it has been closed.
84 e10.0 eth3 up
85 e10.1 eth3 up
86 e10.2 eth3 up
87 e10.3 eth3 up
88 e10.4 eth3 up
89 e10.5 eth3 up
90 e10.6 eth3 up
91 e10.7 eth3 up
[all …]
/linux-4.1.27/fs/nfsd/
Dnfsfh.h89 u32 *up; in mk_fsid() local
112 up = (u32*)uuid; in mk_fsid()
114 fsidv[1] = up[0] ^ up[1] ^ up[2] ^ up[3]; in mk_fsid()
119 up = (u32*)uuid; in mk_fsid()
120 fsidv[0] = up[0] ^ up[2]; in mk_fsid()
121 fsidv[1] = up[1] ^ up[3]; in mk_fsid()
/linux-4.1.27/scripts/
Dbloat-o-meter33 grow, shrink, add, remove, up, down = 0, 0, 0, 0, 0, 0 variable
49 up += new[name]
54 if d>0: grow, up = grow+1, up+d
62 (add, remove, grow, shrink, up, -down, up-down))
/linux-4.1.27/drivers/thunderbolt/
Dtunnel_pci.c58 struct tb_pci_tunnel *tb_pci_alloc(struct tb *tb, struct tb_port *up, in tb_pci_alloc() argument
66 tunnel->up_port = up; in tb_pci_alloc()
68 tunnel->path_to_up = tb_path_alloc(up->sw->tb, 2); in tb_pci_alloc()
71 tunnel->path_to_down = tb_path_alloc(up->sw->tb, 2); in tb_pci_alloc()
80 tunnel->path_to_up->hops[0].out_port = tb_upstream_port(up->sw)->remote; in tb_pci_alloc()
83 tunnel->path_to_up->hops[1].in_port = tb_upstream_port(up->sw); in tb_pci_alloc()
86 tunnel->path_to_up->hops[1].out_port = up; in tb_pci_alloc()
89 tunnel->path_to_down->hops[0].in_port = up; in tb_pci_alloc()
92 tunnel->path_to_down->hops[0].out_port = tb_upstream_port(up->sw); in tb_pci_alloc()
96 tb_upstream_port(up->sw)->remote; in tb_pci_alloc()
/linux-4.1.27/include/linux/
Dserial_8250.h126 static inline struct uart_8250_port *up_to_u8250p(struct uart_port *up) in up_to_u8250p() argument
128 return container_of(up, struct uart_8250_port, port); in up_to_u8250p()
149 unsigned char serial8250_rx_chars(struct uart_8250_port *up, unsigned char lsr);
150 void serial8250_tx_chars(struct uart_8250_port *up);
151 unsigned int serial8250_modem_status(struct uart_8250_port *up);
154 (int port, struct uart_port *up,
Dserial_core.h252 static inline int serial_port_in(struct uart_port *up, int offset) in serial_port_in() argument
254 return up->serial_in(up, offset); in serial_port_in()
257 static inline void serial_port_out(struct uart_port *up, int offset, int value) in serial_port_out() argument
259 up->serial_out(up, offset, value); in serial_port_out()
/linux-4.1.27/fs/jfs/
Djfs_unicode.h146 wchar_t *up; in UniStrupr() local
148 up = upin; in UniStrupr()
149 while (*up) { /* For all characters */ in UniStrupr()
150 *up = UniToupper(*up); in UniStrupr()
151 up++; in UniStrupr()
/linux-4.1.27/drivers/staging/rtl8192e/rtl8192e/
Drtl_wx.c77 up(&priv->wx_sem); in r8192_wx_set_rate()
97 up(&priv->wx_sem); in r8192_wx_set_rts()
128 up(&priv->wx_sem); in r8192_wx_set_power()
156 up(&priv->wx_sem); in r8192_wx_set_rawtx()
173 up(&priv->wx_sem); in r8192_wx_force_reset()
189 up(&priv->wx_sem); in r8192_wx_force_mic_error()
245 up(&priv->wx_sem); in r8192_wx_adapter_power_status()
263 up(&priv->wx_sem); in r8192se_wx_set_radio()
267 up(&priv->wx_sem); in r8192se_wx_set_radio()
286 up(&priv->wx_sem); in r8192se_wx_set_lps_awake_interval()
[all …]
/linux-4.1.27/drivers/usb/host/
Duhci-debug.c560 struct uhci_debug *up; in uhci_debug_open() local
563 up = kmalloc(sizeof(*up), GFP_KERNEL); in uhci_debug_open()
564 if (!up) in uhci_debug_open()
567 up->data = kmalloc(MAX_OUTPUT, GFP_KERNEL); in uhci_debug_open()
568 if (!up->data) { in uhci_debug_open()
569 kfree(up); in uhci_debug_open()
573 up->size = 0; in uhci_debug_open()
576 up->size = uhci_sprint_schedule(uhci, up->data, in uhci_debug_open()
580 file->private_data = up; in uhci_debug_open()
587 struct uhci_debug *up; in uhci_debug_lseek() local
[all …]
/linux-4.1.27/drivers/staging/comedi/drivers/
Dusbduxfast.c231 up(&devpriv->sem); in usbduxfast_ai_cancel()
447 up(&devpriv->sem); in usbduxfast_ai_inttrig()
454 up(&devpriv->sem); in usbduxfast_ai_inttrig()
474 up(&devpriv->sem); in usbduxfast_ai_cmd()
490 up(&devpriv->sem); in usbduxfast_ai_cmd()
497 up(&devpriv->sem); in usbduxfast_ai_cmd()
513 up(&devpriv->sem); in usbduxfast_ai_cmd()
518 up(&devpriv->sem); in usbduxfast_ai_cmd()
525 up(&devpriv->sem); in usbduxfast_ai_cmd()
775 up(&devpriv->sem); in usbduxfast_ai_cmd()
[all …]
Dvmk80xx.c284 up(&devpriv->limit_sem); in vmk80xx_ai_insn_read()
325 up(&devpriv->limit_sem); in vmk80xx_ao_insn_write()
354 up(&devpriv->limit_sem); in vmk80xx_ao_insn_read()
393 up(&devpriv->limit_sem); in vmk80xx_di_insn_bits()
437 up(&devpriv->limit_sem); in vmk80xx_do_insn_bits()
481 up(&devpriv->limit_sem); in vmk80xx_cnt_insn_read()
518 up(&devpriv->limit_sem); in vmk80xx_cnt_insn_config()
562 up(&devpriv->limit_sem); in vmk80xx_cnt_insn_write()
595 up(&devpriv->limit_sem); in vmk80xx_pwm_insn_read()
641 up(&devpriv->limit_sem); in vmk80xx_pwm_insn_write()
[all …]
Dusbduxsigma.c204 up(&devpriv->sem); in usbduxsigma_ai_cancel()
327 up(&devpriv->sem); in usbduxsigma_ao_cancel()
626 up(&devpriv->sem); in usbduxsigma_ai_inttrig()
631 up(&devpriv->sem); in usbduxsigma_ai_inttrig()
682 up(&devpriv->sem); in usbduxsigma_ai_cmd()
695 up(&devpriv->sem); in usbduxsigma_ai_cmd()
703 up(&devpriv->sem); in usbduxsigma_ai_cmd()
723 up(&devpriv->sem); in usbduxsigma_ai_insn_read()
740 up(&devpriv->sem); in usbduxsigma_ai_insn_read()
749 up(&devpriv->sem); in usbduxsigma_ai_insn_read()
[all …]
Dusbdux.c243 up(&devpriv->sem); in usbdux_ai_cancel()
371 up(&devpriv->sem); in usbdux_ao_cancel()
675 up(&devpriv->sem); in usbdux_ai_inttrig()
749 up(&devpriv->sem); in usbdux_ai_cmd()
795 up(&devpriv->sem); in usbdux_ai_insn_read()
810 up(&devpriv->sem); in usbdux_ao_insn_read()
851 up(&devpriv->sem); in usbdux_ao_insn_write()
883 up(&devpriv->sem); in usbdux_ao_inttrig()
1019 up(&devpriv->sem); in usbdux_ao_cmd()
1072 up(&devpriv->sem); in usbdux_dio_insn_bits()
[all …]
/linux-4.1.27/drivers/tty/vt/
Dvt_ioctl.c342 void __user *up = (void __user *)arg; in vt_ioctl() local
445 if (copy_from_user(&kbrep, up, sizeof(struct kbd_repeat))) { in vt_ioctl()
452 if (copy_to_user(up, &kbrep, sizeof(struct kbd_repeat))) in vt_ioctl()
540 ret = vt_do_kbkeycode_ioctl(cmd, up, perm); in vt_ioctl()
545 ret = vt_do_kdsk_ioctl(cmd, up, perm, console); in vt_ioctl()
550 ret = vt_do_kdgkb_ioctl(cmd, up, perm); in vt_ioctl()
559 ret = vt_do_diacrit(cmd, up, perm); in vt_ioctl()
600 if (copy_from_user(&tmp, up, sizeof(struct vt_mode))) { in vt_ioctl()
629 rc = copy_to_user(up, &tmp, sizeof(struct vt_mode)); in vt_ioctl()
642 struct vt_stat __user *vtstat = up; in vt_ioctl()
[all …]
/linux-4.1.27/Documentation/devicetree/bindings/pinctrl/
Dfsl,mxs-pinctrl.txt6 voltage and pull-up.
20 information about pull-up. For this reason, even seemingly boolean values are
26 One is to set up a group of pins for a function, both mux selection and pin
52 since config node is only meant to set up pin configurations.
69 - fsl,pull-up: Integer.
70 0: MXS_PULL_DISABLE - Disable the internal pull-up
71 1: MXS_PULL_ENABLE - Enable the internal pull-up
73 Note that when enabling the pull-up, the internal pad keeper gets disabled.
74 Also, some pins doesn't have a pull up, in that case, setting the fsl,pull-up
102 fsl,pull-up = <MXS_PULL_ENABLE>;
[all …]
Dste,nomadik.txt16 parameters, such as input, output, pull up, pull down...
28 set-up.
38 1: input with pull up,
52 1: sleep input with pull up,
54 3: sleep input and keep last input configuration (no pull, pull up or pull down).
66 0: wake-up detection enabled,
67 1: wake-up detection disabled.
70 0: GPIO pull-up or pull-down resistor is enabled, when pin is an input,
71 1: GPIO pull-up and pull-down resistor are disabled.
Dpinctrl-mt65xx.txt53 bias-pull-down, bias-pull-up, input-enable, input-disable, output-low, output-high,
56 Some special pins have extra pull up strength, there are R0 and R1 pull-up
58 So when config bias-pull-up, it support arguments for those special pins.
106 bias-pull-up = <55>;
118 bias-pull-up;
126 bias-pull-up = <55>;
133 bias-pull-up = <55>;
Dnvidia,tegra20-pinmux.txt6 the tri-state, mux, pull-up/down, and pad control register sets.
16 parameters, such as pull-up, tristate, drive strength, etc.
38 - nvidia,pull: Integer, representing the pull-down/up to apply to the pin.
39 0: none, 1: down, 2: up.
52 - nvidia,pull-up-strength: Integer. Controls drive strength. 0 is weakest.
96 nvidia,pull-up-strength, nvidia,slew-rate-rising, nvidia,slew-rate-falling.
123 0x700000a0 0x14 /* Pull-up/down registers */
Dpinctrl-bindings.txt4 such as pull-up/down, tri-state, drive-strength etc are designated as pin
13 set up certain specific pin configurations. Some client devices need a
14 single static pin configuration, e.g. set up during initialization. Others
25 For example, a pin controller may set up its own "active" state when the
180 bias-pull-up - pull up the pin
204 bias-pull-up;
216 bias-pull-up;
227 - bias-pull-up, -down and -pin-default take as optional argument on hardware
Dbrcm,cygnus-gpio.txt42 - bias-pull-up:
43 Enable internal pull up resistor
69 bias-pull-up;
Dqcom,pmic-gpio.txt108 - bias-pull-up:
111 Definition: The specified pins should be configured as pull up.
113 - qcom,pull-up-strength:
116 Definition: Specifies the strength to use for pull up, if selected.
124 pull up is selected
211 bias-pull-up;
Dpinctrl-vt8500.txt24 more of the mux functions to select on those pin(s), and pull-up/down
39 - wm,pull: Integer, representing the pull-down/up to apply to the pin(s):
42 2: up
Dfsl,imx-pinctrl.txt5 multiplexing the PAD input/output signals. For each PAD there are up to
7 different PAD settings (like pull up, keeper, etc) the IOMUXC controls
18 such as pull-up, open drain, drive strength, etc.
29 the pad setting value like pull-up on this pin. And that's why fsl,pins entry
Dimg,tz1090-pdc-pinctrl.txt16 parameters, such as pull-up, drive strength, etc.
43 - bias-pull-up
64 These all support bias-high-impediance, bias-pull-up, bias-pull-down, and
109 pull-up;
Dbrcm,bcm2835-gpio.txt33 more of the mux function to select on those pin(s), and pull-up/down
53 - brcm,pull: Integer, representing the pull-down/up to apply to the pin(s):
56 2: up
Dqcom,apq8064-pinctrl.txt25 parameters, such as pull-up, drive strength, etc.
40 pins, function, bias-disable, bias-pull-down, bias-pull,up, drive-strength,
85 bias-pull-up;
/linux-4.1.27/drivers/staging/rtl8192u/
Dr8192U_wx.c78 up(&priv->wx_sem); in r8192_wx_set_rate()
95 up(&priv->wx_sem); in r8192_wx_set_rts()
120 up(&priv->wx_sem); in r8192_wx_set_power()
144 up(&priv->wx_sem); in r8192_wx_force_reset()
161 up(&priv->wx_sem); in r8192_wx_set_rawtx()
185 up(&priv->wx_sem); in r8192_wx_set_crcmon()
202 up(&priv->wx_sem); in r8192_wx_set_mode()
335 if (!priv->up) in r8192_wx_set_scan()
357 up(&priv->wx_sem); in r8192_wx_set_scan()
369 if (!priv->up) in r8192_wx_get_scan()
[all …]
/linux-4.1.27/sound/pci/echoaudio/
Dmidi.c166 int up) in snd_echo_midi_input_trigger() argument
170 if (up != chip->midi_input_enabled) { in snd_echo_midi_input_trigger()
172 enable_midi_input(chip, up); in snd_echo_midi_input_trigger()
174 chip->midi_input_enabled = up; in snd_echo_midi_input_trigger()
252 int up) in snd_echo_midi_output_trigger() argument
256 dev_dbg(chip->card->dev, "snd_echo_midi_output_trigger(%d)\n", up); in snd_echo_midi_output_trigger()
258 if (up) { in snd_echo_midi_output_trigger()
275 if (up && !chip->midi_full) in snd_echo_midi_output_trigger()
/linux-4.1.27/drivers/isdn/mISDN/
Ddsp_core.c594 if (dsp->up) { in dsp_control_req()
595 if (dsp->up->send(dsp->up, nskb)) in dsp_control_req()
709 if (dsp->up) in dsp_function()
710 return dsp->up->send(dsp->up, skb); in dsp_function()
753 if (dsp->up) { in dsp_function()
754 if (dsp->up->send( in dsp_function()
755 dsp->up, nskb)) in dsp_function()
768 if (dsp->up) in dsp_function()
769 return dsp->up->send(dsp->up, skb); in dsp_function()
799 if (dsp->up) { in dsp_function()
[all …]
Dlayer2.h32 struct mISDNchannel *up; member
57 struct mISDNchannel *up; member
/linux-4.1.27/kernel/locking/
Dsemaphore.c178 void up(struct semaphore *sem) in up() function
189 EXPORT_SYMBOL(up);
196 bool up; member
212 waiter.up = false; in __down_common()
223 if (waiter.up) in __down_common()
261 waiter->up = true; in __up()
/linux-4.1.27/net/batman-adv/
Dgateway_common.c33 uint32_t *down, uint32_t *up) in batadv_parse_gw_bandwidth() argument
98 *up = lup * 10; in batadv_parse_gw_bandwidth()
102 *up = lup / 100; in batadv_parse_gw_bandwidth()
118 uint32_t down, up; in batadv_gw_tvlv_container_update() local
130 up = atomic_read(&bat_priv->gw.bandwidth_up); in batadv_gw_tvlv_container_update()
132 gw.bandwidth_up = htonl(up); in batadv_gw_tvlv_container_update()
/linux-4.1.27/drivers/input/serio/
Dhp_sdc_mlc.c70 up(&mlc->isem); in hp_sdc_mlc_isr()
135 up(&mlc->isem); in hp_sdc_mlc_isr()
171 up(&mlc->isem); in hp_sdc_mlc_in()
176 up(&mlc->isem); in hp_sdc_mlc_in()
192 up(&mlc->isem); in hp_sdc_mlc_cts()
193 up(&mlc->osem); in hp_sdc_mlc_cts()
221 up(&mlc->csem); in hp_sdc_mlc_cts()
239 up(&mlc->osem); in hp_sdc_mlc_out()
244 up(&mlc->csem); in hp_sdc_mlc_out()
/linux-4.1.27/drivers/tty/serial/cpm_uart/
Dcpm_uart_cpm1.h24 static inline void cpm_set_smc_fcr(smc_uart_t __iomem * up) in cpm_set_smc_fcr() argument
26 out_8(&up->smc_rfcr, SMC_EB); in cpm_set_smc_fcr()
27 out_8(&up->smc_tfcr, SMC_EB); in cpm_set_smc_fcr()
Dcpm_uart_cpm2.h24 static inline void cpm_set_smc_fcr(smc_uart_t __iomem *up) in cpm_set_smc_fcr() argument
26 out_8(&up->smc_rfcr, CPMFCR_GBL | CPMFCR_EB); in cpm_set_smc_fcr()
27 out_8(&up->smc_tfcr, CPMFCR_GBL | CPMFCR_EB); in cpm_set_smc_fcr()
Dcpm_uart_core.c864 smc_uart_t __iomem *up; in cpm_uart_init_smc() local
869 up = pinfo->smcup; in cpm_uart_init_smc()
881 out_be16(&up->smc_rbptr, in_be16(&pinfo->smcup->smc_rbase)); in cpm_uart_init_smc()
882 out_be16(&up->smc_tbptr, in_be16(&pinfo->smcup->smc_tbase)); in cpm_uart_init_smc()
883 out_be32(&up->smc_rstate, 0); in cpm_uart_init_smc()
884 out_be32(&up->smc_tstate, 0); in cpm_uart_init_smc()
885 out_be16(&up->smc_brkcr, 1); /* number of break chars */ in cpm_uart_init_smc()
886 out_be16(&up->smc_brkec, 0); in cpm_uart_init_smc()
892 cpm_set_smc_fcr(up); in cpm_uart_init_smc()
895 out_be16(&up->smc_mrblr, pinfo->rx_fifosize); in cpm_uart_init_smc()
[all …]
/linux-4.1.27/include/net/caif/
Dcfsrvl.h51 if (layr == NULL || layr->up == NULL || s->hold == NULL) in cfsrvl_get()
54 s->hold(layr->up); in cfsrvl_get()
60 if (layr == NULL || layr->up == NULL || s->hold == NULL) in cfsrvl_put()
63 s->put(layr->up); in cfsrvl_put()
Dcfmuxl.h15 int cfmuxl_set_uplayer(struct cflayer *layr, struct cflayer *up, u8 linkid);
17 int cfmuxl_set_dnlayer(struct cflayer *layr, struct cflayer *up, u8 phyid);
Dcaif_layer.h149 struct cflayer *up; member
240 #define layer_set_up(layr, above) ((layr)->up = (struct cflayer *)(above))
/linux-4.1.27/arch/arm/include/asm/
Dprocessor.h94 #define __ALT_SMP_ASM(smp, up) \ argument
98 " " up "\n" \
101 #define __ALT_SMP_ASM(smp, up) up argument
/linux-4.1.27/drivers/clk/
Dclk-divider.c171 int up = INT_MAX; in _round_up_table() local
179 if ((clkt->div - div) < (up - div)) in _round_up_table()
180 up = clkt->div; in _round_up_table()
183 return up; in _round_up_table()
222 int up, down; in _div_round_closest() local
225 up = DIV_ROUND_UP(parent_rate, rate); in _div_round_closest()
229 up = __roundup_pow_of_two(up); in _div_round_closest()
232 up = _round_up_table(table, up); in _div_round_closest()
236 up_rate = DIV_ROUND_UP(parent_rate, up); in _div_round_closest()
239 return (rate - up_rate) <= (down_rate - rate) ? up : down; in _div_round_closest()
/linux-4.1.27/drivers/media/usb/uvc/
Duvc_v4l2.c1246 const struct uvc_xu_control_mapping32 __user *up) in uvc_v4l2_get_xu_mapping() argument
1252 if (!access_ok(VERIFY_READ, up, sizeof(*up)) || in uvc_v4l2_get_xu_mapping()
1253 __copy_from_user(kp, up, offsetof(typeof(*up), menu_info)) || in uvc_v4l2_get_xu_mapping()
1254 __get_user(kp->menu_count, &up->menu_count)) in uvc_v4l2_get_xu_mapping()
1264 if (__get_user(p, &up->menu_info)) in uvc_v4l2_get_xu_mapping()
1282 struct uvc_xu_control_mapping32 __user *up) in uvc_v4l2_put_xu_mapping() argument
1288 if (!access_ok(VERIFY_WRITE, up, sizeof(*up)) || in uvc_v4l2_put_xu_mapping()
1289 __copy_to_user(up, kp, offsetof(typeof(*up), menu_info)) || in uvc_v4l2_put_xu_mapping()
1290 __put_user(kp->menu_count, &up->menu_count)) in uvc_v4l2_put_xu_mapping()
1293 if (__clear_user(up->reserved, sizeof(up->reserved))) in uvc_v4l2_put_xu_mapping()
[all …]
/linux-4.1.27/drivers/staging/rtl8712/
Drtl871x_pwrctrl.c111 up(&(pcmdpriv->cmd_queue_sema)); in r8712_cpwm_int_hdl()
114 up(&pwrpriv->lock); in r8712_cpwm_int_hdl()
149 up(&pwrpriv->lock); in SetPSModeWorkItemCallback()
164 up(&pwrpriv->lock); in rpwm_workitem_callback()
218 up(&pwrctrl->lock); in r8712_register_cmd_alive()
244 up(&pwrctrl->lock); in r8712_unregister_cmd_alive()
/linux-4.1.27/drivers/staging/panel/
Dlcd-panel-cgram.txt1 Some LCDs allow you to define up to 8 characters, mapped to ASCII
4 number, and up to 8 couples of hex digits terminated by a semi-colon
13 printf "\e[LG1040E1F0000000000;" => 1 = [up]
15 printf "\e[LG3040E1F001F0E0400;" => 3 = [up-down]
/linux-4.1.27/Documentation/ABI/testing/
Dsysfs-devices-power14 space to check if the device is enabled to wake up the system
33 be enabled to wake up the system from sleep states.
52 the device is suspended causes it to be woken up.
86 attribute is read-only. If the device is not capable to wake up
88 If the device is not enabled to wake up the system from sleep
98 is read-only. If the device is not capable to wake up the
100 the device is not enabled to wake up the system from sleep
111 is not capable to wake up the system from sleep states, this
113 up the system from sleep states, this attribute is empty.
122 read-only. If the device is not capable to wake up the system
[all …]
/linux-4.1.27/arch/x86/boot/
Dpmjump.S52 # Set up data segments for flat 32-bit mode
58 # The 32-bit code sets up its own stack, but this way we do have
62 # Set up TR to make Intel VT happy
73 # Set up LDTR to make Intel VT happy
/linux-4.1.27/net/ipv4/
Dudp.c703 struct udp_sock *up = udp_sk(sk); in udp_flush_pending_frames() local
705 if (up->pending) { in udp_flush_pending_frames()
706 up->len = 0; in udp_flush_pending_frames()
707 up->pending = 0; in udp_flush_pending_frames()
857 struct udp_sock *up = udp_sk(sk); in udp_push_pending_frames() local
870 up->len = 0; in udp_push_pending_frames()
871 up->pending = 0; in udp_push_pending_frames()
879 struct udp_sock *up = udp_sk(sk); in udp_sendmsg() local
891 int corkreq = up->corkflag || msg->msg_flags&MSG_MORE; in udp_sendmsg()
914 if (up->pending) { in udp_sendmsg()
[all …]
Dxfrm4_input.c70 struct udp_sock *up = udp_sk(sk); in xfrm4_udp_encap_rcv() local
77 __u16 encap_type = up->encap_type; in xfrm4_udp_encap_rcv()
/linux-4.1.27/Documentation/networking/
Dvxge.txt32 i) Single function mode (up to 17 queues)
34 ii) Multi function mode (up to 17 functions)
37 - Single Root mode: v1.0 (up to 17 functions)
38 - Multi-Root mode: v1.0 (up to 17 functions)
41 X3100 Series supports MTU up to 9600 bytes, modifiable using
50 Resulting in noticeable performance improvement (up to 7% on certain
Dnetdevices.txt21 (netdev_priv(dev)) then it is up to the module exit handler to free that.
30 actual skb will contain up to 1514 bytes because of the Ethernet
35 transmit routine, and the device will break that up into separate
42 standard Ethernet mtu of 1500 bytes, the device should allow up to
44 drop, truncate, or pass up oversize packets, but dropping oversize
Deql.txt46 Here I describe the general steps of getting a kernel up and working
98 managers is up to you. Most other connection managers that I've seen
110 command that sets up the eql device:
122 Once the eql device is up and running, add a static default route to
177 The general idea is to bring up and keep up as many SLIP connections
232 I tried to fix up a PPP script/system for redialing lost PPP
242 up of the driver was tuned to handle slaves with wildly different
350 single connection. This allows one to improve dial-up network
472 transfer of up to 7.5 Kbyte/s on one go, but averaged around
Dip_dynaddr.txt16 going up. So, the *same* (local AND masqueraded) connections requests that
17 bring the link up will be able to get established.
Dcxacru.txt66 "up"
100 [2635357.696901] ATM dev 0: ADSL line: up (8128 kb/s down | 832 kb/s up)
Ddriver.txt67 up the SKB and in some finite amount of time.
73 to be freed up.
77 to free it up.
/linux-4.1.27/arch/mips/cavium-octeon/
Dflash_setup.c36 up(&octeon_bootbus_sem); in octeon_flash_map_read()
46 up(&octeon_bootbus_sem); in octeon_flash_map_write()
54 up(&octeon_bootbus_sem); in octeon_flash_map_copy_from()
62 up(&octeon_bootbus_sem); in octeon_flash_map_copy_to()
/linux-4.1.27/drivers/net/ethernet/intel/ixgbe/
Dixgbe_dcb.c227 u8 ixgbe_dcb_get_tc_from_up(struct ixgbe_dcb_config *cfg, int direction, u8 up) in ixgbe_dcb_get_tc_from_up() argument
230 u8 prio_mask = 1 << up; in ixgbe_dcb_get_tc_from_up()
252 u8 up; in ixgbe_dcb_unpack_map() local
254 for (up = 0; up < MAX_USER_PRIORITY; up++) in ixgbe_dcb_unpack_map()
255 map[up] = ixgbe_dcb_get_tc_from_up(cfg, direction, up); in ixgbe_dcb_unpack_map()
Dixgbe_dcb_nl.c63 u8 up = dcb_getapp(adapter->netdev, &app); in ixgbe_copy_dcb_cfg() local
65 if (up && !(up & (1 << adapter->fcoe.up))) in ixgbe_copy_dcb_cfg()
398 u8 up = dcb_getapp(netdev, &app); in ixgbe_dcbnl_set_all() local
400 adapter->fcoe.up = ffs(up) - 1; in ixgbe_dcbnl_set_all()
660 if (app_mask & (1 << adapter->fcoe.up)) in ixgbe_dcbnl_ieee_setapp()
663 adapter->fcoe.up = app->priority; in ixgbe_dcbnl_ieee_setapp()
703 if (app_mask & (1 << adapter->fcoe.up)) in ixgbe_dcbnl_ieee_delapp()
706 adapter->fcoe.up = app_mask ? in ixgbe_dcbnl_ieee_delapp()
/linux-4.1.27/Documentation/
Dbtmrvl.txt19 where GPIO is the pin number of GPIO used to wake up the host.
27 # Use SDIO interface to wake up the host and set GAP to 0x80:
31 # Use GPIO pin #3 to wake up the host and set GAP to 0xff:
55 These commands are used to enable host sleep or wake up firmware
59 0 -- Wake up firmware
66 # Wake up firmware
Dworkqueue.txt43 up.
81 wants a function to be executed asynchronously it has to set up a work
122 whenever an active worker wakes up or sleeps and keeps track of the
151 for execution contexts to free up.
180 expected and using bound wq may end up creating large number
273 15 w0 wakes up and burns CPU
277 35 w1 wakes up and finishes
280 50 w2 wakes up and finishes
291 15 w0 wakes up and burns CPU
293 20 w1 wakes up and finishes
[all …]
Drobust-futexes.txt16 creates a 'futex queue' internally, so that it can later on match up the
20 sys_futex(FUTEX_WAKE) syscall to wake them up. Once all waiters have
42 then the kernel has no information to clean up after the held lock!
43 Userspace has no chance to clean up after the lock either - userspace is
44 the one that crashes, so it has no opportunity to clean up. Catch-22.
72 are to be cleaned up, because a robust futex might have been registered
90 locks to be cleaned up?
98 this thread with the FUTEX_OWNER_DIED bit, and wakes up one waiter (if
109 kernel to clean up if the thread dies after acquiring the lock, but just
192 and wakes up the next futex waiter (if any). User-space does the rest of
[all …]
DManagementStyle4 This is a short document describing the preferred (or made up, depending
91 the first place, and your decision ended up being a big one after
95 admitting up-front that you don't have a friggin' clue, and telling
120 answer may end up being that both teams get so frustrated by the
121 situation that they just give up.
125 couldn't decide was that they were both wrong. You end up coming up
127 have screwed up on.
158 right), the harder it ends up being to apologize afterwards.
162 - spread the "love" out so evenly that nobody really ends up feeling
186 Suck up to them, because they are the people who will make your job
[all …]
Dnumastat.txt12 but ended up with memory from this node.
15 but ended up with memory from another one.
Dsgi-ioc4.txt16 PS/2 controller driver as this functionality has never been wired up
38 up to the ioc4 driver via the appropriate registration, probe, and
44 other than it hooks up to the ioc4 driver via the appropriate registration,
/linux-4.1.27/net/ipv6/
Dudp.c624 struct udp_sock *up = udp_sk(sk); in udpv6_queue_rcv_skb() local
631 if (static_key_false(&udpv6_encap_needed) && up->encap_type) { in udpv6_queue_rcv_skb()
646 encap_rcv = ACCESS_ONCE(up->encap_rcv); in udpv6_queue_rcv_skb()
671 if (up->pcrlen == 0) { /* full coverage was set */ in udpv6_queue_rcv_skb()
676 if (UDP_SKB_CB(skb)->cscov < up->pcrlen) { in udpv6_queue_rcv_skb()
678 UDP_SKB_CB(skb)->cscov, up->pcrlen); in udpv6_queue_rcv_skb()
967 struct udp_sock *up = udp_sk(sk); in udp_v6_flush_pending_frames() local
969 if (up->pending == AF_INET) in udp_v6_flush_pending_frames()
971 else if (up->pending) { in udp_v6_flush_pending_frames()
972 up->len = 0; in udp_v6_flush_pending_frames()
[all …]
/linux-4.1.27/Documentation/power/
Dswsusp-dmcrypt.txt14 Now your system is properly set up, your disk is encrypted except for
24 up dm-crypt and then asks swsusp to resume from the encrypted
27 The most important thing is that you set up dm-crypt in such
31 to always set up this swap device first with dmsetup, so that
36 Now set up your kernel to use /dev/mapper/swap0 as the default
62 /dev/hda1 contains an unencrypted mini system that sets up all
123 Then we need to set up dmcrypt with the setup data from the
132 mini system on /dev/hda1 to set the whole crypto up (it is up to
137 the initrd prior to continue booting but it is up to you to modify
/linux-4.1.27/sound/usb/caiaq/
Dmidi.c39 static void snd_usb_caiaq_midi_input_trigger(struct snd_rawmidi_substream *substream, int up) in snd_usb_caiaq_midi_input_trigger() argument
46 cdev->midi_receive_substream = up ? substream : NULL; in snd_usb_caiaq_midi_input_trigger()
91 static void snd_usb_caiaq_midi_output_trigger(struct snd_rawmidi_substream *substream, int up) in snd_usb_caiaq_midi_output_trigger() argument
95 if (up) { in snd_usb_caiaq_midi_output_trigger()
/linux-4.1.27/Documentation/hwmon/
Ducd900023 sequences up to 12 independent voltage rails. The device integrates a 12-bit
24 ADC with a 2.5V internal reference for monitoring up to 13 power supply voltage,
28 system-health monitor. The device integrates a 12-bit ADC for monitoring up to
36 monitor. The device integrates a 12-bit ADC for monitoring up to 10 power-supply
43 system-health monitor. The device integrates a 12-bit ADC for monitoring up to
109 Note that even though UCD90910 supports up to 10 fans,
110 only up to four fans are currently supported.
Dmax1606536 current-sense amplifier. The MAX16065 manages up to twelve system voltages
37 simultaneously, and the MAX16066 manages up to eight supply voltages.
40 system voltages. The MAX16067 manages up to six system voltages simultaneously.
42 The MAX16068 flash-configurable system manager monitors and manages up to six
48 MAX16070 monitors up to twelve system voltages simultaneously, and the MAX16071
49 monitors up to eight supply voltages.
Dnct790417 The NCT7904D is a hardware monitor supporting up to 20 voltage sensors,
19 interface, up to 12 fan tachometer inputs, up to 4 fan control channels
Dtmp42134 implement one local and up to one (TMP421, TMP441), up to two (TMP422,
35 TMP442) or up to three (TMP423) remote sensors. Temperature is measured
Dnct668318 The chips implement up to shared 32 temperature and voltage sensors.
19 It supports up to 16 fan rotation sensors and up to 8 fan control engines.
Dpc8742712 Thanks to Amir Habibi at Candelis for setting up a test system, and to
20 monitoring capabilities. It can monitor up to 18 voltages, 8 fans and
24 This chip also has fan controlling features (up to 4 PWM outputs),
Dadm103125 They sense their own temperature as well as the temperature of up to one
34 The ADM1030 monitors a single fan speed, while the ADM1031 monitors up to
Demc6w20120 This ACPI compliant device provides hardware monitoring for up to six
22 measures the speed of up to five fans, and controls the speed of
/linux-4.1.27/Documentation/devicetree/bindings/input/
Dqcom,pm8941-pwrkey.txt29 - bias-pull-up:
33 should be configured for pull up.
42 bias-pull-up;
Dqcom,pm8xxx-pwrkey.txt31 - pull-up:
35 should be configured for pull up.
45 pull-up;
/linux-4.1.27/Documentation/devicetree/bindings/phy/
Dapm-xgene-phy.txt19 Two set of 3-tuple setting for each (up to 3)
25 Two set of 3-tuple setting for each (up to 3)
29 (up to 3) supported link speed on the host. Range is
32 each (up to 3) supported link speed on the host.
36 3-tuple setting for each (up to 3) supported link
40 3-tuple setting for each (up to 3) supported link
Dphy-miphy28lp.txt59 reg-names = "sata-up",
60 "pcie-up",
74 reg-names = "sata-up",
75 "pcie-up",
90 "usb3-up";
/linux-4.1.27/sound/firewire/dice/
Ddice-midi.c47 static void midi_capture_trigger(struct snd_rawmidi_substream *substrm, int up) in midi_capture_trigger() argument
54 if (up) in midi_capture_trigger()
64 static void midi_playback_trigger(struct snd_rawmidi_substream *substrm, int up) in midi_playback_trigger() argument
71 if (up) in midi_playback_trigger()
/linux-4.1.27/arch/sh/drivers/
Dheartbeat.c65 static unsigned bit = 0, up = 1; in heartbeat_timer() local
69 bit += up; in heartbeat_timer()
71 up = -up; in heartbeat_timer()
/linux-4.1.27/arch/alpha/lib/
Dstrcpy.S18 mov $16, $0 # set up return value
19 mov $26, $23 # set up return address
/linux-4.1.27/sound/firewire/fireworks/
Dfireworks_midi.c68 static void midi_capture_trigger(struct snd_rawmidi_substream *substrm, int up) in midi_capture_trigger() argument
75 if (up) in midi_capture_trigger()
85 static void midi_playback_trigger(struct snd_rawmidi_substream *substrm, int up) in midi_playback_trigger() argument
92 if (up) in midi_playback_trigger()
/linux-4.1.27/sound/firewire/bebob/
Dbebob_midi.c67 static void midi_capture_trigger(struct snd_rawmidi_substream *substrm, int up) in midi_capture_trigger() argument
74 if (up) in midi_capture_trigger()
84 static void midi_playback_trigger(struct snd_rawmidi_substream *substrm, int up) in midi_playback_trigger() argument
91 if (up) in midi_playback_trigger()
/linux-4.1.27/sound/isa/msnd/
Dmsnd_midi.c97 int up) in snd_msndmidi_input_trigger() argument
102 snd_printdd("snd_msndmidi_input_trigger(, %i)\n", up); in snd_msndmidi_input_trigger()
106 if (up) { in snd_msndmidi_input_trigger()
114 if (up) in snd_msndmidi_input_trigger()
/linux-4.1.27/drivers/net/wan/
Dhdlc_cisco.c59 int up; member
229 if (!st->up) { in cisco_rx()
238 st->up = 1; in cisco_rx()
267 if (st->up && in cisco_timer()
269 st->up = 0; in cisco_timer()
293 st->up = st->txseq = st->rxseq = 0; in cisco_start()
315 st->up = st->txseq = 0; in cisco_stop()
/linux-4.1.27/drivers/char/
Dsnsc.c192 up(&sd->sd_rbs); in scdrv_read()
206 up(&sd->sd_rbs); in scdrv_read()
231 up(&sd->sd_rbs); in scdrv_read()
275 up(&sd->sd_wbs); in scdrv_write()
289 up(&sd->sd_wbs); in scdrv_write()
302 up(&sd->sd_wbs); in scdrv_write()
312 up(&sd->sd_wbs); in scdrv_write()
/linux-4.1.27/Documentation/arm/
Dmem_alignment1 Too many problems poped up because of unnoticed misaligned memory access in
5 doing so on some f***ed up ARM architectures like the EBSA110. However
27 /proc/cpu/alignment. The number is made up from various bits:
37 1 The kernel will attempt to fix up the user process
49 fixing up or sending SIGBUS signals:
Dcluster-pm-race-avoidance.txt1 Cluster-wide Power-up/power-down race avoidance algorithm
33 are not immediately enabled when a cluster powers up. Since enabling or
37 power-down and power-up at the cluster level.
144 a) an explicit hardware power-up operation, resulting
153 cluster is set up and coherent. If the cluster is not ready,
155 cluster has been set up.
203 CPU can start up while another CPU is tearing the cluster down.
207 view of the cluster state as seen by a CPU setting the CPU up.
210 that a CPU which is setting up the cluster can advertise its state
292 a) an explicit hardware power-up operation, resulting
[all …]
/linux-4.1.27/Documentation/video4linux/
Dcpia2_overview.txt5 STV0672, which is capable of up to 30 frames per second (fps) in frame sizes
6 up to CIF, and 15 fps for VGA frames. The STV0676 is an improved version,
7 which can handle up to 30 fps VGA. Both coprocessors can be attached to two
19 interdependant, such as the sequence required to power up the camera. I will
24 registers that control housekeeping functions such as powering up the video
/linux-4.1.27/drivers/char/hw_random/
Dn2-drv.c337 struct n2rng_unit *up = &np->units[i]; in n2rng_control_swstate_init() local
339 up->control[0] = CONTROL_DEFAULT_0; in n2rng_control_swstate_init()
340 up->control[1] = CONTROL_DEFAULT_1; in n2rng_control_swstate_init()
341 up->control[2] = CONTROL_DEFAULT_2; in n2rng_control_swstate_init()
342 up->control[3] = CONTROL_DEFAULT_3; in n2rng_control_swstate_init()
557 struct n2rng_unit *up = &np->units[unit]; in n2rng_control_configure_units() local
558 unsigned long ctl_ra = __pa(&up->control[0]); in n2rng_control_configure_units()
572 up->control[esrc] = base | in n2rng_control_configure_units()
576 up->control[3] = base | in n2rng_control_configure_units()
/linux-4.1.27/arch/arm/common/
Dmcpm_head.S111 cmp r0, #CLUSTER_UP @ cluster already up?
112 bne mcpm_setup @ if not, set up the cluster
122 @ Signal that the cluster is being brought up:
142 @ If the outbound gave up before teardown started, skip cluster setup:
147 @ power_up_setup is now responsible for setting up the cluster:
188 @ Mark the CPU as up:
/linux-4.1.27/Documentation/ioctl/
D00-INDEX3 botching-up-ioctls.txt
4 - how to avoid botching up ioctls
/linux-4.1.27/drivers/staging/rtl8192u/ieee80211/
Dieee80211_softmac_wx.c83 up(&ieee->wx_sem); in ieee80211_wx_set_freq()
177 up(&ieee->wx_sem); in ieee80211_wx_set_wap()
299 up(&ieee->wx_sem); in ieee80211_wx_set_mode()
361 up(&ieee->wx_sem); in ieee80211_wx_sync_scan_wq()
384 up(&ieee->wx_sem); in ieee80211_wx_set_scan()
439 up(&ieee->wx_sem); in ieee80211_wx_set_essid()
485 up(&ieee->wx_sem); in ieee80211_wx_set_rawtx()
562 up(&ieee->wx_sem); in ieee80211_wx_set_power()
601 up(&ieee->wx_sem); in ieee80211_wx_get_power()
/linux-4.1.27/drivers/staging/skein/
Dskein_api.c182 u8 *up; in skein_update_bits() local
203 up = (u8 *)ctx->m.s256.x + ctx->skein_size / 8; in skein_update_bits()
216 up[length-1] = (u8)((up[length-1] & (0-mask))|mask); in skein_update_bits()
/linux-4.1.27/Documentation/devicetree/bindings/input/touchscreen/
Dti-tsc-adc.txt35 in order to avoid false pen-up events. This value
37 kept as low as possible, while avoiding false pen-up
39 increase value until false pen-up events are avoided.
40 The pen-up detection happens immediately after the
/linux-4.1.27/sound/usb/6fire/
Dmidi.c75 struct snd_rawmidi_substream *alsa_sub, int up) in usb6fire_midi_out_trigger() argument
83 if (up) { /* start transfer */ in usb6fire_midi_out_trigger()
129 struct snd_rawmidi_substream *alsa_sub, int up) in usb6fire_midi_in_trigger() argument
135 if (up) in usb6fire_midi_in_trigger()
/linux-4.1.27/sound/firewire/oxfw/
Doxfw-midi.c85 static void midi_capture_trigger(struct snd_rawmidi_substream *substrm, int up) in midi_capture_trigger() argument
92 if (up) in midi_capture_trigger()
102 static void midi_playback_trigger(struct snd_rawmidi_substream *substrm, int up) in midi_playback_trigger() argument
109 if (up) in midi_playback_trigger()
/linux-4.1.27/sound/isa/sb/
Dsb8_midi.c153 static void snd_sb8dsp_midi_input_trigger(struct snd_rawmidi_substream *substream, int up) in snd_sb8dsp_midi_input_trigger() argument
160 if (up) { in snd_sb8dsp_midi_input_trigger()
224 static void snd_sb8dsp_midi_output_trigger(struct snd_rawmidi_substream *substream, int up) in snd_sb8dsp_midi_output_trigger() argument
231 if (up) { in snd_sb8dsp_midi_output_trigger()
246 if (up) in snd_sb8dsp_midi_output_trigger()
/linux-4.1.27/drivers/staging/rtl8192e/
Drtllib_softmac_wx.c84 up(&ieee->wx_sem); in rtllib_wx_set_freq()
188 up(&ieee->wx_sem); in rtllib_wx_set_wap()
325 up(&ieee->wx_sem); in rtllib_wx_set_mode()
415 up(&ieee->wx_sem); in rtllib_wx_sync_scan_wq()
438 up(&ieee->wx_sem); in rtllib_wx_set_scan()
501 up(&ieee->wx_sem); in rtllib_wx_set_essid()
545 up(&ieee->wx_sem); in rtllib_wx_set_rawtx()
620 up(&ieee->wx_sem); in rtllib_wx_set_power()
657 up(&ieee->wx_sem); in rtllib_wx_get_power()
/linux-4.1.27/Documentation/filesystems/
Dfiles.txt61 4. To look up the file structure given an fd, a reader
76 5. Handling of the file structures is special. Since the look-up
78 that look-up may race with the last put() operation on the
99 6. Since both fdtable and file structures can be looked up
101 API. If they are looked up lock-free, rcu_dereference()
105 7. While updating, the fdtable pointer must be looked up while
/linux-4.1.27/Documentation/sound/alsa/soc/
Djack.txt17 This is done by splitting the jacks up into three things working
32 user space. The jack itself is completely passive, it is set up by the
54 be set up by the machine driver, taking configuration for the jack to
69 system hardware. The machine driver will set up the snd_soc_jack and
70 the list of pins to update then set up one or more jack detection
Dmachine.txt53 also be used to set up the DAI system clock and for any machine related DAI
57 struct snd_soc_dai_link is used to set up each DAI in your machine. e.g.
71 struct snd_soc_card then sets up the machine with its DAIs. e.g.
85 audio power map of the audio subsystem. This allows for automatic power up/down
/linux-4.1.27/net/
Dcompat.c335 struct compat_timeval __user *up = (struct compat_timeval __user *)optval; in do_set_sock_timeout() local
340 if (optlen < sizeof(*up)) in do_set_sock_timeout()
342 if (!access_ok(VERIFY_READ, up, sizeof(*up)) || in do_set_sock_timeout()
343 __get_user(ktime.tv_sec, &up->tv_sec) || in do_set_sock_timeout()
344 __get_user(ktime.tv_usec, &up->tv_usec)) in do_set_sock_timeout()
396 struct compat_timeval __user *up; in do_get_sock_timeout() local
401 up = (struct compat_timeval __user *) optval; in do_get_sock_timeout()
404 if (len < sizeof(*up)) in do_get_sock_timeout()
413 if (put_user(sizeof(*up), optlen) || in do_get_sock_timeout()
414 !access_ok(VERIFY_WRITE, up, sizeof(*up)) || in do_get_sock_timeout()
[all …]
/linux-4.1.27/drivers/staging/lustre/
DTODO5 * Clean up libcfs layer. Ideally we can remove include/linux/libcfs entirely.
6 * Clean up CLIO layer. Lustre client readahead/writeback control needs to better
/linux-4.1.27/drivers/input/keyboard/
Dhil_kbd.c171 int up = key & HIL_KBD_SET1_UPBIT; in hil_dev_handle_kbd_events() local
175 input_report_key(dev, key, !up); in hil_dev_handle_kbd_events()
182 int up = key & HIL_KBD_SET2_UPBIT; in hil_dev_handle_kbd_events() local
186 input_report_key(dev, key, !up); in hil_dev_handle_kbd_events()
193 int up = key & HIL_KBD_SET3_UPBIT; in hil_dev_handle_kbd_events() local
197 input_report_key(dev, key, !up); in hil_dev_handle_kbd_events()
252 int up = btn & 1; in hil_dev_handle_ptr_events() local
261 input_report_key(dev, btn, !up); in hil_dev_handle_ptr_events()
/linux-4.1.27/drivers/staging/gdm724x/
DTODO2 - Clean up coding style to meet kernel standard. (80 line limit, netdev_err)
12 - fix up static tty port allocation to be dynamic
/linux-4.1.27/Documentation/devicetree/bindings/arm/
Dvic.txt26 configured as wake up source for the system. Order of bits is the same as for
28 configured as a wake up source for the system. If unspecied, defaults to all
29 interrupt sources configurable as wake up sources.
Datmel-at91.txt124 - atmel,wakeup-counter: Counter on Wake-up 0 (between 0x0 and 0xf).
127 - atmel,wakeup-rtt-timer: boolean to enable Real-time Timer Wake-up.
130 - atmel,wakeup-rtc-timer: boolean to enable Real-time Clock Wake-up.
131 - atmel,wakeup-rtt-timer: boolean to enable Real-time Timer Wake-up.
134 - atmel,wakeup-rtc-timer: boolean to enable Real-time Clock Wake-up.
/linux-4.1.27/drivers/zorro/
DKconfig11 15KB, but it gets freed after the system boots up, so it doesn't
12 take up kernel memory. Anyway, if you are building an installation
/linux-4.1.27/sound/isa/gus/
Dgus_uart.c174 static void snd_gf1_uart_input_trigger(struct snd_rawmidi_substream *substream, int up) in snd_gf1_uart_input_trigger() argument
182 if (up) { in snd_gf1_uart_input_trigger()
192 static void snd_gf1_uart_output_trigger(struct snd_rawmidi_substream *substream, int up) in snd_gf1_uart_output_trigger() argument
202 if (up) { in snd_gf1_uart_output_trigger()
/linux-4.1.27/Documentation/isdn/
DREADME.x2521 Backing up important data will never harm.
64 by an ISDN B-channel (leased line as well as dial up connection should
108 In order to set up a conforming protocol stack you also need to
129 corresponding isdn connection is set up by you. At least one test
135 How to set up a test installation?
156 ifconfig the network interfaces up and add X.25-routes to them. Use
159 ifconfig <iface-name> up
162 is needed to set up X.25 routes. I.e.
178 provide useful examples for setting up X.25 on top of isdn.
/linux-4.1.27/Documentation/device-mapper/
Ddm-flakey.txt9 <up interval> seconds, then exhibits unreliable behaviour for <down
18 <dev path> <offset> <up interval> <down interval> \
25 <up interval>: Number of seconds device is available.
/linux-4.1.27/arch/arm/mach-omap1/
Dserial.c33 static inline unsigned int omap_serial_in(struct plat_serial8250_port *up, in omap_serial_in() argument
36 offset <<= up->regshift; in omap_serial_in()
37 return (unsigned int)__raw_readb(up->membase + offset); in omap_serial_in()
/linux-4.1.27/arch/arm/mach-omap2/
Dsram243x.S56 mov r9, #0x1 @ set up for L1 voltage call
116 str r5, [r4] @ set up for change.
126 cmp r5, r7 @ time up?
160 movne r9, #0x0 @ if up set flag up for pre up, hi volt
211 str r8, [r10] @ set up for change.
221 cmp r8, r7 @ time up?
Dsram242x.S56 mov r9, #0x1 @ set up for L1 voltage call
116 str r5, [r4] @ set up for change.
126 cmp r5, r7 @ time up?
160 movne r9, #0x0 @ if up set flag up for pre up, hi volt
211 str r8, [r10] @ set up for change.
221 cmp r8, r7 @ time up?
/linux-4.1.27/Documentation/video4linux/bttv/
DPROBLEMS10 Start up X11 like this: "XF86_S3 -probeonly" and write down where the
16 Some S3 cards even take up 64MB of memory but only report 32MB to the BIOS.
37 Looks like XFree does something different when setting up the video memory?
54 can sometimes lock up if you use more than 1 bt848 card at the same time.
/linux-4.1.27/Documentation/misc-devices/
Dspear-pcie-gadget.txt94 go for link up now.
97 It will have to be insured that, once link up is done on gadget, then only host
100 /*wait till link is up*/
116 go for link up now
119 wait till link is up
/linux-4.1.27/Documentation/input/
Dsentelic.txt103 Bit4 => scroll up
144 Bit5 => Valid bit, 0 means that the coordinate is invalid or finger up.
145 When both fingers are up, the last two reports have zero valid
169 Bit5 => Valid bit, 0 means that the coordinate is invalid or finger up.
170 When both fingers are up, the last two reports have zero valid
210 Bit4 => scroll up button
234 Bit5 => Valid bit, 0 means that the coordinate is invalid or finger up.
235 When both fingers are up, the last two reports have zero valid
237 Bit4 => finger up/down information. 1: finger down, 0: finger up.
247 Bit5 => scroll up button
[all …]
/linux-4.1.27/Documentation/devicetree/bindings/hwmon/
Dntc_thermistor.txt20 - "pullup-uv" Pull up voltage in micro volts
21 - "pullup-ohm" Pull up resistor value in ohms
/linux-4.1.27/drivers/gpu/drm/msm/edp/
Dedp_phy.c76 void msm_edp_phy_lane_power_ctrl(struct edp_phy *phy, bool up, u32 max_lane) in msm_edp_phy_lane_power_ctrl() argument
81 if (up) in msm_edp_phy_lane_power_ctrl()
/linux-4.1.27/Documentation/fb/
Dinternals.txt68 The pixel value is broken up into red, green, and blue fields.
73 The pixel value is broken up into red, green, and blue fields, each of which
74 are looked up in separate red, green, and blue lookup tables.
/linux-4.1.27/Documentation/devicetree/bindings/media/
Dst-rc.txt12 be present iff the rx pins are wired up.
15 be present iff the tx pins are wired up.
/linux-4.1.27/Documentation/scsi/
Dsym53c8xx_2.txt169 named LOAD and STORE that allow to move up to 1 DWORD from/to an IO register
228 maximum number of queued commands up to 32. The Symbios Setup only allows
236 This driver supports up to 255 commands per device, and but using more than
276 corresponding to your controller after boot-up.
378 th driver verbose level after boot-up.
401 features supported by the driver can be enabled at start-up. However,
403 support by the driver of this feature at linux start-up and enable
404 this feature after boot-up only for devices that support it safely.
436 - enable tagged commands, up to 4 tagged commands queued.
466 diff=0 never set up diff mode
[all …]
/linux-4.1.27/drivers/net/can/softing/
Dsofting.h46 int up; member
97 int softing_startstop(struct net_device *netdev, int up);
/linux-4.1.27/sound/pci/ca0106/
Dca_midi.c206 static void ca_midi_input_trigger(struct snd_rawmidi_substream *substream, int up) in ca_midi_input_trigger() argument
213 if (up) { in ca_midi_input_trigger()
220 static void ca_midi_output_trigger(struct snd_rawmidi_substream *substream, int up) in ca_midi_output_trigger() argument
228 if (up) { in ca_midi_output_trigger()
/linux-4.1.27/Documentation/cris/
DREADME43 * four serial-ports (up to 6 Mbit/s)
82 Setting up paging and the MMU.
131 Init starts up...
133 Setting up eth0 with ip 10.13.9.116 and mac 00:40:8c:18:04:60
135 Setting up lo with ip 127.0.0.1
140 sftpd[15]: sftpd $Revision: 1.7 $ starting up
/linux-4.1.27/Documentation/s390/
DDASD8 below. Thus you may have up to 64 DASD devices in your system.
16 covered by the supplied range up to 64 volumes. Additional DASDs are
31 volume, skipping the first blocks up to the volume label. These are
54 up to the last track. blksize can be any power of two between 512 and
/linux-4.1.27/sound/isa/wavefront/
Dwavefront_midi.c325 static void snd_wavefront_midi_input_trigger(struct snd_rawmidi_substream *substream, int up) in snd_wavefront_midi_input_trigger() argument
344 if (up) { in snd_wavefront_midi_input_trigger()
364 static void snd_wavefront_midi_output_trigger(struct snd_rawmidi_substream *substream, int up) in snd_wavefront_midi_output_trigger() argument
383 if (up) { in snd_wavefront_midi_output_trigger()
399 if (up) in snd_wavefront_midi_output_trigger()
/linux-4.1.27/drivers/nfc/
Dnfcsim.c50 u8 up; member
105 dev->up = 1; in nfcsim_dev_up()
120 dev->up = 0; in nfcsim_dev_down()
263 if (dev->shutting_down || !dev->up || !dev->clone_skb) { in nfcsim_wq_recv()
297 if (dev->shutting_down || !dev->up) { in nfcsim_tx()
/linux-4.1.27/drivers/staging/media/bcm2048/
DTODO20 Finally this driver should probably be split up into two parts: one
23 until the rest of the driver is cleaned up. Then I have a better idea of
/linux-4.1.27/sound/usb/line6/
Dmidi.c156 int up) in line6_midi_output_trigger() argument
192 int up) in line6_midi_input_trigger() argument
197 if (up) in line6_midi_input_trigger()
/linux-4.1.27/Documentation/filesystems/caching/
Dobject.txt102 wakes up in that state. There are four logical sets of states:
116 up in-memory resources.
159 preparation states in which the object sets itself up and waits for its parent
166 up from the parent object, until that parent object itself has been looked
167 up.
169 There are initialisation states in which the object sets itself up and accesses
174 Look up the object on disk, using the parent as a starting point.
232 And there are terminal states in which an object cleans itself up, deallocates
239 Temporary data is cleaned up, and the parent is released.

123456789