Skip to content

Commit

Permalink
Squash to "selftests/bpf: Add bpf scheduler test"
Browse files Browse the repository at this point in the history
Now ss_search() are only used by bpf_sched tests. It will be dropped
in next step.

Signed-off-by: Geliang Tang <[email protected]>
  • Loading branch information
Geliang Tang authored and intel-lab-lkp committed Sep 5, 2024
1 parent b21ff7b commit d4987cd
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions tools/testing/selftests/bpf/prog_tests/mptcp.c
Original file line number Diff line number Diff line change
Expand Up @@ -368,12 +368,6 @@ static int endpoint_init(char *flags)
return -1;
}

static int _ss_search(char *src, char *dst, char *port, char *keyword)
{
return SYS_NOFAIL("ip netns exec %s ss -enita src %s dst %s %s %d | grep -q '%s'",
NS_TEST, src, dst, port, PORT_1, keyword);
}

static void wait_for_new_subflows(int fd)
{
socklen_t len;
Expand Down Expand Up @@ -495,9 +489,15 @@ static struct nstoken *sched_init(char *flags, char *sched)
return NULL;
}

static int ss_search(char *src, char *dst, char *port, char *keyword)
{
return SYS_NOFAIL("ip netns exec %s ss -enita src %s dst %s %s %d | grep -q '%s'",
NS_TEST, src, dst, port, PORT_1, keyword);
}

static int has_bytes_sent(char *dst)
{
return _ss_search(ADDR_1, dst, "sport", "bytes_sent:");
return ss_search(ADDR_1, dst, "sport", "bytes_sent:");
}

static void send_data_and_verify(char *sched, bool addr1, bool addr2)
Expand Down

0 comments on commit d4987cd

Please sign in to comment.