diff options
| author | Jiri Kosina <jkosina@suse.cz> | 2022-03-23 09:58:40 +0100 | 
|---|---|---|
| committer | Jiri Kosina <jkosina@suse.cz> | 2022-03-23 09:58:40 +0100 | 
| commit | b690490d6d466972ade172ee2e7f6ffa49e7e910 (patch) | |
| tree | 50a93da28c9128e19eb7a3038aecf75dab6b36e1 /drivers/net/hyperv/hyperv_net.h | |
| parent | f97ec5d75e9261a5da78dc28a8955b7cc0c4468b (diff) | |
| parent | 0f203948230720e849ad50d158adac1cd32c282f (diff) | |
Merge branch 'for-5.18/amd-sfh' into for-linus
- dead code elimination (Christophe JAILLET)
Diffstat (limited to 'drivers/net/hyperv/hyperv_net.h')
| -rw-r--r-- | drivers/net/hyperv/hyperv_net.h | 5 | 
1 files changed, 5 insertions, 0 deletions
diff --git a/drivers/net/hyperv/hyperv_net.h b/drivers/net/hyperv/hyperv_net.h index 315278a7cf88..cf69da0e296c 100644 --- a/drivers/net/hyperv/hyperv_net.h +++ b/drivers/net/hyperv/hyperv_net.h @@ -164,6 +164,7 @@ struct hv_netvsc_packet {  	u32 total_bytes;  	u32 send_buf_index;  	u32 total_data_buflen; +	struct hv_dma_range *dma_range;  };  #define NETVSC_HASH_KEYLEN 40 @@ -1074,6 +1075,7 @@ struct netvsc_device {  	/* Receive buffer allocated by us but manages by NetVSP */  	void *recv_buf; +	void *recv_original_buf;  	u32 recv_buf_size; /* allocated bytes */  	struct vmbus_gpadl recv_buf_gpadl_handle;  	u32 recv_section_cnt; @@ -1082,6 +1084,7 @@ struct netvsc_device {  	/* Send buffer allocated by us */  	void *send_buf; +	void *send_original_buf;  	u32 send_buf_size;  	struct vmbus_gpadl send_buf_gpadl_handle;  	u32 send_section_cnt; @@ -1731,4 +1734,6 @@ struct rndis_message {  #define RETRY_US_HI	10000  #define RETRY_MAX	2000	/* >10 sec */ +void netvsc_dma_unmap(struct hv_device *hv_dev, +		      struct hv_netvsc_packet *packet);  #endif /* _HYPERV_NET_H */  | 
