All of lore.kernel.org
 help / color / mirror / Atom feed
From: David Ahern <dsahern@gmail.com>
To: Parav Pandit <parav@nvidia.com>,
	virtualization@lists.linux-foundation.org,
	netdev@vger.kernel.org, stephen@networkplumber.org,
	mst@redhat.com, jasowang@redhat.com
Subject: Re: [PATCH iproute2-next v4 1/5] Add kernel headers
Date: Mon, 8 Feb 2021 08:47:33 -0700	[thread overview]
Message-ID: <e3aaccc1-4a73-9438-2b76-e73cefc3383f@gmail.com> (raw)
In-Reply-To: <20210205181029.365461-2-parav@nvidia.com>

On 2/5/21 11:10 AM, Parav Pandit wrote:
> diff --git a/vdpa/include/uapi/linux/vdpa.h b/vdpa/include/uapi/linux/vdpa.h
> new file mode 100644
> index 00000000..66a41e4e
> --- /dev/null
> +++ b/vdpa/include/uapi/linux/vdpa.h
> @@ -0,0 +1,40 @@
> +/* SPDX-License-Identifier: GPL-2.0+ WITH Linux-syscall-note */
> +/*
> + * vdpa device management interface
> + * Copyright (c) 2020 Mellanox Technologies Ltd. All rights reserved.
> + */
> +
> +#ifndef _UAPI_LINUX_VDPA_H_
> +#define _UAPI_LINUX_VDPA_H_
> +

you should grab this header after a 'make headers_install' which cleans
up the _UAPI prefix.

_______________________________________________
Virtualization mailing list
Virtualization@lists.linux-foundation.org
https://lists.linuxfoundation.org/mailman/listinfo/virtualization

WARNING: multiple messages have this Message-ID (diff)
From: David Ahern <dsahern@gmail.com>
To: Parav Pandit <parav@nvidia.com>,
	virtualization@lists.linux-foundation.org,
	netdev@vger.kernel.org, stephen@networkplumber.org,
	mst@redhat.com, jasowang@redhat.com
Subject: Re: [PATCH iproute2-next v4 1/5] Add kernel headers
Date: Mon, 8 Feb 2021 08:47:33 -0700	[thread overview]
Message-ID: <e3aaccc1-4a73-9438-2b76-e73cefc3383f@gmail.com> (raw)
In-Reply-To: <20210205181029.365461-2-parav@nvidia.com>

On 2/5/21 11:10 AM, Parav Pandit wrote:
> diff --git a/vdpa/include/uapi/linux/vdpa.h b/vdpa/include/uapi/linux/vdpa.h
> new file mode 100644
> index 00000000..66a41e4e
> --- /dev/null
> +++ b/vdpa/include/uapi/linux/vdpa.h
> @@ -0,0 +1,40 @@
> +/* SPDX-License-Identifier: GPL-2.0+ WITH Linux-syscall-note */
> +/*
> + * vdpa device management interface
> + * Copyright (c) 2020 Mellanox Technologies Ltd. All rights reserved.
> + */
> +
> +#ifndef _UAPI_LINUX_VDPA_H_
> +#define _UAPI_LINUX_VDPA_H_
> +

you should grab this header after a 'make headers_install' which cleans
up the _UAPI prefix.


  reply	other threads:[~2021-02-08 15:47 UTC|newest]

