The patch titled isdn/gigaset: convert warning message has been added to the -mm tree. Its filename is isdn-gigaset-convert-dev_warn-to-warn.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: isdn/gigaset: convert warning message From: Tilman Schmidt <tilman@xxxxxxx> Make the failed-to-allocate-skb warning a non-debug message. Signed-off-by: Tilman Schmidt <tilman@xxxxxxx> Cc: Hansjoerg Lipp <hjlipp@xxxxxx> Cc: Karsten Keil <kkeil@xxxxxxx> Cc: Kai Germaschewski <kai.germaschewski@xxxxxx> Cc: Akinobu Mita <akinobu.mita@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- drivers/isdn/gigaset/common.c | 2 +- 1 files changed, 1 insertion(+), 1 deletion(-) diff -puN drivers/isdn/gigaset/common.c~isdn-gigaset-convert-dev_warn-to-warn drivers/isdn/gigaset/common.c --- a/drivers/isdn/gigaset/common.c~isdn-gigaset-convert-dev_warn-to-warn +++ a/drivers/isdn/gigaset/common.c @@ -616,7 +616,7 @@ static struct bc_state *gigaset_initbcs( } else if ((bcs->skb = dev_alloc_skb(SBUFSIZE + HW_HDR_LEN)) != NULL) skb_reserve(bcs->skb, HW_HDR_LEN); else { - gig_dbg(DEBUG_INIT, "could not allocate skb\n"); + warn("could not allocate skb\n"); bcs->inputstate |= INS_skip_frame; } _ Patches currently in -mm which might be from tilman@xxxxxxx are isdn-gigaset-convert-dev_warn-to-warn.patch isdn-gigaset-use-bitrev8.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html