Commit fd325cd6 authored by Long Li's avatar Long Li Committed by Leon Romanovsky
Browse files

net: mana: Move header files to a common location



In preparation to add MANA RDMA driver, move all the required header files
to a common location for use by both Ethernet and RDMA drivers.

Reviewed-by: default avatarDexuan Cui <decui@microsoft.com>
Signed-off-by: default avatarLong Li <longli@microsoft.com>
Link: https://lore.kernel.org/r/1667502990-2559-8-git-send-email-longli@linuxonhyperv.com


Acked-by: default avatarHaiyang Zhang <haiyangz@microsoft.com>
Signed-off-by: default avatarLeon Romanovsky <leonro@nvidia.com>
parent d44089e5
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -9541,6 +9541,7 @@ F: include/asm-generic/hyperv-tlfs.h
F:	include/asm-generic/mshyperv.h
F:	include/clocksource/hyperv_timer.h
F:	include/linux/hyperv.h
F:	include/net/mana
F:	include/uapi/linux/hyperv.h
F:	net/vmw_vsock/hyperv_transport.c
F:	tools/hv/
+1 −1
Original line number Diff line number Diff line
@@ -6,7 +6,7 @@
#include <linux/utsname.h>
#include <linux/version.h>

#include "mana.h"
#include <net/mana/mana.h>

static u32 mana_gd_r32(struct gdma_context *g, u64 offset)
{
+2 −2
Original line number Diff line number Diff line
// SPDX-License-Identifier: GPL-2.0 OR BSD-3-Clause
/* Copyright (c) 2021, Microsoft Corporation. */

#include "gdma.h"
#include "hw_channel.h"
#include <net/mana/gdma.h>
#include <net/mana/hw_channel.h>

static int mana_hwc_get_msg_index(struct hw_channel_context *hwc, u16 *msg_id)
{
+1 −1
Original line number Diff line number Diff line
@@ -8,7 +8,7 @@
#include <linux/bpf_trace.h>
#include <net/xdp.h>

#include "mana.h"
#include <net/mana/mana.h>

void mana_xdp_tx(struct sk_buff *skb, struct net_device *ndev)
{
+2 −2
Original line number Diff line number Diff line
@@ -12,8 +12,8 @@
#include <net/checksum.h>
#include <net/ip6_checksum.h>

#include "mana.h"
#include "mana_auxiliary.h"
#include <net/mana/mana.h>
#include <net/mana/mana_auxiliary.h>

static DEFINE_IDA(mana_adev_ida);

Loading