Home
last modified time | relevance | path

Searched refs:fcb (Results 1 – 6 of 6) sorted by relevance

/linux-4.1.27/drivers/usb/storage/
Dfreecom.c223 struct freecom_cb_wrap *fcb; in freecom_transport() local
230 fcb = (struct freecom_cb_wrap *) us->iobuf; in freecom_transport()
240 fcb->Type = FCM_PACKET_ATAPI | 0x00; in freecom_transport()
241 fcb->Timeout = 0; in freecom_transport()
242 memcpy (fcb->Atapi, srb->cmnd, 12); in freecom_transport()
243 memset (fcb->Filler, 0, sizeof (fcb->Filler)); in freecom_transport()
248 result = usb_stor_bulk_transfer_buf (us, opipe, fcb, in freecom_transport()
282 fcb->Type = FCM_PACKET_STATUS; in freecom_transport()
283 fcb->Timeout = 0; in freecom_transport()
284 memset (fcb->Atapi, 0, sizeof(fcb->Atapi)); in freecom_transport()
[all …]
/linux-4.1.27/fs/exofs/
Dinode.c1162 struct exofs_fcb fcb; in exofs_iget() local
1177 ret = exofs_get_inode(sb, oi, &fcb); in exofs_iget()
1184 inode->i_mode = le16_to_cpu(fcb.i_mode); in exofs_iget()
1185 i_uid_write(inode, le32_to_cpu(fcb.i_uid)); in exofs_iget()
1186 i_gid_write(inode, le32_to_cpu(fcb.i_gid)); in exofs_iget()
1187 set_nlink(inode, le16_to_cpu(fcb.i_links_count)); in exofs_iget()
1188 inode->i_ctime.tv_sec = (signed)le32_to_cpu(fcb.i_ctime); in exofs_iget()
1189 inode->i_atime.tv_sec = (signed)le32_to_cpu(fcb.i_atime); in exofs_iget()
1190 inode->i_mtime.tv_sec = (signed)le32_to_cpu(fcb.i_mtime); in exofs_iget()
1193 oi->i_commit_size = le64_to_cpu(fcb.i_size); in exofs_iget()
[all …]
/linux-4.1.27/drivers/s390/char/
Dvmur.c599 struct file_control_block *fcb; in verify_uri_device() local
603 fcb = kmalloc(sizeof(*fcb), GFP_KERNEL | GFP_DMA); in verify_uri_device()
604 if (!fcb) in verify_uri_device()
608 rc = diag_read_next_file_info(fcb, 0); in verify_uri_device()
613 if (fcb->file_stat & (FLG_SYSTEM_HOLD | FLG_USER_HOLD)) { in verify_uri_device()
629 rc = diag_read_next_file_info(fcb, 0); in verify_uri_device()
632 if (!(fcb->file_stat & FLG_IN_USE)) { in verify_uri_device()
641 kfree(fcb); in verify_uri_device()
659 struct file_control_block *fcb; in get_uri_file_reclen() local
662 fcb = kmalloc(sizeof(*fcb), GFP_KERNEL | GFP_DMA); in get_uri_file_reclen()
[all …]
/linux-4.1.27/Documentation/devicetree/bindings/net/
Dbrcm,bcm7445-switch-v4.0.txt22 must be: "core", "reg", "intrl2_0", "intrl2_1", "fcb", "acb"
33 - brcm,fcb-pause-override: boolean property, if present indicates that the switch
62 brcm,fcb-pause-override;
/linux-4.1.27/drivers/net/dsa/
Dbcm_sf2.h59 void __iomem *fcb; member
143 SF2_IO_MACRO(fcb);
/linux-4.1.27/drivers/net/ethernet/freescale/
Dgianfar.c2168 struct txfcb *fcb = (struct txfcb *)skb_push(skb, GMAC_FCB_LEN); in gfar_add_fcb() local
2170 memset(fcb, 0, GMAC_FCB_LEN); in gfar_add_fcb()
2172 return fcb; in gfar_add_fcb()
2175 static inline void gfar_tx_checksum(struct sk_buff *skb, struct txfcb *fcb, in gfar_tx_checksum() argument
2189 fcb->phcs = (__force __be16)(udp_hdr(skb)->check); in gfar_tx_checksum()
2191 fcb->phcs = (__force __be16)(tcp_hdr(skb)->check); in gfar_tx_checksum()
2198 fcb->l3os = (u8)(skb_network_offset(skb) - fcb_length); in gfar_tx_checksum()
2199 fcb->l4os = skb_network_header_len(skb); in gfar_tx_checksum()
2201 fcb->flags = flags; in gfar_tx_checksum()
2204 void inline gfar_tx_vlan(struct sk_buff *skb, struct txfcb *fcb) in gfar_tx_vlan() argument
[all …]