/linux-4.1.27/drivers/pcmcia/ |
D | electra_cf.c | 68 static int electra_cf_present(struct electra_cf_socket *cf) in electra_cf_present() argument 72 gpio = in_le32(cf->gpio_base+0x40); in electra_cf_present() 73 return !(gpio & (1 << cf->gpio_detect)); in electra_cf_present() 84 struct electra_cf_socket *cf = (void *) _cf; in electra_cf_timer() local 85 int present = electra_cf_present(cf); in electra_cf_timer() 87 if (present != cf->present) { in electra_cf_timer() 88 cf->present = present; in electra_cf_timer() 89 pcmcia_parse_events(&cf->socket, SS_DETECT); in electra_cf_timer() 92 if (cf->active) in electra_cf_timer() 93 mod_timer(&cf->timer, jiffies + POLL_INTERVAL); in electra_cf_timer() [all …]
|
D | bfin_cf_pcmcia.c | 91 struct bfin_cf_socket *cf = (void *)_cf; in bfin_cf_timer() local 92 unsigned short present = bfin_cf_present(cf->cd_pfx); in bfin_cf_timer() 94 if (present != cf->present) { in bfin_cf_timer() 95 cf->present = present; in bfin_cf_timer() 96 dev_dbg(&cf->pdev->dev, ": card %s\n", in bfin_cf_timer() 98 pcmcia_parse_events(&cf->socket, SS_DETECT); in bfin_cf_timer() 101 if (cf->active) in bfin_cf_timer() 102 mod_timer(&cf->timer, jiffies + POLL_INTERVAL); in bfin_cf_timer() 107 struct bfin_cf_socket *cf; in bfin_cf_get_status() local 112 cf = container_of(s, struct bfin_cf_socket, socket); in bfin_cf_get_status() [all …]
|
D | omap_cf.c | 85 struct omap_cf_socket *cf = (void *) _cf; in omap_cf_timer() local 88 if (present != cf->present) { in omap_cf_timer() 89 cf->present = present; in omap_cf_timer() 92 pcmcia_parse_events(&cf->socket, SS_DETECT); in omap_cf_timer() 95 if (cf->active) in omap_cf_timer() 96 mod_timer(&cf->timer, jiffies + POLL_INTERVAL); in omap_cf_timer() 116 struct omap_cf_socket *cf; in omap_cf_get_status() local 119 cf = container_of(s, struct omap_cf_socket, socket); in omap_cf_get_status() 121 s->pci_irq = cf->irq; in omap_cf_get_status() 164 struct omap_cf_socket *cf; in omap_cf_set_io_map() local [all …]
|
D | at91_cf.c | 56 static inline int at91_cf_present(struct at91_cf_socket *cf) in at91_cf_present() argument 58 return !gpio_get_value(cf->board->det_pin); in at91_cf_present() 70 struct at91_cf_socket *cf = _cf; in at91_cf_irq() local 72 if (irq == gpio_to_irq(cf->board->det_pin)) { in at91_cf_irq() 73 unsigned present = at91_cf_present(cf); in at91_cf_irq() 76 if (present != cf->present) { in at91_cf_irq() 77 cf->present = present; in at91_cf_irq() 78 dev_dbg(&cf->pdev->dev, "card %s\n", in at91_cf_irq() 80 pcmcia_parse_events(&cf->socket, SS_DETECT); in at91_cf_irq() 89 struct at91_cf_socket *cf; in at91_cf_get_status() local [all …]
|
/linux-4.1.27/arch/s390/kernel/ |
D | perf_cpum_cf_events.c | 12 CPUMF_EVENT_ATTR(cf, CPU_CYCLES, 0x0000); 13 CPUMF_EVENT_ATTR(cf, INSTRUCTIONS, 0x0001); 14 CPUMF_EVENT_ATTR(cf, L1I_DIR_WRITES, 0x0002); 15 CPUMF_EVENT_ATTR(cf, L1I_PENALTY_CYCLES, 0x0003); 16 CPUMF_EVENT_ATTR(cf, PROBLEM_STATE_CPU_CYCLES, 0x0020); 17 CPUMF_EVENT_ATTR(cf, PROBLEM_STATE_INSTRUCTIONS, 0x0021); 18 CPUMF_EVENT_ATTR(cf, PROBLEM_STATE_L1I_DIR_WRITES, 0x0022); 19 CPUMF_EVENT_ATTR(cf, PROBLEM_STATE_L1I_PENALTY_CYCLES, 0x0023); 20 CPUMF_EVENT_ATTR(cf, PROBLEM_STATE_L1D_DIR_WRITES, 0x0024); 21 CPUMF_EVENT_ATTR(cf, PROBLEM_STATE_L1D_PENALTY_CYCLES, 0x0025); [all …]
|
/linux-4.1.27/net/can/ |
D | gw.c | 101 void (*modfunc[MAX_MODFUNCTIONS])(struct can_frame *cf, 110 void (*xor)(struct can_frame *cf, struct cgw_csum_xor *xor); 111 void (*crc8)(struct can_frame *cf, struct cgw_csum_crc8 *crc8); 155 #define MODFUNC(func, op) static void func(struct can_frame *cf, \ 158 MODFUNC(mod_and_id, cf->can_id &= mod->modframe.and.can_id) 159 MODFUNC(mod_and_dlc, cf->can_dlc &= mod->modframe.and.can_dlc) 160 MODFUNC(mod_and_data, *(u64 *)cf->data &= *(u64 *)mod->modframe.and.data) 161 MODFUNC(mod_or_id, cf->can_id |= mod->modframe.or.can_id) 162 MODFUNC(mod_or_dlc, cf->can_dlc |= mod->modframe.or.can_dlc) 163 MODFUNC(mod_or_data, *(u64 *)cf->data |= *(u64 *)mod->modframe.or.data) [all …]
|
D | af_can.c | 614 struct can_frame *cf = (struct can_frame *)skb->data; in can_rcv_filter() local 615 canid_t can_id = cf->can_id; in can_rcv_filter()
|
D | bcm.c | 246 struct can_frame *cf = &op->frames[op->currframe]; in bcm_can_tx() local 266 memcpy(skb_put(skb, CFSIZ), cf, CFSIZ); in bcm_can_tx()
|
/linux-4.1.27/arch/mips/pci/ |
D | ops-bridge.c | 51 u32 cf, shift, mask; in pci_conf0_read_config() local 55 if (get_dbe(cf, (u32 *) addr)) in pci_conf0_read_config() 62 if (cf == (PCI_VENDOR_ID_SGI | (PCI_DEVICE_ID_SGI_IOC3 << 16))) in pci_conf0_read_config() 93 if (get_dbe(cf, (u32 *) addr)) in pci_conf0_read_config() 98 *value = (cf >> shift) & mask; in pci_conf0_read_config() 112 u32 cf, shift, mask; in pci_conf1_read_config() local 117 if (get_dbe(cf, (u32 *) addr)) in pci_conf1_read_config() 124 if (cf == (PCI_VENDOR_ID_SGI | (PCI_DEVICE_ID_SGI_IOC3 << 16))) in pci_conf1_read_config() 157 if (get_dbe(cf, (u32 *) addr)) in pci_conf1_read_config() 162 *value = (cf >> shift) & mask; in pci_conf1_read_config() [all …]
|
/linux-4.1.27/drivers/net/can/ |
D | xilinx_can.c | 392 struct can_frame *cf = (struct can_frame *)skb->data; in xcan_start_xmit() local 407 if (cf->can_id & CAN_EFF_FLAG) { in xcan_start_xmit() 409 id = ((cf->can_id & CAN_EFF_MASK) << XCAN_IDR_ID2_SHIFT) & in xcan_start_xmit() 411 id |= (((cf->can_id & CAN_EFF_MASK) >> in xcan_start_xmit() 420 if (cf->can_id & CAN_RTR_FLAG) in xcan_start_xmit() 425 id = ((cf->can_id & CAN_SFF_MASK) << XCAN_IDR_ID1_SHIFT) & in xcan_start_xmit() 428 if (cf->can_id & CAN_RTR_FLAG) in xcan_start_xmit() 433 dlc = cf->can_dlc << XCAN_DLCR_DLC_SHIFT; in xcan_start_xmit() 435 if (cf->can_dlc > 0) in xcan_start_xmit() 436 data[0] = be32_to_cpup((__be32 *)(cf->data + 0)); in xcan_start_xmit() [all …]
|
D | slcan.c | 145 struct can_frame cf; in slc_bump() local 150 cf.can_id = 0; in slc_bump() 154 cf.can_id = CAN_RTR_FLAG; in slc_bump() 158 cf.can_dlc = sl->rbuff[SLC_CMD_LEN + SLC_SFF_ID_LEN]; in slc_bump() 164 cf.can_id = CAN_RTR_FLAG; in slc_bump() 167 cf.can_id |= CAN_EFF_FLAG; in slc_bump() 169 cf.can_dlc = sl->rbuff[SLC_CMD_LEN + SLC_EFF_ID_LEN]; in slc_bump() 181 cf.can_id |= tmpid; in slc_bump() 184 if (cf.can_dlc >= '0' && cf.can_dlc < '9') in slc_bump() 185 cf.can_dlc -= '0'; in slc_bump() [all …]
|
D | janz-ican3.c | 807 struct can_frame *cf) in ican3_to_can_frame() argument 811 cf->can_id |= CAN_RTR_FLAG; in ican3_to_can_frame() 813 cf->can_id |= desc->data[0] << 3; in ican3_to_can_frame() 814 cf->can_id |= (desc->data[1] & 0xe0) >> 5; in ican3_to_can_frame() 815 cf->can_dlc = get_can_dlc(desc->data[1] & ICAN3_CAN_DLC_MASK); in ican3_to_can_frame() 816 memcpy(cf->data, &desc->data[2], cf->can_dlc); in ican3_to_can_frame() 818 cf->can_dlc = get_can_dlc(desc->data[0] & ICAN3_CAN_DLC_MASK); in ican3_to_can_frame() 820 cf->can_id |= CAN_RTR_FLAG; in ican3_to_can_frame() 823 cf->can_id |= CAN_EFF_FLAG; in ican3_to_can_frame() 824 cf->can_id |= desc->data[2] << 21; /* 28-21 */ in ican3_to_can_frame() [all …]
|
D | rcar_can.c | 222 struct can_frame *cf; in rcar_can_error() local 227 skb = alloc_can_err_skb(ndev, &cf); in rcar_can_error() 234 cf->can_id |= CAN_ERR_CRTL; in rcar_can_error() 235 cf->data[6] = txerr; in rcar_can_error() 236 cf->data[7] = rxerr; in rcar_can_error() 245 cf->can_id |= CAN_ERR_BUSERROR | CAN_ERR_PROT; in rcar_can_error() 246 cf->data[2] = CAN_ERR_PROT_UNSPEC; in rcar_can_error() 254 cf->data[3] |= CAN_ERR_PROT_LOC_ACK_DEL; in rcar_can_error() 261 cf->data[2] |= CAN_ERR_PROT_BIT0; in rcar_can_error() 268 cf->data[2] |= CAN_ERR_PROT_BIT1; in rcar_can_error() [all …]
|
D | at91_can.c | 478 struct can_frame *cf = (struct can_frame *)skb->data; in at91_start_xmit() local 494 reg_mid = at91_can_id_to_reg_mid(cf->can_id); in at91_start_xmit() 495 reg_mcr = ((cf->can_id & CAN_RTR_FLAG) ? AT91_MCR_MRTR : 0) | in at91_start_xmit() 496 (cf->can_dlc << 16) | AT91_MCR_MTCR; in at91_start_xmit() 503 at91_write(priv, AT91_MDL(mb), *(u32 *)(cf->data + 0)); in at91_start_xmit() 504 at91_write(priv, AT91_MDH(mb), *(u32 *)(cf->data + 4)); in at91_start_xmit() 509 stats->tx_bytes += cf->can_dlc; in at91_start_xmit() 568 struct can_frame *cf; in at91_rx_overflow_err() local 574 skb = alloc_can_err_skb(dev, &cf); in at91_rx_overflow_err() 578 cf->can_id |= CAN_ERR_CRTL; in at91_rx_overflow_err() [all …]
|
D | bfin_can.c | 345 struct can_frame *cf = (struct can_frame *)skb->data; in bfin_can_start_xmit() local 346 u8 dlc = cf->can_dlc; in bfin_can_start_xmit() 347 canid_t id = cf->can_id; in bfin_can_start_xmit() 348 u8 *data = cf->data; in bfin_can_start_xmit() 390 struct can_frame *cf; in bfin_can_rx() local 396 skb = alloc_can_skb(dev, &cf); in bfin_can_rx() 403 cf->can_id = ((readw(®->chl[RECEIVE_EXT_CHL].id1) in bfin_can_rx() 406 cf->can_id |= CAN_EFF_FLAG; in bfin_can_rx() 410 cf->can_id = (readw(®->chl[RECEIVE_STD_CHL].id1) in bfin_can_rx() 415 cf->can_id |= CAN_RTR_FLAG; in bfin_can_rx() [all …]
|
D | ti_hecc.c | 488 struct can_frame *cf = (struct can_frame *)skb->data; in ti_hecc_xmit() local 509 data = cf->can_dlc | (get_tx_head_prio(priv) << 8); in ti_hecc_xmit() 510 if (cf->can_id & CAN_RTR_FLAG) /* Remote transmission request */ in ti_hecc_xmit() 514 if (cf->can_id & CAN_EFF_FLAG) /* Extended frame format */ in ti_hecc_xmit() 515 data = (cf->can_id & CAN_EFF_MASK) | HECC_CANMID_IDE; in ti_hecc_xmit() 517 data = (cf->can_id & CAN_SFF_MASK) << 18; in ti_hecc_xmit() 520 be32_to_cpu(*(__be32 *)(cf->data))); in ti_hecc_xmit() 521 if (cf->can_dlc > 4) in ti_hecc_xmit() 523 be32_to_cpu(*(__be32 *)(cf->data + 4))); in ti_hecc_xmit() 525 *(u32 *)(cf->data + 4) = 0; in ti_hecc_xmit() [all …]
|
D | flexcan.c | 469 struct can_frame *cf = (struct can_frame *)skb->data; in flexcan_start_xmit() local 471 u32 ctrl = FLEXCAN_MB_CNT_CODE(0xc) | (cf->can_dlc << 16); in flexcan_start_xmit() 478 if (cf->can_id & CAN_EFF_FLAG) { in flexcan_start_xmit() 479 can_id = cf->can_id & CAN_EFF_MASK; in flexcan_start_xmit() 482 can_id = (cf->can_id & CAN_SFF_MASK) << 18; in flexcan_start_xmit() 485 if (cf->can_id & CAN_RTR_FLAG) in flexcan_start_xmit() 488 if (cf->can_dlc > 0) { in flexcan_start_xmit() 489 u32 data = be32_to_cpup((__be32 *)&cf->data[0]); in flexcan_start_xmit() 492 if (cf->can_dlc > 3) { in flexcan_start_xmit() 493 u32 data = be32_to_cpup((__be32 *)&cf->data[4]); in flexcan_start_xmit() [all …]
|
D | pch_can.c | 494 struct can_frame *cf; in pch_can_error() local 499 skb = alloc_can_err_skb(ndev, &cf); in pch_can_error() 507 cf->can_id |= CAN_ERR_BUSOFF; in pch_can_error() 517 cf->can_id |= CAN_ERR_CRTL; in pch_can_error() 519 cf->data[1] |= CAN_ERR_CRTL_RX_WARNING; in pch_can_error() 521 cf->data[1] |= CAN_ERR_CRTL_TX_WARNING; in pch_can_error() 529 cf->can_id |= CAN_ERR_CRTL; in pch_can_error() 531 cf->data[1] |= CAN_ERR_CRTL_RX_PASSIVE; in pch_can_error() 533 cf->data[1] |= CAN_ERR_CRTL_TX_PASSIVE; in pch_can_error() 541 cf->data[2] |= CAN_ERR_PROT_STUFF; in pch_can_error() [all …]
|
D | grcan.c | 582 struct can_frame cf; in grcan_err() local 585 memset(&cf, 0, sizeof(cf)); in grcan_err() 646 cf.can_id |= CAN_ERR_BUSOFF; in grcan_err() 653 cf.can_id |= CAN_ERR_CRTL; in grcan_err() 655 cf.data[1] |= CAN_ERR_CRTL_TX_PASSIVE; in grcan_err() 657 cf.data[1] |= CAN_ERR_CRTL_RX_PASSIVE; in grcan_err() 664 cf.can_id |= CAN_ERR_CRTL; in grcan_err() 666 cf.data[1] |= CAN_ERR_CRTL_TX_WARNING; in grcan_err() 668 cf.data[1] |= CAN_ERR_CRTL_RX_WARNING; in grcan_err() 673 cf.can_id |= CAN_ERR_CRTL; in grcan_err() [all …]
|
D | dev.c | 327 void can_change_state(struct net_device *dev, struct can_frame *cf, in can_change_state() argument 344 cf->can_id |= CAN_ERR_BUSOFF; in can_change_state() 348 cf->can_id |= CAN_ERR_CRTL; in can_change_state() 349 cf->data[1] |= tx_state >= rx_state ? in can_change_state() 351 cf->data[1] |= tx_state <= rx_state ? in can_change_state() 440 struct can_frame *cf = (struct can_frame *)skb->data; in can_get_echo_skb() local 441 u8 dlc = cf->can_dlc; in can_get_echo_skb() 480 struct can_frame *cf; in can_restart() local 492 skb = alloc_can_err_skb(dev, &cf); in can_restart() 497 cf->can_id |= CAN_ERR_RESTARTED; in can_restart() [all …]
|
/linux-4.1.27/tools/testing/selftests/rcutorture/bin/ |
D | configNR_CPUS.sh | 28 cf=$1 29 if test ! -r $cf 31 echo Unreadable config fragment $cf 1>&2 34 if grep -q '^CONFIG_SMP=n$' $cf 39 if grep -q '^CONFIG_NR_CPUS=' $cf 41 grep '^CONFIG_NR_CPUS=' $cf |
|
/linux-4.1.27/lib/ |
D | decompress.c | 60 const struct compress_format *cf; in decompress_method() local 67 for (cf = compressed_formats; cf->name; cf++) { in decompress_method() 68 if (!memcmp(inbuf, cf->magic, 2)) in decompress_method() 73 *name = cf->name; in decompress_method() 74 return cf->decompressor; in decompress_method()
|
/linux-4.1.27/drivers/net/can/usb/ |
D | usb_8dev.c | 349 struct can_frame *cf; in usb_8dev_rx_err_msg() local 367 skb = alloc_can_err_skb(priv->netdev, &cf); in usb_8dev_rx_err_msg() 374 cf->can_id |= CAN_ERR_PROT; in usb_8dev_rx_err_msg() 375 cf->data[2] = CAN_ERR_PROT_ACTIVE; in usb_8dev_rx_err_msg() 379 cf->can_id |= CAN_ERR_BUSOFF; in usb_8dev_rx_err_msg() 386 cf->can_id |= CAN_ERR_CRTL; in usb_8dev_rx_err_msg() 390 cf->can_id |= CAN_ERR_PROT | CAN_ERR_BUSERROR; in usb_8dev_rx_err_msg() 400 cf->can_id |= CAN_ERR_ACK; in usb_8dev_rx_err_msg() 404 cf->data[2] |= CAN_ERR_PROT_UNSPEC; in usb_8dev_rx_err_msg() 405 cf->data[3] |= CAN_ERR_PROT_LOC_CRC_SEQ | in usb_8dev_rx_err_msg() [all …]
|
D | ems_usb.c | 311 struct can_frame *cf; in ems_usb_rx_can_msg() local 316 skb = alloc_can_skb(dev->netdev, &cf); in ems_usb_rx_can_msg() 320 cf->can_id = le32_to_cpu(msg->msg.can_msg.id); in ems_usb_rx_can_msg() 321 cf->can_dlc = get_can_dlc(msg->msg.can_msg.length & 0xF); in ems_usb_rx_can_msg() 325 cf->can_id |= CAN_EFF_FLAG; in ems_usb_rx_can_msg() 329 cf->can_id |= CAN_RTR_FLAG; in ems_usb_rx_can_msg() 331 for (i = 0; i < cf->can_dlc; i++) in ems_usb_rx_can_msg() 332 cf->data[i] = msg->msg.can_msg.msg[i]; in ems_usb_rx_can_msg() 338 stats->rx_bytes += cf->can_dlc; in ems_usb_rx_can_msg() 343 struct can_frame *cf; in ems_usb_rx_err() local [all …]
|
D | kvaser_usb.c | 706 struct can_frame *cf; in kvaser_usb_tx_acknowledge() local 731 skb = alloc_can_err_skb(priv->netdev, &cf); in kvaser_usb_tx_acknowledge() 733 cf->can_id |= CAN_ERR_RESTARTED; in kvaser_usb_tx_acknowledge() 736 stats->rx_bytes += cf->can_dlc; in kvaser_usb_tx_acknowledge() 822 struct can_frame *cf) in kvaser_usb_rx_error_update_can_state() argument 855 can_change_state(priv->netdev, cf, tx_state, rx_state); in kvaser_usb_rx_error_update_can_state() 889 struct can_frame *cf, tmp_cf = { .can_id = CAN_ERR_FLAG, .can_dlc = CAN_ERR_DLC }; in kvaser_usb_rx_error() local 918 skb = alloc_can_err_skb(priv->netdev, &cf); in kvaser_usb_rx_error() 923 memcpy(cf, &tmp_cf, sizeof(*cf)); in kvaser_usb_rx_error() 936 cf->can_id |= CAN_ERR_RESTARTED; in kvaser_usb_rx_error() [all …]
|
D | gs_usb.c | 252 static void gs_update_state(struct gs_can *dev, struct can_frame *cf) in gs_update_state() argument 256 if (cf->can_id & CAN_ERR_RESTARTED) { in gs_update_state() 259 } else if (cf->can_id & CAN_ERR_BUSOFF) { in gs_update_state() 262 } else if (cf->can_id & CAN_ERR_CRTL) { in gs_update_state() 263 if ((cf->data[1] & CAN_ERR_CRTL_TX_WARNING) || in gs_update_state() 264 (cf->data[1] & CAN_ERR_CRTL_RX_WARNING)) { in gs_update_state() 267 } else if ((cf->data[1] & CAN_ERR_CRTL_TX_PASSIVE) || in gs_update_state() 268 (cf->data[1] & CAN_ERR_CRTL_RX_PASSIVE)) { in gs_update_state() 286 struct can_frame *cf; in gs_usb_recieve_bulk_callback() local 315 skb = alloc_can_skb(dev->netdev, &cf); in gs_usb_recieve_bulk_callback() [all …]
|
D | esd_usb2.c | 230 struct can_frame *cf; in esd_usb2_rx_event() local 240 skb = alloc_can_err_skb(priv->netdev, &cf); in esd_usb2_rx_event() 252 cf->can_id |= CAN_ERR_BUSOFF; in esd_usb2_rx_event() 272 cf->can_id |= CAN_ERR_PROT | CAN_ERR_BUSERROR; in esd_usb2_rx_event() 276 cf->data[2] |= CAN_ERR_PROT_BIT; in esd_usb2_rx_event() 279 cf->data[2] |= CAN_ERR_PROT_FORM; in esd_usb2_rx_event() 282 cf->data[2] |= CAN_ERR_PROT_STUFF; in esd_usb2_rx_event() 285 cf->data[2] |= CAN_ERR_PROT_UNSPEC; in esd_usb2_rx_event() 286 cf->data[3] = ecc & SJA1000_ECC_SEG; in esd_usb2_rx_event() 292 cf->data[2] |= CAN_ERR_PROT_TX; in esd_usb2_rx_event() [all …]
|
/linux-4.1.27/drivers/net/can/cc770/ |
D | cc770.c | 397 struct can_frame *cf = (struct can_frame *)skb->data; in cc770_start_xmit() local 414 dlc = cf->can_dlc; in cc770_start_xmit() 415 id = cf->can_id; in cc770_start_xmit() 416 if (cf->can_id & CAN_RTR_FLAG) in cc770_start_xmit() 440 cc770_write_reg(priv, msgobj[mo].data[i], cf->data[i]); in cc770_start_xmit() 466 struct can_frame *cf; in cc770_rx() local 472 skb = alloc_can_skb(dev, &cf); in cc770_rx() 484 cf->can_id = CAN_RTR_FLAG; in cc770_rx() 486 cf->can_id |= CAN_EFF_FLAG; in cc770_rx() 487 cf->can_dlc = 0; in cc770_rx() [all …]
|
/linux-4.1.27/drivers/net/can/usb/peak_usb/ |
D | pcan_usb.c | 407 struct can_frame *cf; in pcan_usb_decode_error() local 484 skb = alloc_can_err_skb(mc->netdev, &cf); in pcan_usb_decode_error() 490 cf->can_id |= CAN_ERR_BUSOFF; in pcan_usb_decode_error() 496 cf->can_id |= CAN_ERR_CRTL; in pcan_usb_decode_error() 497 cf->data[1] |= CAN_ERR_CRTL_TX_PASSIVE | in pcan_usb_decode_error() 503 cf->can_id |= CAN_ERR_CRTL; in pcan_usb_decode_error() 504 cf->data[1] |= CAN_ERR_CRTL_TX_WARNING | in pcan_usb_decode_error() 511 cf->can_id |= CAN_ERR_CRTL; in pcan_usb_decode_error() 512 cf->data[1] |= CAN_ERR_CRTL_RX_OVERFLOW; in pcan_usb_decode_error() 531 mc->netdev->stats.rx_bytes += cf->can_dlc; in pcan_usb_decode_error() [all …]
|
D | pcan_usb_pro.c | 773 struct can_frame *cf = (struct can_frame *)skb->data; in pcan_usb_pro_encode_msg() local 779 if ((cf->can_id & CAN_RTR_FLAG) || (cf->can_dlc == 0)) in pcan_usb_pro_encode_msg() 781 else if (cf->can_dlc <= 4) in pcan_usb_pro_encode_msg() 786 len = (dev->ctrl_idx << 4) | (cf->can_dlc & 0x0f); in pcan_usb_pro_encode_msg() 789 if (cf->can_id & CAN_EFF_FLAG) in pcan_usb_pro_encode_msg() 791 if (cf->can_id & CAN_RTR_FLAG) in pcan_usb_pro_encode_msg() 794 pcan_msg_add_rec(&usb_msg, data_type, 0, flags, len, cf->can_id, in pcan_usb_pro_encode_msg() 795 cf->data); in pcan_usb_pro_encode_msg()
|
D | pcan_usb_fd.c | 535 struct can_frame *cf; in pcan_usb_fd_decode_status() local 565 skb = alloc_can_err_skb(netdev, &cf); in pcan_usb_fd_decode_status() 567 can_change_state(netdev, cf, tx_state, rx_state); in pcan_usb_fd_decode_status() 580 netdev->stats.rx_bytes += cf->can_dlc; in pcan_usb_fd_decode_status() 608 struct can_frame *cf; in pcan_usb_fd_decode_overrun() local 612 skb = alloc_can_err_skb(netdev, &cf); in pcan_usb_fd_decode_overrun() 616 cf->can_id |= CAN_ERR_CRTL; in pcan_usb_fd_decode_overrun() 617 cf->data[1] |= CAN_ERR_CRTL_RX_OVERFLOW; in pcan_usb_fd_decode_overrun()
|
/linux-4.1.27/drivers/net/can/sja1000/ |
D | sja1000.c | 285 struct can_frame *cf = (struct can_frame *)skb->data; in sja1000_start_xmit() local 298 fi = dlc = cf->can_dlc; in sja1000_start_xmit() 299 id = cf->can_id; in sja1000_start_xmit() 320 priv->write_reg(priv, dreg++, cf->data[i]); in sja1000_start_xmit() 341 struct can_frame *cf; in sja1000_rx() local 349 skb = alloc_can_skb(dev, &cf); in sja1000_rx() 370 cf->can_dlc = get_can_dlc(fi & 0x0F); in sja1000_rx() 374 for (i = 0; i < cf->can_dlc; i++) in sja1000_rx() 375 cf->data[i] = priv->read_reg(priv, dreg++); in sja1000_rx() 378 cf->can_id = id; in sja1000_rx() [all …]
|
/linux-4.1.27/drivers/dma/ |
D | fsl_raid.c | 248 static void fill_cfd_frame(struct fsl_re_cmpnd_frame *cf, u8 index, in fill_cfd_frame() argument 254 cf[index].efrl32 = efrl; in fill_cfd_frame() 255 cf[index].addr_high = upper_32_bits(addr); in fill_cfd_frame() 256 cf[index].addr_low = lower_32_bits(addr); in fill_cfd_frame() 261 void *cf, dma_addr_t paddr) in fsl_re_init_desc() argument 271 desc->cf_addr = cf; in fsl_re_init_desc() 274 desc->cdb_addr = (void *)(cf + FSL_RE_CF_DESC_SIZE); in fsl_re_init_desc() 284 void *cf; in fsl_re_chan_alloc_desc() local 306 cf = dma_pool_alloc(re_chan->re_dev->cf_desc_pool, GFP_NOWAIT, in fsl_re_chan_alloc_desc() 308 if (!cf) { in fsl_re_chan_alloc_desc() [all …]
|
/linux-4.1.27/Documentation/devicetree/bindings/powerpc/fsl/ |
D | ccf.txt | 11 fsl,corenet1-cf - CoreNet coherency fabric version 1. 14 fsl,corenet2-cf - CoreNet coherency fabric version 2. 17 fsl,corenet-cf - Used to represent the common registers 22 "fsl,corenet1-cf" or "fsl,corenet2-cf". 40 corenet-cf@18000 { 41 compatible = "fsl,corenet2-cf", "fsl,corenet-cf";
|
/linux-4.1.27/drivers/net/can/m_can/ |
D | m_can.c | 364 struct canfd_frame *cf; in m_can_read_fifo() local 373 skb = alloc_canfd_skb(dev, &cf); in m_can_read_fifo() 375 skb = alloc_can_skb(dev, (struct can_frame **)&cf); in m_can_read_fifo() 382 cf->len = can_dlc2len((dlc >> 16) & 0x0F); in m_can_read_fifo() 384 cf->len = get_can_dlc((dlc >> 16) & 0x0F); in m_can_read_fifo() 388 cf->can_id = (id & CAN_EFF_MASK) | CAN_EFF_FLAG; in m_can_read_fifo() 390 cf->can_id = (id >> 18) & CAN_SFF_MASK; in m_can_read_fifo() 393 cf->flags |= CANFD_ESI; in m_can_read_fifo() 398 cf->can_id |= CAN_RTR_FLAG; in m_can_read_fifo() 401 cf->flags |= CANFD_BRS; in m_can_read_fifo() [all …]
|
/linux-4.1.27/drivers/misc/ |
D | apds990x.c | 138 struct apds990x_chip_factors cf; member 293 APDS_PARAM_SCALE * 64) / (chip->cf.ga * chip->cf.df); in apds990x_lux_to_threshold() 455 iac1 = (chip->cf.cf1 * clear - chip->cf.irf1 * ir) / APDS_PARAM_SCALE; in apds990x_get_lux() 456 iac2 = (chip->cf.cf2 * clear - chip->cf.irf2 * ir) / APDS_PARAM_SCALE; in apds990x_get_lux() 461 lpc = APDS990X_LUX_OUTPUT_SCALE * (chip->cf.df * chip->cf.ga) / in apds990x_get_lux() 1081 if (chip->pdata->cf.ga == 0) { in apds990x_probe() 1083 chip->cf.ga = 1966; /* 0.48 * APDS_PARAM_SCALE */ in apds990x_probe() 1084 chip->cf.cf1 = 4096; /* 1.00 * APDS_PARAM_SCALE */ in apds990x_probe() 1085 chip->cf.irf1 = 9134; /* 2.23 * APDS_PARAM_SCALE */ in apds990x_probe() 1086 chip->cf.cf2 = 2867; /* 0.70 * APDS_PARAM_SCALE */ in apds990x_probe() [all …]
|
/linux-4.1.27/drivers/net/can/c_can/ |
D | c_can.c | 860 struct can_frame *cf; in c_can_handle_state_change() local 885 skb = alloc_can_err_skb(dev, &cf); in c_can_handle_state_change() 897 cf->can_id |= CAN_ERR_CRTL; in c_can_handle_state_change() 898 cf->data[1] = (bec.txerr > bec.rxerr) ? in c_can_handle_state_change() 901 cf->data[6] = bec.txerr; in c_can_handle_state_change() 902 cf->data[7] = bec.rxerr; in c_can_handle_state_change() 907 cf->can_id |= CAN_ERR_CRTL; in c_can_handle_state_change() 909 cf->data[1] |= CAN_ERR_CRTL_RX_PASSIVE; in c_can_handle_state_change() 911 cf->data[1] |= CAN_ERR_CRTL_TX_PASSIVE; in c_can_handle_state_change() 913 cf->data[6] = bec.txerr; in c_can_handle_state_change() [all …]
|
/linux-4.1.27/fs/reiserfs/ |
D | ibalance.c | 32 int *d_key, struct buffer_head **cf) in internal_define_dest_src_infos() argument 50 *cf = tb->CFL[h]; in internal_define_dest_src_infos() 63 *cf = tb->CFL[h]; in internal_define_dest_src_infos() 77 *cf = tb->CFR[h]; in internal_define_dest_src_infos() 90 *cf = tb->CFR[h]; in internal_define_dest_src_infos() 497 struct buffer_head *cf; in internal_shift_left() local 501 &d_key_position, &cf); in internal_shift_left() 510 internal_insert_key(&dest_bi, B_NR_ITEMS(dest_bi.bi_bh), cf, in internal_shift_left() 515 replace_key(tb, cf, d_key_position, in internal_shift_left() 519 replace_key(tb, cf, d_key_position, src_bi.bi_bh, in internal_shift_left() [all …]
|
/linux-4.1.27/Documentation/devicetree/bindings/ata/ |
D | pata-arasan.txt | 4 - compatible: "arasan,cf-spear1340" 32 cf@fc000000 { 33 compatible = "arasan,cf-spear1340";
|
D | atmel-at91_cf.txt | 4 - compatible : "atmel,at91rm9200-cf". 12 compatible = "atmel,at91rm9200-cf";
|
/linux-4.1.27/drivers/net/can/softing/ |
D | softing_main.c | 70 struct can_frame *cf = (struct can_frame *)skb->data; in softing_netdev_start_xmit() local 91 if (cf->can_id & CAN_RTR_FLAG) in softing_netdev_start_xmit() 93 if (cf->can_id & CAN_EFF_FLAG) in softing_netdev_start_xmit() 98 *ptr++ = cf->can_dlc; in softing_netdev_start_xmit() 99 *ptr++ = (cf->can_id >> 0); in softing_netdev_start_xmit() 100 *ptr++ = (cf->can_id >> 8); in softing_netdev_start_xmit() 101 if (cf->can_id & CAN_EFF_FLAG) { in softing_netdev_start_xmit() 102 *ptr++ = (cf->can_id >> 16); in softing_netdev_start_xmit() 103 *ptr++ = (cf->can_id >> 24); in softing_netdev_start_xmit() 108 if (!(cf->can_id & CAN_RTR_FLAG)) in softing_netdev_start_xmit() [all …]
|
/linux-4.1.27/include/linux/can/ |
D | dev.h | 150 void can_change_state(struct net_device *dev, struct can_frame *cf, 158 struct sk_buff *alloc_can_skb(struct net_device *dev, struct can_frame **cf); 162 struct can_frame **cf);
|
D | skb.h | 36 struct can_frame cf[0]; member
|
/linux-4.1.27/fs/ceph/ |
D | file.c | 70 struct ceph_file_info *cf; in ceph_init_file() local 92 cf = kmem_cache_alloc(ceph_file_cachep, GFP_NOFS | __GFP_ZERO); in ceph_init_file() 93 if (cf == NULL) { in ceph_init_file() 97 cf->fmode = fmode; in ceph_init_file() 98 cf->next_offset = 2; in ceph_init_file() 99 file->private_data = cf; in ceph_init_file() 137 struct ceph_file_info *cf = file->private_data; in ceph_open() local 142 if (cf) { in ceph_open() 319 struct ceph_file_info *cf = file->private_data; in ceph_release() local 322 ceph_put_fmode(ci, cf->fmode); in ceph_release() [all …]
|
D | dir.c | 1182 struct ceph_file_info *cf = file->private_data; in ceph_read_dir() local 1191 if (!cf->dir_info) { in ceph_read_dir() 1192 cf->dir_info = kmalloc(bufsize, GFP_NOFS); in ceph_read_dir() 1193 if (!cf->dir_info) in ceph_read_dir() 1195 cf->dir_info_len = in ceph_read_dir() 1196 snprintf(cf->dir_info, bufsize, in ceph_read_dir() 1216 if (*ppos >= cf->dir_info_len) in ceph_read_dir() 1218 size = min_t(unsigned, size, cf->dir_info_len-*ppos); in ceph_read_dir() 1219 left = copy_to_user(buf, cf->dir_info + *ppos, size); in ceph_read_dir()
|
/linux-4.1.27/arch/arm/mach-s3c24xx/ |
D | mach-osiris-dvs.c | 58 struct cpufreq_freqs *cf = data; in osiris_dvs_notify() local 59 struct s3c_cpufreq_freqs *freqs = to_s3c_cpufreq(cf); in osiris_dvs_notify()
|
/linux-4.1.27/arch/mips/cavium-octeon/ |
D | octeon-platform.c | 782 int cf = fdt_path_offset(initial_boot_params, alias_prop); in octeon_prune_device_tree() local 828 fdt_nop_property(initial_boot_params, cf, "cavium,true-ide"); in octeon_prune_device_tree() 829 fdt_nop_property(initial_boot_params, cf, "cavium,dma-engine-handle"); in octeon_prune_device_tree() 832 fdt_setprop_inplace(initial_boot_params, cf, in octeon_prune_device_tree() 842 fdt_setprop_inplace(initial_boot_params, cf, in octeon_prune_device_tree() 845 bootbus = fdt_parent_offset(initial_boot_params, cf); in octeon_prune_device_tree() 863 fdt_nop_node(initial_boot_params, cf); in octeon_prune_device_tree()
|
/linux-4.1.27/include/linux/i2c/ |
D | apds990x.h | 72 struct apds990x_chip_factors cf; member
|
/linux-4.1.27/net/sched/ |
D | em_canid.c | 51 struct can_frame *cf = (struct can_frame *)skb->data; in em_canid_get_id() local 53 return cf->can_id; in em_canid_get_id()
|
/linux-4.1.27/fs/cifs/ |
D | readdir.c | 46 struct cifsFileInfo *cf; in dump_cifs_file_struct() local 49 cf = file->private_data; in dump_cifs_file_struct() 50 if (cf == NULL) { in dump_cifs_file_struct() 54 if (cf->invalidHandle) in dump_cifs_file_struct() 56 if (cf->srch_inf.endOfSearch) in dump_cifs_file_struct() 58 if (cf->srch_inf.emptyDir) in dump_cifs_file_struct()
|
/linux-4.1.27/drivers/memory/ |
D | Makefile | 12 obj-$(CONFIG_FSL_CORENET_CF) += fsl-corenet-cf.o
|
/linux-4.1.27/arch/powerpc/crypto/ |
D | aes-tab-4k.S | 85 .long R(b0, 58, 58, e8), R(85, cf, cf, 4a) 90 .long R(8a, 45, 45, cf), R(e9, f9, f9, 10) 131 .long R(f3, f4, f4, 07), R(cf, ea, ea, 25) 201 .long R(8a, cf, 1c, 2b), R(a7, 79, b4, 92) 251 .long R(a6, f5, 81, cf), R(a5, 7a, de, 28) 258 .long R(6f, d5, 2d, a9), R(cf, 25, 12, b3) 264 .long R(21, bc, cf, 08), R(ef, 15, e8, e6)
|
/linux-4.1.27/include/uapi/linux/can/ |
D | gw.h | 102 struct can_frame cf; member
|
/linux-4.1.27/Documentation/networking/ |
D | cxacru.txt | 7 Note: support for cxacru-cf.bin has been removed. It was not loaded correctly 11 There is a script cxacru-cf.py to convert an existing file to the sysfs form.
|
D | 00-INDEX | 53 cxacru-cf.py
|
D | udplite.txt | 148 illegal (cf. RFC 3828, sec. 3.1) and will be silently discarded.
|
/linux-4.1.27/drivers/usb/core/ |
D | config.c | 646 struct usb_host_config *cf = &dev->config[c]; in usb_destroy_configuration() local 648 kfree(cf->string); in usb_destroy_configuration() 649 for (i = 0; i < cf->desc.bNumInterfaces; i++) { in usb_destroy_configuration() 650 if (cf->intf_cache[i]) in usb_destroy_configuration() 651 kref_put(&cf->intf_cache[i]->ref, in usb_destroy_configuration()
|
/linux-4.1.27/arch/mips/lasat/image/ |
D | Makefile | 46 gzip -cf -9 $< > $@
|
/linux-4.1.27/Documentation/devicetree/bindings/sound/ |
D | atmel-sam9x5-wm8731-audio.txt | 19 cf Documentation/devicetree/bindings/sound/wm8731.txt
|
/linux-4.1.27/scripts/package/ |
D | buildtar | 132 tar cf - -C "$tmpdir" boot/ lib/ $opts | ${compress} > "${tarball}${file_ext}"
|
/linux-4.1.27/arch/powerpc/boot/dts/fsl/ |
D | b4si-post.dtsi | 242 corenet-cf@18000 { 243 compatible = "fsl,corenet2-cf", "fsl,corenet-cf";
|
D | p3041si-post.dtsi | 282 corenet-cf@18000 { 283 compatible = "fsl,corenet1-cf", "fsl,corenet-cf";
|
D | p5020si-post.dtsi | 287 corenet-cf@18000 { 288 compatible = "fsl,corenet1-cf", "fsl,corenet-cf";
|
D | p5040si-post.dtsi | 242 corenet-cf@18000 { 243 compatible = "fsl,corenet1-cf", "fsl,corenet-cf";
|
D | p2041si-post.dtsi | 255 corenet-cf@18000 { 256 compatible = "fsl,corenet1-cf", "fsl,corenet-cf";
|
D | t1040si-post.dtsi | 313 corenet-cf@18000 { 314 compatible = "fsl,corenet2-cf", "fsl,corenet-cf";
|
D | t2081si-post.dtsi | 363 corenet-cf@18000 { 364 compatible = "fsl,corenet2-cf", "fsl,corenet-cf";
|
D | p4080si-post.dtsi | 290 corenet-cf@18000 { 291 compatible = "fsl,corenet1-cf", "fsl,corenet-cf";
|
D | t4240si-post.dtsi | 607 corenet-cf@18000 { 608 compatible = "fsl,corenet2-cf", "fsl,corenet-cf";
|
/linux-4.1.27/Documentation/devicetree/bindings/pinctrl/ |
D | pinctrl_spear.txt | 147 "gpt0", "gpt1", "sdhci", "cf", "xd", "touchscreen", "uart1", "uart2_3", 154 "uart1", "i2s", "gmac", "i2c0", "i2c1", "cec0", "cec1", "sdhci", "cf",
|
/linux-4.1.27/arch/parisc/ |
D | Makefile | 125 @gzip -cf -9 $< > $@
|
/linux-4.1.27/arch/arm/boot/dts/ |
D | spear13xx.dtsi | 98 cf@b2800000 { 99 compatible = "arasan,cf-spear1340";
|
D | spear1310-evb.dts | 113 cf@b2800000 {
|
D | vexpress-v2m-rs1.dtsi | 240 compatible = "arm,vexpress-cf", "ata-generic";
|
D | vexpress-v2m.dtsi | 239 compatible = "arm,vexpress-cf", "ata-generic";
|
/linux-4.1.27/Documentation/fmc/ |
D | parameters.txt | 30 [ 6626.167069] 0010: 45 52 4e cf 46 6d 63 44 65 6c 61 79 31 6e 73 34
|
/linux-4.1.27/drivers/net/ethernet/broadcom/genet/ |
D | bcmgenet.h | 96 u32 cf; /* RO # of Received control frame pkt*/ member 119 u32 cf; /* RO # of xmited control frame count */ member
|
D | bcmgenet.c | 583 STAT_GENET_MIB_RX("rx_control", mib.rx.cf), 612 STAT_GENET_MIB_TX("tx_control", mib.tx.cf),
|
/linux-4.1.27/drivers/net/ethernet/broadcom/ |
D | bcmsysport.h | 509 u32 cf; /* RO # of Received control frame pkt*/ member 532 u32 cf; /* RO # of xmited control frame count */ member
|
D | bcmsysport.c | 221 STAT_MIB_RX("rx_control", mib.rx.cf), 250 STAT_MIB_TX("tx_control", mib.tx.cf),
|
/linux-4.1.27/drivers/scsi/csiostor/ |
D | csio_hw.c | 1578 const struct firmware *cf; in csio_hw_flash_config() local 1585 if (request_firmware(&cf, FW_CFG_NAME_T5, dev) < 0) { in csio_hw_flash_config() 1591 if (cf->size%4 != 0) in csio_hw_flash_config() 1592 value_to_add = 4 - (cf->size % 4); in csio_hw_flash_config() 1594 cfg_data = kzalloc(cf->size+value_to_add, GFP_KERNEL); in csio_hw_flash_config() 1600 memcpy((void *)cfg_data, (const void *)cf->data, cf->size); in csio_hw_flash_config() 1610 cf->size + value_to_add, cfg_data); in csio_hw_flash_config() 1617 size_t size = cf->size & ~0x3; in csio_hw_flash_config() 1633 release_firmware(cf); in csio_hw_flash_config()
|
/linux-4.1.27/drivers/net/wireless/libertas/ |
D | cfg.c | 390 struct mrvl_ie_cf_param_set *cf = (void *)tlv; in lbs_add_cf_param_tlv() local 400 cf->header.type = cpu_to_le16(TLV_TYPE_CF); in lbs_add_cf_param_tlv() 401 cf->header.len = cpu_to_le16(sizeof(*cf)-sizeof(cf->header)); in lbs_add_cf_param_tlv() 402 return sizeof(*cf); in lbs_add_cf_param_tlv()
|
D | types.h | 33 struct ieee_ie_cf_param_set cf; member
|
/linux-4.1.27/drivers/scsi/ |
D | eata.c | 1233 struct eata_config *cf; in port_detect() local 1236 cf = pci_zalloc_consistent(pdev, sizeof(struct eata_config), in port_detect() 1239 if (!cf) { in port_detect() 1247 cf->len = (ushort) H2DEV16((ushort) 510); in port_detect() 1248 cf->ocena = 1; in port_detect() 1255 cf, cf_dma_addr); in port_detect()
|
/linux-4.1.27/drivers/md/ |
D | dm-cache-target.c | 2134 static void init_features(struct cache_features *cf) in init_features() argument 2136 cf->mode = CM_WRITE; in init_features() 2137 cf->io_mode = CM_IO_WRITEBACK; in init_features() 2150 struct cache_features *cf = &ca->features; in parse_features() local 2152 init_features(cf); in parse_features() 2162 cf->io_mode = CM_IO_WRITEBACK; in parse_features() 2165 cf->io_mode = CM_IO_WRITETHROUGH; in parse_features() 2168 cf->io_mode = CM_IO_PASSTHROUGH; in parse_features()
|
/linux-4.1.27/drivers/net/fddi/skfp/h/ |
D | smc.h | 446 struct s_cfm cf ; /* cfm/cem */ member
|
/linux-4.1.27/Documentation/misc-devices/ |
D | lis3lv02d | 79 If your laptop model is not recognized (cf "dmesg"), you can send an
|
/linux-4.1.27/Documentation/scsi/ |
D | aacraid.txt | 54 9005:0285:9005:02cf Adaptec 51645 (Voodoo164)
|
/linux-4.1.27/drivers/tty/vt/ |
D | cp437.uni | 92 0x49 U+0049 U+00cc U+00cd U+00ce U+00cf
|
/linux-4.1.27/drivers/block/ |
D | floppy.c | 3837 int cf; in floppy_revalidate() local 3849 cf = (test_bit(FD_DISK_CHANGED_BIT, &UDRS->flags) || in floppy_revalidate() 3851 if (!(cf || test_bit(drive, &fake_change) || drive_no_geom(drive))) { in floppy_revalidate() 3861 if (cf) in floppy_revalidate() 3867 if (cf) in floppy_revalidate()
|
/linux-4.1.27/drivers/net/ethernet/chelsio/cxgb4/ |
D | cxgb4_main.c | 3283 const struct firmware *cf; in adap_init0_config() local 3320 ret = request_firmware(&cf, fw_config_file, adapter->pdev_dev); in adap_init0_config() 3332 if (cf->size >= FLASH_CFG_MAX_SIZE) in adap_init0_config() 3350 size_t resid = cf->size & 0x3; in adap_init0_config() 3351 size_t size = cf->size & ~0x3; in adap_init0_config() 3352 __be32 *data = (__be32 *)cf->data; in adap_init0_config() 3379 release_firmware(cf); in adap_init0_config()
|
/linux-4.1.27/drivers/block/drbd/ |
D | drbd_main.c | 783 int size, cf; in __drbd_send_protocol() local 809 cf = 0; in __drbd_send_protocol() 811 cf |= CF_DISCARD_MY_DATA; in __drbd_send_protocol() 813 cf |= CF_DRY_RUN; in __drbd_send_protocol() 814 p->conn_flags = cpu_to_be32(cf); in __drbd_send_protocol()
|
D | drbd_receiver.c | 3294 int p_proto, p_discard_my_data, p_two_primaries, cf; in receive_protocol() local 3305 cf = be32_to_cpu(p->conn_flags); in receive_protocol() 3306 p_discard_my_data = cf & CF_DISCARD_MY_DATA; in receive_protocol() 3322 if (cf & CF_DRY_RUN) in receive_protocol()
|
/linux-4.1.27/arch/x86/kvm/ |
D | emulate.c | 2973 bool af, cf, old_cf; in em_das() local 2975 cf = ctxt->eflags & X86_EFLAGS_CF; in em_das() 2979 old_cf = cf; in em_das() 2980 cf = false; in em_das() 2984 cf = old_cf | (al >= 250); in em_das() 2991 cf = true; in em_das() 3001 if (cf) in em_das()
|
/linux-4.1.27/Documentation/x86/ |
D | exception-tables.txt | 191 > c017e793 <do_con_write+cf> je c017e79f <do_con_write+db>
|
/linux-4.1.27/scripts/ |
D | analyze_suspend.py | 903 cf = 'dpm_run_callback' 905 cf = '-e dpm_prepare -e dpm_complete -e dpm_run_callback' 925 cf+' > '+tp+'set_graph_function')
|
/linux-4.1.27/arch/x86/lib/ |
D | x86-opcode-map.txt | 257 cf: IRET/D/Q 550 cf: BSWAP RDI/EDI/R15/R15D
|
/linux-4.1.27/Documentation/vm/ |
D | cleancache.txt | 232 hooks to do the equivalent (cf. btrfs)
|
/linux-4.1.27/drivers/pinctrl/sh-pfc/ |
D | pfc-emev2.c | 1392 SH_PFC_FUNCTION(cf),
|
/linux-4.1.27/Documentation/virtual/kvm/ |
D | api.txt | 178 The KVM_RUN ioctl (cf.) communicates with userspace via a shared
|