Thread overview: 62+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-01-22 11:26 [PATCH iproute2-next 0/2] Add vdpa device management tool Parav Pandit
2021-01-22 11:26 ` Parav Pandit
2021-01-22 11:26 ` [PATCH iproute2-next 1/2] Add kernel headers Parav Pandit
2021-01-22 11:26   ` Parav Pandit
2021-01-22 11:26 ` [PATCH iproute2-next 2/2] vdpa: Add vdpa tool Parav Pandit
2021-01-22 11:26   ` Parav Pandit
2021-01-26  4:22   ` David Ahern
2021-01-26  4:22     ` David Ahern
2021-01-26 13:26     ` Parav Pandit
2021-01-26 13:26       ` Parav Pandit
2021-01-28 18:43   ` [PATCH iproute2-next v2 0/2] Add vdpa device management tool Parav Pandit
2021-01-28 18:43     ` Parav Pandit
2021-01-28 18:43     ` [PATCH iproute2-next v2 1/2] Add kernel headers Parav Pandit
2021-01-28 18:43       ` Parav Pandit
2021-01-28 18:43     ` [PATCH iproute2-next v2 2/2] vdpa: Add vdpa tool Parav Pandit
2021-01-28 18:43       ` Parav Pandit
2021-01-29  3:23       ` Parav Pandit
2021-01-29  3:23         ` Parav Pandit
2021-02-02 10:35   ` [PATCH iproute2-next v3 0/5] Add vdpa device management tool Parav Pandit
2021-02-02 10:35     ` Parav Pandit
2021-02-02 10:35     ` [PATCH iproute2-next v3 1/5] Add kernel headers Parav Pandit
2021-02-02 10:35       ` Parav Pandit
2021-02-04  1:37       ` David Ahern
2021-02-04  1:37         ` David Ahern
2021-02-05 17:54         ` Parav Pandit
2021-02-05 17:54           ` Parav Pandit
2021-02-02 10:35     ` [PATCH iproute2-next v3 2/5] utils: Add helper routines for indent handling Parav Pandit
2021-02-02 10:35       ` Parav Pandit
2021-02-02 10:35     ` [PATCH iproute2-next v3 3/5] utils: Add generic socket helpers Parav Pandit
2021-02-02 10:35       ` Parav Pandit
2021-02-02 10:35     ` [PATCH iproute2-next v3 4/5] utils: Add helper to map string to unsigned int Parav Pandit
2021-02-02 10:35       ` Parav Pandit
2021-02-02 10:35     ` [PATCH iproute2-next v3 5/5] vdpa: Add vdpa tool Parav Pandit
2021-02-02 10:35       ` Parav Pandit
2021-02-04  3:16     ` [PATCH iproute2-next v3 0/5] Add vdpa device management tool Jason Wang
2021-02-04  3:16       ` Jason Wang
2021-02-04 11:15       ` Adrian Moreno
2021-02-04 11:15         ` Adrian Moreno
2021-02-05  3:40         ` Jason Wang
2021-02-05  3:40           ` Jason Wang
2021-02-05 17:53           ` Parav Pandit
2021-02-05 17:53             ` Parav Pandit
2021-02-05 18:06             ` Adrian Moreno
2021-02-05 18:06               ` Adrian Moreno
2021-02-05 18:07           ` Adrian Moreno
2021-02-05 18:07             ` Adrian Moreno
2021-02-05 18:10   ` [PATCH iproute2-next v4 " Parav Pandit
2021-02-05 18:10     ` Parav Pandit
2021-02-05 18:10     ` [PATCH iproute2-next v4 1/5] Add kernel headers Parav Pandit
2021-02-05 18:10       ` Parav Pandit
2021-02-08 15:47       ` David Ahern [this message]
2021-02-08 15:47         ` David Ahern
2021-02-10 18:28         ` Parav Pandit
2021-02-10 18:28           ` Parav Pandit
2021-02-05 18:10     ` [PATCH iproute2-next v4 2/5] utils: Add helper routines for indent handling Parav Pandit
2021-02-05 18:10       ` Parav Pandit
2021-02-05 18:10     ` [PATCH iproute2-next v4 3/5] utils: Add generic socket helpers Parav Pandit
2021-02-05 18:10       ` Parav Pandit
2021-02-05 18:10     ` [PATCH iproute2-next v4 4/5] utils: Add helper to map string to unsigned int Parav Pandit
2021-02-05 18:10       ` Parav Pandit
2021-02-05 18:10     ` [PATCH iproute2-next v4 5/5] vdpa: Add vdpa tool Parav Pandit
2021-02-05 18:10       ` Parav Pandit

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=e3aaccc1-4a73-9438-2b76-e73cefc3383f@gmail.com \
    --to=dsahern@gmail.com \
    --cc=jasowang@redhat.com \
    --cc=mst@redhat.com \
    --cc=netdev@vger.kernel.org \
    --cc=parav@nvidia.com \
    --cc=stephen@networkplumber.org \
    --cc=virtualization@lists.linux-foundation.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.