Skip to content

Commit

Permalink
datpath-windows: include/OvsPub.h => ovsext/DpInternal.h
Browse files Browse the repository at this point in the history
OvsPub.h is not longer the interface file that published the interface
of the kernel datapath to userspace. Nevertheless it is still being used
internal to the kernel datapath.

We rename the file for this reason.

Signed-off-by: Nithin Raju <[email protected]>
Acked-by: Sorin Vinturis <[email protected]>
Signed-off-by: Gurucharan Shetty <[email protected]>
  • Loading branch information
nithinrajub authored and shettyg committed Nov 20, 2014
1 parent 34b52ca commit 9c3d71b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion datapath-windows/automake.mk
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@ EXTRA_DIST += \
datapath-windows/Package/package.VcxProj \
datapath-windows/Package/package.VcxProj.user \
datapath-windows/include/OvsDpInterfaceExt.h \
datapath-windows/include/OvsPub.h\
datapath-windows/misc/install.cmd \
datapath-windows/misc/uninstall.cmd \
datapath-windows/misc/OVS.psm1 \
datapath-windows/ovsext.sln \
datapath-windows/ovsext/Datapath.c \
datapath-windows/ovsext/Datapath.h \
datapath-windows/ovsext/DpInternal.h\
datapath-windows/ovsext/Actions.c \
datapath-windows/ovsext/Atomic.h \
datapath-windows/ovsext/BufferMgmt.c \
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
* limitations under the License.
*/

#ifndef __OVS_PUB_H_
#define __OVS_PUB_H_ 1
#ifndef __DP_INTERNAL_H_
#define __DP_INTERNAL_H_ 1

#include <netioapi.h>
#define IFNAMSIZ IF_NAMESIZE
Expand Down Expand Up @@ -472,4 +472,4 @@ typedef struct _OVS_EVENT_STATUS {

#pragma pack(pop)

#endif /* __OVS_PUB_H_ */
#endif /* __DP_INTERNAL_H_ */
2 changes: 1 addition & 1 deletion datapath-windows/ovsext/precomp.h
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,4 @@
#include "Netlink/Netlink.h"
#include "Netlink/NetlinkProto.h"
#include "..\include\OvsDpInterfaceExt.h"
#include "..\include\OvsPub.h"
#include "DpInternal.h"

0 comments on commit 9c3d71b

Please sign in to comment.