Sabrina Dubroca <s...@queasysnail.net> wrote: > > case XFRM_REPLAY_MODE_BMP: > > xfrm_replay_notify_bmp(x, event); > > - return; > > + goto notify; > > case XFRM_REPLAY_MODE_ESN: > > xfrm_replay_notify_esn(x, event); > > - return; > > + goto notify; > > These two functions have some early returns that skip the > notification, but now the notification will be sent in all cases:
Right, I will rework this series. Thanks for pointing this out.