Hello Basti,

Cc += Joe Perches

On Wed, Sep 30, 2015 at 05:00:31PM +0200, Bastian Stender wrote:
> Replace printk calls with preferred unconditional log method calls to keep
> kernel messages clean.
> 
> Signed-off-by: Bastian Stender <b...@pengutronix.de>
> ---
>  net/ipv4/ipconfig.c                            |  77 +++++-------
>  net/ipv4/netfilter/arp_tables.c                | 165 
> +++++++++++--------------
>  net/ipv4/netfilter/nf_conntrack_l3proto_ipv4.c |   2 +-
>  net/ipv4/netfilter/nf_nat_snmp_basic.c         |  31 +++--
>  4 files changed, 122 insertions(+), 153 deletions(-)
> 
> diff --git a/net/ipv4/ipconfig.c b/net/ipv4/ipconfig.c
> index ed4ef09..50ec7c6 100644
> --- a/net/ipv4/ipconfig.c
> +++ b/net/ipv4/ipconfig.c
> [...]
> @@ -857,12 +848,12 @@ static void __init ic_bootp_send_if(struct ic_device 
> *d, unsigned long jiffies_d
>       if (dev_hard_header(skb, dev, ntohs(skb->protocol),
>                           dev->broadcast, dev->dev_addr, skb->len) < 0) {
>               kfree_skb(skb);
> -             printk("E");
> +             pr_alert("E\n");
>               return;
>       }
>  
>       if (dev_queue_xmit(skb) < 0)
> -             printk("E");
> +             pr_alert("E\n");

I'm not sure about this change. If after

        printk("E");
        printk("E");

both E are on the same line I'd say switching to pr_alert and adding \n
is bad. I don't know off-hand if that's the case, maybe Joe does?

> [...]
> diff --git a/net/ipv4/netfilter/nf_nat_snmp_basic.c 
> b/net/ipv4/netfilter/nf_nat_snmp_basic.c
> index 7c67667..78f63f5 100644
> --- a/net/ipv4/netfilter/nf_nat_snmp_basic.c
> +++ b/net/ipv4/netfilter/nf_nat_snmp_basic.c
> @@ -915,8 +915,7 @@ static inline void mangle_address(unsigned char *begin,
>               }
>  
>               if (debug)
> -                     printk(KERN_DEBUG "bsalg: mapped %pI4 to %pI4\n",
> -                            &old, addr);
> +                     pr_debug("bsalg: mapped %pI4 to %pI4\n", &old, addr);

This is also a change in behaviour. The removed line results in the
message making it into the kernel log buffer unconditionally (though
probably not on the console). The newly added line is a noop however
unless DEBUG is defined. This doesn't mean the change is bad, but at
least it's not in the scope for a trivial cleanup patch that just
converts existing code to the modern way with no intend to change
behaviour.

Best regards
Uwe

-- 
Pengutronix e.K.                           | Uwe Kleine-König            |
Industrial Linux Solutions                 | http://www.pengutronix.de/  |
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to