Commit 9dbfd150 authored by K. Y. Srinivasan's avatar K. Y. Srinivasan Committed by Greg Kroah-Hartman
Browse files

Staging: hv: netvsc_drv: Move the definition of struct rndis_filter_packet to hyperv_net.h



Move the definition of struct rndis_filter_packet to hyperv_net.h.

Signed-off-by: default avatarK. Y. Srinivasan <kys@microsoft.com>
Signed-off-by: default avatarHaiyang Zhang <haiyangz@microsoft.com>
Signed-off-by: default avatarAbhishek Kane <v-abkane@microsoft.com>
Signed-off-by: default avatarHank Janssen <hjanssen@microsoft.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent e3f8a80e
Loading
Loading
Loading
Loading
+7 −0
Original line number Diff line number Diff line
@@ -1019,6 +1019,13 @@ struct rndis_message {
	union rndis_message_container msg;
};


struct rndis_filter_packet {
	void *completion_ctx;
	void (*completion)(void *context);
	struct rndis_message msg;
};

/* Handy macros */

/* get the size of an RNDIS message. Pass in the message type, */
+0 −8
Original line number Diff line number Diff line
@@ -74,14 +74,6 @@ struct rndis_request {
	struct rndis_message request_msg;
};


struct rndis_filter_packet {
	void *completion_ctx;
	void (*completion)(void *context);
	struct rndis_message msg;
};


static void rndis_filter_send_completion(void *ctx);

static void rndis_filter_send_request_completion(void *ctx);