]> git.kernelconcepts.de Git - karo-tx-linux.git/blobdiff - net/ipv4/ipmr.c
Merge remote-tracking branch 'remotes/stable/linux-4.4.y' into karo-tx6-mainline
[karo-tx-linux.git] / net / ipv4 / ipmr.c
index c3a38353f5dc8094de5c1dcec06ae54ab0b29a9e..9d1e555496e35fa878cb61491336391b93c5183f 100644 (file)
@@ -882,8 +882,10 @@ static struct mfc_cache *ipmr_cache_alloc(void)
 {
        struct mfc_cache *c = kmem_cache_zalloc(mrt_cachep, GFP_KERNEL);
 
-       if (c)
+       if (c) {
+               c->mfc_un.res.last_assert = jiffies - MFC_ASSERT_THRESH - 1;
                c->mfc_un.res.minvif = MAXVIFS;
+       }
        return c;
 }