浏览代码

samples/bpf: fix warnings in xdp_monitor_user

Make local functions static to fix

  HOSTCC  samples/bpf/xdp_monitor_user.o
samples/bpf/xdp_monitor_user.c:64:7: warning: no previous prototype for ‘gettime’ [-Wmissing-prototypes]
 __u64 gettime(void)
       ^~~~~~~
samples/bpf/xdp_monitor_user.c:209:6: warning: no previous prototype for ‘print_bpf_prog_info’ [-Wmissing-prototypes]
 void print_bpf_prog_info(void)
      ^~~~~~~~~~~~~~~~~~~
Fixes: 3ffab5460264 ("samples/bpf: xdp_monitor tool based on tracepoints")
Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>
Acked-by: Alexei Starovoitov <ast@kernel.org>
Acked-by: Jesper Dangaard Brouer <brouer@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Stephen Hemminger 7 年之前
父节点
当前提交
0929567a7a
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      samples/bpf/xdp_monitor_user.c

+ 2 - 2
samples/bpf/xdp_monitor_user.c

@@ -61,7 +61,7 @@ static void usage(char *argv[])
 }
 }
 
 
 #define NANOSEC_PER_SEC 1000000000 /* 10^9 */
 #define NANOSEC_PER_SEC 1000000000 /* 10^9 */
-__u64 gettime(void)
+static __u64 gettime(void)
 {
 {
 	struct timespec t;
 	struct timespec t;
 	int res;
 	int res;
@@ -206,7 +206,7 @@ static void stats_poll(int interval, bool err_only)
 	}
 	}
 }
 }
 
 
-void print_bpf_prog_info(void)
+static void print_bpf_prog_info(void)
 {
 {
 	int i;
 	int i;