diff options
Diffstat (limited to 'drivers/net/ethernet/microchip/vcap/vcap_api.h')
| -rw-r--r-- | drivers/net/ethernet/microchip/vcap/vcap_api.h | 13 | 
1 files changed, 8 insertions, 5 deletions
diff --git a/drivers/net/ethernet/microchip/vcap/vcap_api.h b/drivers/net/ethernet/microchip/vcap/vcap_api.h index 689c7270f2a8..62db270f65af 100644 --- a/drivers/net/ethernet/microchip/vcap/vcap_api.h +++ b/drivers/net/ethernet/microchip/vcap/vcap_api.h @@ -176,6 +176,7 @@ struct vcap_admin {  	int first_valid_addr; /* bottom of address range to be used */  	int last_used_addr;  /* address of lowest added rule */  	bool w32be; /* vcap uses "32bit-word big-endian" encoding */ +	bool ingress; /* chain traffic direction */  	struct vcap_cache_data cache; /* encoded rule data */  }; @@ -201,6 +202,13 @@ struct vcap_keyset_list {  	enum vcap_keyfield_set *keysets; /* the list of keysets */  }; +/* List of actionsets */ +struct vcap_actionset_list { +	int max; /* size of the actionset list */ +	int cnt; /* count of actionsets actually in the list */ +	enum vcap_actionfield_set *actionsets; /* the list of actionsets */ +}; +  /* Client output printf-like function with destination */  struct vcap_output_print {  	__printf(2, 3) @@ -259,11 +267,6 @@ struct vcap_operations {  		(struct net_device *ndev,  		 struct vcap_admin *admin,  		 struct vcap_output_print *out); -	/* enable/disable the lookups in a vcap instance */ -	int (*enable) -		(struct net_device *ndev, -		 struct vcap_admin *admin, -		 bool enable);  };  /* VCAP API Client control interface */  |