fcllc            1490 drivers/message/fusion/mptlan.c 	struct fcllc *fcllc;
fcllc            1523 drivers/message/fusion/mptlan.c 	fcllc = (struct fcllc *)skb->data;
fcllc            1528 drivers/message/fusion/mptlan.c 	if (fcllc->dsap == EXTENDED_SAP &&
fcllc            1529 drivers/message/fusion/mptlan.c 		(fcllc->ethertype == htons(ETH_P_IP) ||
fcllc            1530 drivers/message/fusion/mptlan.c 		 fcllc->ethertype == htons(ETH_P_ARP))) {
fcllc            1531 drivers/message/fusion/mptlan.c 		skb_pull(skb, sizeof(struct fcllc));
fcllc            1532 drivers/message/fusion/mptlan.c 		return fcllc->ethertype;
fcllc              27 include/uapi/linux/if_fc.h #define FC_HLEN   (sizeof(struct fch_hdr)+sizeof(struct fcllc))
fcllc              45 net/802/fc.c   		struct fcllc *fcllc;
fcllc              47 net/802/fc.c   		hdr_len = sizeof(struct fch_hdr) + sizeof(struct fcllc);
fcllc              49 net/802/fc.c   		fcllc = (struct fcllc *)(fch+1);
fcllc              50 net/802/fc.c   		fcllc->dsap = fcllc->ssap = EXTENDED_SAP;
fcllc              51 net/802/fc.c   		fcllc->llc = UI_CMD;
fcllc              52 net/802/fc.c   		fcllc->protid[0] = fcllc->protid[1] = fcllc->protid[2] = 0x00;
fcllc              53 net/802/fc.c   		fcllc->ethertype = htons(type);