X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=net%2Fnetfilter%2Fxt_IDLETIMER.c;h=f407ebc13481ae5caa0f634db643d034c7af7e6a;hb=85ac7ca5972d63d23aa5ea75c3834a33b951f89d;hp=3bdd443aaf154d7946abdd802bd080df4e2c8fad;hpb=2ff55e98d6e662a4887d2c688a4ab2ae510a97df;p=deliverable%2Flinux.git diff --git a/net/netfilter/xt_IDLETIMER.c b/net/netfilter/xt_IDLETIMER.c index 3bdd443aaf15..f407ebc13481 100644 --- a/net/netfilter/xt_IDLETIMER.c +++ b/net/netfilter/xt_IDLETIMER.c @@ -122,14 +122,12 @@ static int idletimer_tg_create(struct idletimer_tg_info *info) info->timer = kmalloc(sizeof(*info->timer), GFP_KERNEL); if (!info->timer) { - pr_debug("couldn't alloc timer\n"); ret = -ENOMEM; goto out; } info->timer->attr.attr.name = kstrdup(info->label, GFP_KERNEL); if (!info->timer->attr.attr.name) { - pr_debug("couldn't alloc attribute name\n"); ret = -ENOMEM; goto out_free_timer; }