Commit 2183b990 authored by Upinder Malhi's avatar Upinder Malhi Committed by Roland Dreier

IB/usnic: Push all forwarding state to usnic_fwd.[hc]

Push all of the usnic device forwarding state - such as mtu, mac - to
usnic_fwd_dev.  Furthermore, usnic_fwd.h exposes a improved interface
for rest of the usnic code.  The primary improvement is that
usnic_fwd.h's flow management interface takes in high-level *filter*
and *action* structures now, instead of low-level paramaters such as
vnic_idx, rq_idx.
Signed-off-by: default avatarUpinder Malhi <umalhi@cisco.com>
Signed-off-by: default avatarRoland Dreier <roland@purestorage.com>
parent 301a0dd6
This diff is collapsed.
...@@ -20,39 +20,73 @@ ...@@ -20,39 +20,73 @@
#define USNIC_FWD_H_ #define USNIC_FWD_H_
#include <linux/if.h> #include <linux/if.h>
#include <linux/netdevice.h>
#include <linux/pci.h> #include <linux/pci.h>
#include <linux/spinlock.h> #include <linux/in.h>
#include "usnic_abi.h" #include "usnic_abi.h"
#include "usnic_common_pkt_hdr.h"
#include "vnic_devcmd.h" #include "vnic_devcmd.h"
struct usnic_fwd_dev { struct usnic_fwd_dev {
struct pci_dev *pdev; struct pci_dev *pdev;
struct net_device *netdev; struct net_device *netdev;
spinlock_t lock; spinlock_t lock;
/*
* The following fields can be read directly off the device.
* However, they should be set by a accessor function, except name,
* which cannot be changed.
*/
bool link_up;
char mac[ETH_ALEN];
unsigned int mtu;
char name[IFNAMSIZ+1];
}; };
struct usnic_fwd_filter { struct usnic_fwd_flow {
enum usnic_transport_type transport; uint32_t flow_id;
u16 port_num; struct usnic_fwd_dev *ufdev;
unsigned int vnic_idx;
}; };
struct usnic_fwd_filter_hndl { struct usnic_filter_action {
enum filter_type type; int vnic_idx;
u32 id; struct filter_action action;
u32 vnic_idx;
struct usnic_fwd_dev *ufdev;
struct list_head link;
struct usnic_fwd_filter *filter;
}; };
struct usnic_fwd_dev *usnic_fwd_dev_alloc(struct pci_dev *pdev); struct usnic_fwd_dev *usnic_fwd_dev_alloc(struct pci_dev *pdev);
void usnic_fwd_dev_free(struct usnic_fwd_dev *ufdev); void usnic_fwd_dev_free(struct usnic_fwd_dev *ufdev);
int usnic_fwd_add_usnic_filter(struct usnic_fwd_dev *ufdev, int vnic_idx,
int rq_idx, struct usnic_fwd_filter *filter, void usnic_fwd_set_mac(struct usnic_fwd_dev *ufdev, char mac[ETH_ALEN]);
struct usnic_fwd_filter_hndl **filter_hndl); void usnic_fwd_carrier_up(struct usnic_fwd_dev *ufdev);
int usnic_fwd_del_filter(struct usnic_fwd_filter_hndl *filter_hndl); void usnic_fwd_carrier_down(struct usnic_fwd_dev *ufdev);
int usnic_fwd_enable_rq(struct usnic_fwd_dev *ufdev, int vnic_idx, int rq_idx); void usnic_fwd_set_mtu(struct usnic_fwd_dev *ufdev, unsigned int mtu);
int usnic_fwd_disable_rq(struct usnic_fwd_dev *ufdev, int vnic_idx, int rq_idx);
/*
* Allocate a flow on this forwarding device. Whoever calls this function,
* must monitor netdev events on ufdev's netdevice. If NETDEV_REBOOT or
* NETDEV_DOWN is seen, flow will no longer function and must be
* immediately freed by calling usnic_dealloc_flow.
*/
struct usnic_fwd_flow*
usnic_fwd_alloc_flow(struct usnic_fwd_dev *ufdev, struct filter *filter,
struct usnic_filter_action *action);
int usnic_fwd_dealloc_flow(struct usnic_fwd_flow *flow);
int usnic_fwd_enable_qp(struct usnic_fwd_dev *ufdev, int vnic_idx, int qp_idx);
int usnic_fwd_disable_qp(struct usnic_fwd_dev *ufdev, int vnic_idx, int qp_idx);
static inline void usnic_fwd_init_usnic_filter(struct filter *filter,
uint32_t usnic_id)
{
filter->type = FILTER_USNIC_ID;
filter->u.usnic.ethtype = USNIC_ROCE_ETHERTYPE;
filter->u.usnic.flags = FILTER_FIELD_USNIC_ETHTYPE |
FILTER_FIELD_USNIC_ID |
FILTER_FIELD_USNIC_PROTO;
filter->u.usnic.proto_version = (USNIC_ROCE_GRH_VER <<
USNIC_ROCE_GRH_VER_SHIFT) |
USNIC_PROTO_VER;
filter->u.usnic.usnic_id = usnic_id;
}
#endif /* !USNIC_FWD_H_ */ #endif /* !USNIC_FWD_H_ */
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment