From af5bfebcf366ebb86157f845b997ef561f13b17d Mon Sep 17 00:00:00 2001 From: Alexander Couzens Date: Sun, 17 Jan 2021 20:12:37 +0100 Subject: test: gprs_ns2: replace free_bind() with clear_pdus() free_bind() should free up all driver specific state but NOT the bind itself. As the only thing left is clearing the pdus rename the function to it. Change-Id: Iac506734c93aca8be045ac13788d07d1bdc78eb3 --- tests/gb/gprs_ns2_test.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'tests/gb') diff --git a/tests/gb/gprs_ns2_test.c b/tests/gb/gprs_ns2_test.c index 7c28dca6..4c47b6ab 100644 --- a/tests/gb/gprs_ns2_test.c +++ b/tests/gb/gprs_ns2_test.c @@ -44,15 +44,15 @@ static int ns_prim_cb(struct osmo_prim_hdr *oph, void *ctx) return 0; } -void free_bind(struct gprs_ns2_vc_bind *bind) +static void clear_pdus(struct gprs_ns2_vc_bind *bind) { - OSMO_ASSERT(bind); - talloc_free(bind); + struct osmo_wqueue *queue = bind->priv; + osmo_wqueue_clear(queue); } struct gprs_ns2_vc_driver vc_driver_dummy = { .name = "GB UDP dummy", - .free_bind = free_bind, + .free_bind = clear_pdus, }; static int vc_sendmsg(struct gprs_ns2_vc *nsvc, struct msgb *msg) -- cgit v1.2.3