netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] selftests/bpf: update gitignore with test_libbpf_open
@ 2018-02-21 21:30 Anders Roxell
  2018-02-21 21:37 ` Daniel Díaz
  2018-02-21 22:48 ` David Miller
  0 siblings, 2 replies; 7+ messages in thread
From: Anders Roxell @ 2018-02-21 21:30 UTC (permalink / raw)
  To: shuah; +Cc: daniel, ast, netdev, linux-kernel, linux-kselftest, Anders Roxell

bpf builds a test program for loading BPF ELF files. Add the executable
to the .gitignore list.

Signed-off-by: Anders Roxell <anders.roxell@linaro.org>
---
 tools/testing/selftests/bpf/.gitignore | 1 +
 1 file changed, 1 insertion(+)

diff --git a/tools/testing/selftests/bpf/.gitignore b/tools/testing/selftests/bpf/.gitignore
index cc15af2e54fe..9cf83f895d98 100644
--- a/tools/testing/selftests/bpf/.gitignore
+++ b/tools/testing/selftests/bpf/.gitignore
@@ -11,3 +11,4 @@ test_progs
 test_tcpbpf_user
 test_verifier_log
 feature
+test_libbpf_open
-- 
2.11.0

^ permalink raw reply related	[flat|nested] 7+ messages in thread

* Re: [PATCH] selftests/bpf: update gitignore with test_libbpf_open
  2018-02-21 21:30 [PATCH] selftests/bpf: update gitignore with test_libbpf_open Anders Roxell
@ 2018-02-21 21:37 ` Daniel Díaz
  2018-02-21 22:48 ` David Miller
  1 sibling, 0 replies; 7+ messages in thread
From: Daniel Díaz @ 2018-02-21 21:37 UTC (permalink / raw)
  To: Anders Roxell, shuah; +Cc: daniel, ast, netdev, linux-kernel, linux-kselftest

On 02/21/2018 03:30 PM, Anders Roxell wrote:
> bpf builds a test program for loading BPF ELF files. Add the executable
> to the .gitignore list.
> 
> Signed-off-by: Anders Roxell <anders.roxell@linaro.org>

Tested-by: Daniel Díaz <daniel.diaz@linaro.org>

> ---
>  tools/testing/selftests/bpf/.gitignore | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/tools/testing/selftests/bpf/.gitignore b/tools/testing/selftests/bpf/.gitignore
> index cc15af2e54fe..9cf83f895d98 100644
> --- a/tools/testing/selftests/bpf/.gitignore
> +++ b/tools/testing/selftests/bpf/.gitignore
> @@ -11,3 +11,4 @@ test_progs
>  test_tcpbpf_user
>  test_verifier_log
>  feature
> +test_libbpf_open

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH] selftests/bpf: update gitignore with test_libbpf_open
  2018-02-21 21:30 [PATCH] selftests/bpf: update gitignore with test_libbpf_open Anders Roxell
  2018-02-21 21:37 ` Daniel Díaz
@ 2018-02-21 22:48 ` David Miller
  2018-02-21 23:03   ` Shuah Khan
  1 sibling, 1 reply; 7+ messages in thread
From: David Miller @ 2018-02-21 22:48 UTC (permalink / raw)
  To: anders.roxell; +Cc: shuah, daniel, ast, netdev, linux-kernel, linux-kselftest

From: Anders Roxell <anders.roxell@linaro.org>
Date: Wed, 21 Feb 2018 22:30:01 +0100

> bpf builds a test program for loading BPF ELF files. Add the executable
> to the .gitignore list.
> 
> Signed-off-by: Anders Roxell <anders.roxell@linaro.org>

Acked-by: David S. Miller <davem@davemloft.net>

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH] selftests/bpf: update gitignore with test_libbpf_open
  2018-02-21 22:48 ` David Miller
@ 2018-02-21 23:03   ` Shuah Khan
  2018-02-22  0:33     ` Daniel Borkmann
  0 siblings, 1 reply; 7+ messages in thread
From: Shuah Khan @ 2018-02-21 23:03 UTC (permalink / raw)
  To: David Miller, anders.roxell
  Cc: daniel, ast, netdev, linux-kernel, linux-kselftest, Shuah Khan,
	Shuah Khan

On 02/21/2018 03:48 PM, David Miller wrote:
> From: Anders Roxell <anders.roxell@linaro.org>
> Date: Wed, 21 Feb 2018 22:30:01 +0100
> 
>> bpf builds a test program for loading BPF ELF files. Add the executable
>> to the .gitignore list.
>>
>> Signed-off-by: Anders Roxell <anders.roxell@linaro.org>
> 
> Acked-by: David S. Miller <davem@davemloft.net>
> 
> 

Thanks. I will pull this in for 4.16-rc

-- Shuah

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH] selftests/bpf: update gitignore with test_libbpf_open
  2018-02-21 23:03   ` Shuah Khan
@ 2018-02-22  0:33     ` Daniel Borkmann
  2018-02-22  0:37       ` Shuah Khan
  0 siblings, 1 reply; 7+ messages in thread
From: Daniel Borkmann @ 2018-02-22  0:33 UTC (permalink / raw)
  To: shuah, David Miller, anders.roxell
  Cc: ast, netdev, linux-kernel, linux-kselftest, Shuah Khan

Hi Shuah,

On 02/22/2018 12:03 AM, Shuah Khan wrote:
> On 02/21/2018 03:48 PM, David Miller wrote:
>> From: Anders Roxell <anders.roxell@linaro.org>
>> Date: Wed, 21 Feb 2018 22:30:01 +0100
>>
>>> bpf builds a test program for loading BPF ELF files. Add the executable
>>> to the .gitignore list.
>>>
>>> Signed-off-by: Anders Roxell <anders.roxell@linaro.org>
>>
>> Acked-by: David S. Miller <davem@davemloft.net>
> 
> Thanks. I will pull this in for 4.16-rc

I would have taken this into bpf tree, but fair enough. This one
in particular doesn't cause any conflicts right now, so feel free
to pick it up then. But usual paths are via bpf / bpf-next as we
otherwise would run into real ugly merge conflicts.

Thanks,
Daniel

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH] selftests/bpf: update gitignore with test_libbpf_open
  2018-02-22  0:33     ` Daniel Borkmann
@ 2018-02-22  0:37       ` Shuah Khan
  2018-02-22  0:44         ` Daniel Borkmann
  0 siblings, 1 reply; 7+ messages in thread
From: Shuah Khan @ 2018-02-22  0:37 UTC (permalink / raw)
  To: Daniel Borkmann, shuah, David Miller, anders.roxell
  Cc: ast, netdev, linux-kernel, linux-kselftest, Shuah Khan

On 02/21/2018 05:33 PM, Daniel Borkmann wrote:
> Hi Shuah,
> 
> On 02/22/2018 12:03 AM, Shuah Khan wrote:
>> On 02/21/2018 03:48 PM, David Miller wrote:
>>> From: Anders Roxell <anders.roxell@linaro.org>
>>> Date: Wed, 21 Feb 2018 22:30:01 +0100
>>>
>>>> bpf builds a test program for loading BPF ELF files. Add the executable
>>>> to the .gitignore list.
>>>>
>>>> Signed-off-by: Anders Roxell <anders.roxell@linaro.org>
>>>
>>> Acked-by: David S. Miller <davem@davemloft.net>
>>
>> Thanks. I will pull this in for 4.16-rc
> 
> I would have taken this into bpf tree, but fair enough. This one
> in particular doesn't cause any conflicts right now, so feel free
> to pick it up then. But usual paths are via bpf / bpf-next as we
> otherwise would run into real ugly merge conflicts.
> 

Daniel,

Go for it. I know bpf tree stuff causes conflicts. That is why I usually
stay away from bpfs selftests and let you handle them.

You are taking the other one away, pick this up as well.

Acked-by: Shuah Khan <shuahkh@osg.samsung.com>

thanks,
-- Shuah

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH] selftests/bpf: update gitignore with test_libbpf_open
  2018-02-22  0:37       ` Shuah Khan
@ 2018-02-22  0:44         ` Daniel Borkmann
  0 siblings, 0 replies; 7+ messages in thread
From: Daniel Borkmann @ 2018-02-22  0:44 UTC (permalink / raw)
  To: Shuah Khan, shuah, David Miller, anders.roxell
  Cc: ast, netdev, linux-kernel, linux-kselftest

On 02/22/2018 01:37 AM, Shuah Khan wrote:
> On 02/21/2018 05:33 PM, Daniel Borkmann wrote:
>> Hi Shuah,
>>
>> On 02/22/2018 12:03 AM, Shuah Khan wrote:
>>> On 02/21/2018 03:48 PM, David Miller wrote:
>>>> From: Anders Roxell <anders.roxell@linaro.org>
>>>> Date: Wed, 21 Feb 2018 22:30:01 +0100
>>>>
>>>>> bpf builds a test program for loading BPF ELF files. Add the executable
>>>>> to the .gitignore list.
>>>>>
>>>>> Signed-off-by: Anders Roxell <anders.roxell@linaro.org>
>>>>
>>>> Acked-by: David S. Miller <davem@davemloft.net>
>>>
>>> Thanks. I will pull this in for 4.16-rc
>>
>> I would have taken this into bpf tree, but fair enough. This one
>> in particular doesn't cause any conflicts right now, so feel free
>> to pick it up then. But usual paths are via bpf / bpf-next as we
>> otherwise would run into real ugly merge conflicts.
> 
> Daniel,
> 
> Go for it. I know bpf tree stuff causes conflicts. That is why I usually
> stay away from bpfs selftests and let you handle them.
> 
> You are taking the other one away, pick this up as well.

Okay, great, thanks for your understanding, Shuah. Just applied
to bpf tree.

> Acked-by: Shuah Khan <shuahkh@osg.samsung.com>
> 
> thanks,
> -- Shuah
> 

^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2018-02-22  0:44 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-02-21 21:30 [PATCH] selftests/bpf: update gitignore with test_libbpf_open Anders Roxell
2018-02-21 21:37 ` Daniel Díaz
2018-02-21 22:48 ` David Miller
2018-02-21 23:03   ` Shuah Khan
2018-02-22  0:33     ` Daniel Borkmann
2018-02-22  0:37       ` Shuah Khan
2018-02-22  0:44         ` Daniel Borkmann

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).