Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 0ac84752 authored by David S. Miller's avatar David S. Miller
Browse files

[XFRM]: Make sure xfrm_replay_timer_handler() is declared early enough.

parent 8c29bfe1
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -179,6 +179,8 @@ static void xfrm_timer_handler(unsigned long data)
	xfrm_state_put(x);
}

static void xfrm_replay_timer_handler(unsigned long data);

struct xfrm_state *xfrm_state_alloc(void)
{
	struct xfrm_state *x;
@@ -815,11 +817,9 @@ void xfrm_replay_notify(struct xfrm_state *x, int event)
	c.data.aevent = event;
	km_state_notify(x, &c);

resched:
	if (x->replay_maxage &&
	    !mod_timer(&x->rtimer, jiffies + x->replay_maxage))
		xfrm_state_hold(x);

}

static void xfrm_replay_timer_handler(unsigned long data)