lkml.org 
[lkml]   [2011]   [Aug]   [29]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    Patch in this message
    /
    From
    Subject[PATCH 09/24] decnet: Remove unnecessary OOM logging messages
    Date
    Removing unnecessary messages saves code and text.

    Site specific OOM messages are duplications of a generic MM
    out of memory message and aren't really useful, so just
    delete them.

    Signed-off-by: Joe Perches <joe@perches.com>
    ---
    net/decnet/dn_neigh.c | 6 ------
    1 files changed, 0 insertions(+), 6 deletions(-)

    diff --git a/net/decnet/dn_neigh.c b/net/decnet/dn_neigh.c
    index 7f0eb08..0889870 100644
    --- a/net/decnet/dn_neigh.c
    +++ b/net/decnet/dn_neigh.c
    @@ -230,8 +230,6 @@ static int dn_long_output(struct neighbour *neigh, struct sk_buff *skb)
    if (skb_headroom(skb) < headroom) {
    struct sk_buff *skb2 = skb_realloc_headroom(skb, headroom);
    if (skb2 == NULL) {
    - if (net_ratelimit())
    - printk(KERN_CRIT "dn_long_output: no memory\n");
    kfree_skb(skb);
    return -ENOBUFS;
    }
    @@ -275,8 +273,6 @@ static int dn_short_output(struct neighbour *neigh, struct sk_buff *skb)
    if (skb_headroom(skb) < headroom) {
    struct sk_buff *skb2 = skb_realloc_headroom(skb, headroom);
    if (skb2 == NULL) {
    - if (net_ratelimit())
    - printk(KERN_CRIT "dn_short_output: no memory\n");
    kfree_skb(skb);
    return -ENOBUFS;
    }
    @@ -316,8 +312,6 @@ static int dn_phase3_output(struct neighbour *neigh, struct sk_buff *skb)
    if (skb_headroom(skb) < headroom) {
    struct sk_buff *skb2 = skb_realloc_headroom(skb, headroom);
    if (skb2 == NULL) {
    - if (net_ratelimit())
    - printk(KERN_CRIT "dn_phase3_output: no memory\n");
    kfree_skb(skb);
    return -ENOBUFS;
    }
    --
    1.7.6.405.gc1be0


    \
     
     \ /
      Last update: 2011-08-29 23:23    [W:6.198 / U:0.008 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site