[SCSI] fcoe: move FIP controller from fcoe_port to fcoe_interface

There is only one FIP state per net_device, so the FIP controller needs to be
moved from the per-SCSI-host fcoe_port to the per-net_device fcoe_interface
structure.

Signed-off-by: Chris Leech <christopher.leech@intel.com>
Signed-off-by: Robert Love <robert.w.love@intel.com>
Signed-off-by: James Bottomley <James.Bottomley@suse.de>
这个提交包含在:
Chris Leech
2009-08-25 13:59:46 -07:00
提交者 James Bottomley
父节点 259ad85d8d
当前提交 3fe9a0bada
修改 2 个文件,包含 39 行新增48 行删除

查看文件

@@ -85,6 +85,7 @@ struct fcoe_interface {
struct net_device *netdev;
struct packet_type fcoe_packet_type;
struct packet_type fip_packet_type;
struct fcoe_ctlr ctlr;
};
/*
@@ -97,10 +98,9 @@ struct fcoe_port {
struct sk_buff_head fcoe_pending_queue;
u8 fcoe_pending_queue_active;
struct timer_list timer; /* queue timer */
struct fcoe_ctlr ctlr;
};
#define fcoe_from_ctlr(fip) container_of(fip, struct fcoe_port, ctlr)
#define fcoe_from_ctlr(fip) container_of(fip, struct fcoe_interface, ctlr)
static inline struct net_device *fcoe_netdev(const struct fc_lport *lp)
{