Skip to content

Commit

Permalink
Merge branch 'bpf-samples-skb_mode-bug-fixes'
Browse files Browse the repository at this point in the history
Jesper Dangaard Brouer says:

====================
samples/bpf: two bug fixes to XDP_FLAGS_SKB_MODE attaching

Two small bugfixes for:
 commit 3993f2c ("samples/bpf: Add support for SKB_MODE to xdp1 and xdp_tx_iptunnel")
====================

Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
David S. Miller committed May 1, 2017
2 parents d74a32a + f76254a commit edd7f4e
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 11 deletions.
3 changes: 2 additions & 1 deletion samples/bpf/bpf_load.c
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
#include <linux/perf_event.h>
#include <linux/netlink.h>
#include <linux/rtnetlink.h>
#include <linux/types.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <sys/syscall.h>
Expand Down Expand Up @@ -585,7 +586,7 @@ struct ksym *ksym_search(long key)
return &syms[0];
}

int set_link_xdp_fd(int ifindex, int fd, int flags)
int set_link_xdp_fd(int ifindex, int fd, __u32 flags)
{
struct sockaddr_nl sa;
int sock, seq = 0, len, ret = -1;
Expand Down
2 changes: 1 addition & 1 deletion samples/bpf/bpf_load.h
Original file line number Diff line number Diff line change
Expand Up @@ -47,5 +47,5 @@ struct ksym {

int load_kallsyms(void);
struct ksym *ksym_search(long key);
int set_link_xdp_fd(int ifindex, int fd, int flags);
int set_link_xdp_fd(int ifindex, int fd, __u32 flags);
#endif
8 changes: 4 additions & 4 deletions samples/bpf/xdp1_user.c
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@
#include "libbpf.h"

static int ifindex;
static int flags;
static __u32 xdp_flags;

static void int_exit(int sig)
{
set_link_xdp_fd(ifindex, -1, flags);
set_link_xdp_fd(ifindex, -1, xdp_flags);
exit(0);
}

Expand Down Expand Up @@ -75,7 +75,7 @@ int main(int argc, char **argv)
while ((opt = getopt(argc, argv, optstr)) != -1) {
switch (opt) {
case 'S':
flags |= XDP_FLAGS_SKB_MODE;
xdp_flags |= XDP_FLAGS_SKB_MODE;
break;
default:
usage(basename(argv[0]));
Expand Down Expand Up @@ -103,7 +103,7 @@ int main(int argc, char **argv)

signal(SIGINT, int_exit);

if (set_link_xdp_fd(ifindex, prog_fd[0], flags) < 0) {
if (set_link_xdp_fd(ifindex, prog_fd[0], xdp_flags) < 0) {
printf("link set xdp fd failed\n");
return 1;
}
Expand Down
10 changes: 5 additions & 5 deletions samples/bpf/xdp_tx_iptunnel_user.c
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,12 @@
#define STATS_INTERVAL_S 2U

static int ifindex = -1;
static __u32 xdp_flags = 0;

static void int_exit(int sig)
{
if (ifindex > -1)
set_link_xdp_fd(ifindex, -1, 0);
set_link_xdp_fd(ifindex, -1, xdp_flags);
exit(0);
}

Expand Down Expand Up @@ -143,7 +144,6 @@ int main(int argc, char **argv)
struct rlimit r = {RLIM_INFINITY, RLIM_INFINITY};
struct vip vip = {};
char filename[256];
int flags = 0;
int opt;
int i;

Expand Down Expand Up @@ -204,7 +204,7 @@ int main(int argc, char **argv)
kill_after_s = atoi(optarg);
break;
case 'S':
flags |= XDP_FLAGS_SKB_MODE;
xdp_flags |= XDP_FLAGS_SKB_MODE;
break;
default:
usage(argv[0]);
Expand Down Expand Up @@ -248,14 +248,14 @@ int main(int argc, char **argv)
}
}

if (set_link_xdp_fd(ifindex, prog_fd[0], flags) < 0) {
if (set_link_xdp_fd(ifindex, prog_fd[0], xdp_flags) < 0) {
printf("link set xdp fd failed\n");
return 1;
}

poll_stats(kill_after_s);

set_link_xdp_fd(ifindex, -1, flags);
set_link_xdp_fd(ifindex, -1, xdp_flags);

return 0;
}

0 comments on commit edd7f4e

Please sign in to comment.