Linux Kernel Selftest development
 help / color / mirror / Atom feed
From: Shuah Khan <skhan@linuxfoundation.org>
To: Gerd Bayer <gbayer@linux.ibm.com>,
	Xiang Chen <chenxiang66@hisilicon.com>,
	Shuah Khan <shuah@kernel.org>
Cc: Joerg Roedel <joro@8bytes.org>,
	iommu@lists.linux.dev, linux-kselftest@vger.kernel.org,
	Niklas Schnelle <schnelle@linux.ibm.com>,
	Shuah Khan <skhan@linuxfoundation.org>
Subject: Re: [PATCH] selftests:dma: Fix compile error in user-space tool
Date: Thu, 12 Jan 2023 13:36:53 -0700	[thread overview]
Message-ID: <a01b5643-3373-d5a0-a3d7-4fa845725dbd@linuxfoundation.org> (raw)
In-Reply-To: <20230109180721.187324-1-gbayer@linux.ibm.com>

On 1/9/23 11:07, Gerd Bayer wrote:
> Since [1] the user-space program dma_map_benchmark shares the header file
> linux/map_benchmark.h with the kernel driver in kernel/dma/map_benchmark.c.
> With latest kernel version this does not compile anymore.
> 
> While https://kernelnewbies.org/KernelHeaders suggests otherwise, allow it
> to use kernel headers through the uapi/ include directory. I assume we can
> do so safely, since the controlling user-space program is distributed with
> the kernel.
> 
> With this change dma_map_benchmark compiles with just the obvious warning
> about uapi usage on ARCH=x86, arm64, and s390 and runs on ARCH=s390.
> 
> [1] commit 8ddde07a3d28 ("dma-mapping: benchmark: extract a common header
> file for map_benchmark definition")
> 
> Signed-off-by: Gerd Bayer <gbayer@linux.ibm.com>
> Acked-by: Xiang Chen <chenxiang66@hisilicon.com>
> ---
>   tools/testing/selftests/dma/dma_map_benchmark.c | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/tools/testing/selftests/dma/dma_map_benchmark.c b/tools/testing/selftests/dma/dma_map_benchmark.c
> index 5c997f17fcbd..d49d7ea6a63e 100644
> --- a/tools/testing/selftests/dma/dma_map_benchmark.c
> +++ b/tools/testing/selftests/dma/dma_map_benchmark.c
> @@ -10,7 +10,7 @@
>   #include <unistd.h>
>   #include <sys/ioctl.h>
>   #include <sys/mman.h>
> -#include <linux/types.h>
> +#include <uapi/linux/types.h>
>   #include <linux/map_benchmark.h>
>   
>   #define NSEC_PER_MSEC	1000000L
> 
> base-commit: 1fe4fd6f5cad346e598593af36caeadc4f5d4fa9

On Linux 6.2-rc3, dma_map_benchmark compiles just fine. You do
have to do "make headers_install" first as kselftest depends
on headers being installed in the repo.

Please let me know if you are seeing compile problems even after
installing headers.

thanks,
-- Shuah



  reply	other threads:[~2023-01-12 20:56 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-01-09 18:07 [PATCH] selftests:dma: Fix compile error in user-space tool Gerd Bayer
2023-01-12 20:36 ` Shuah Khan [this message]
2023-01-13 16:52   ` Gerd Bayer
2023-01-13 18:15     ` Shuah Khan

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=a01b5643-3373-d5a0-a3d7-4fa845725dbd@linuxfoundation.org \
    --to=skhan@linuxfoundation.org \
    --cc=chenxiang66@hisilicon.com \
    --cc=gbayer@linux.ibm.com \
    --cc=iommu@lists.linux.dev \
    --cc=joro@8bytes.org \
    --cc=linux-kselftest@vger.kernel.org \
    --cc=schnelle@linux.ibm.com \
    --cc=shuah@kernel.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox