[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <ZieUeciv-0dmmPLQ@nanopsycho>
Date: Tue, 23 Apr 2024 12:59:05 +0200
From: Jiri Pirko <jiri@...nulli.us>
To: Benjamin Poirier <benjamin.poirier@...il.com>
Cc: netdev@...r.kernel.org, kuba@...nel.org, pabeni@...hat.com,
davem@...emloft.net, edumazet@...gle.com, parav@...dia.com,
mst@...hat.com, jasowang@...hat.com, xuanzhuo@...ux.alibaba.com,
shuah@...nel.org, petrm@...dia.com, liuhangbin@...il.com,
vladimir.oltean@....com, idosch@...dia.com,
virtualization@...ts.linux.dev
Subject: Re: [patch net-next v5 3/5] selftests: forwarding: add
check_driver() helper
Mon, Apr 22, 2024 at 08:47:39PM CEST, benjamin.poirier@...il.com wrote:
>On 2024-04-22 17:32 +0200, Jiri Pirko wrote:
>> From: Jiri Pirko <jiri@...dia.com>
>>
>> Add a helper to be used to check if the netdevice is backed by specified
>> driver.
>>
>> Signed-off-by: Jiri Pirko <jiri@...dia.com>
>> Reviewed-by: Petr Machata <petrm@...dia.com>
>> ---
>> tools/testing/selftests/net/forwarding/lib.sh | 15 +++++++++++----
>> 1 file changed, 11 insertions(+), 4 deletions(-)
>>
>> diff --git a/tools/testing/selftests/net/forwarding/lib.sh b/tools/testing/selftests/net/forwarding/lib.sh
>> index 9d6802c6c023..00e089dd951d 100644
>> --- a/tools/testing/selftests/net/forwarding/lib.sh
>> +++ b/tools/testing/selftests/net/forwarding/lib.sh
>> @@ -278,10 +278,17 @@ check_port_mab_support()
>> fi
>> }
>>
>> -if [[ "$(id -u)" -ne 0 ]]; then
>> - echo "SKIP: need root privileges"
>> - exit $ksft_skip
>> -fi
>
>Why is the check being removed entirely? This change was not in v4 of
>this patch. Did it happen unintentionally when removing "selftests:
>forwarding: move initial root check to the beginning"?
Oh, a mistake.
I messed up the v5 submission, repost couple minutes ago but I missed
this comment. I will send v6 tomorrow.
Sorry!
>
>> +check_driver()
>> +{
>> + local dev=$1; shift
>> + local expected=$1; shift
>> + local driver_name=`driver_name_get $dev`
>> +
>> + if [[ $driver_name != $expected ]]; then
>> + echo "SKIP: expected driver $expected for $dev, got $driver_name instead"
>> + exit $ksft_skip
>> + fi
>> +}
>>
>> if [[ "$CHECK_TC" = "yes" ]]; then
>> check_tc_version
>> --
>> 2.44.0
>>
>>
Powered by blists - more mailing lists