tools: ynl: fix build of the page-pool sample
authorJakub Kicinski <kuba@kernel.org>
Wed, 29 Nov 2023 19:36:19 +0000 (11:36 -0800)
committerJakub Kicinski <kuba@kernel.org>
Thu, 30 Nov 2023 00:07:00 +0000 (16:07 -0800)
The name of the "destroyed" field in the reply was not changed
in the sample after we started calling it "detach_time".

page-pool.c: In function ‘main’:
page-pool.c:84:33: error: ‘struct <anonymous>’ has no member named ‘destroyed’
   84 |                 if (pp->_present.destroyed)
      |                                 ^

Fixes: 637567e4a3ef ("tools: ynl: add sample for getting page-pool information")
Link: https://lore.kernel.org/r/20231129193622.2912353-2-kuba@kernel.org
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
tools/net/ynl/samples/page-pool.c

index 18d359713469f4375905a4043e6cae1e15cc6e31..098b5190d0e5bec1a398f5873601ca5a0794c8ab 100644 (file)
@@ -81,7 +81,7 @@ int main(int argc, char **argv)
                struct stat *s = find_ifc(&a, pp->ifindex);
 
                count(s, 1, pp);
-               if (pp->_present.destroyed)
+               if (pp->_present.detach_time)
                        count(s, 0, pp);
        }
        netdev_page_pool_get_list_free(pools);