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: Dexuan Cui <decui@microsoft.com> Signed-off-by: Long Li <longli@microsoft.com> Link: https://lore.kernel.org/r/1667502990-2559-8-git-send-email-longli@linuxonhyperv.com Acked-by: Haiyang Zhang <haiyangz@microsoft.com> Signed-off-by: Leon Romanovsky <leonro@nvidia.com>
This commit is contained in:
parent
d44089e555
commit
fd325cd648
|
@ -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/
|
||||
|
|
|
@ -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)
|
||||
{
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
// 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)
|
||||
{
|
||||
|
|
|
@ -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)
|
||||
{
|
||||
|
|
|
@ -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);
|
||||
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
#include <linux/etherdevice.h>
|
||||
#include <linux/ethtool.h>
|
||||
|
||||
#include "mana.h"
|
||||
#include <net/mana/mana.h>
|
||||
|
||||
static const struct {
|
||||
char name[ETH_GSTRING_LEN];
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
#include <linux/io.h>
|
||||
#include <linux/mm.h>
|
||||
|
||||
#include "shm_channel.h"
|
||||
#include <net/mana/shm_channel.h>
|
||||
|
||||
#define PAGE_FRAME_L48_WIDTH_BYTES 6
|
||||
#define PAGE_FRAME_L48_WIDTH_BITS (PAGE_FRAME_L48_WIDTH_BYTES * 8)
|
||||
|
|
Loading…
Reference in New Issue