[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <1389344869.24222.31.camel@joe-AO722>
Date: Fri, 10 Jan 2014 01:07:49 -0800
From: Joe Perches <joe@...ches.com>
To: Jeff Kirsher <jeffrey.t.kirsher@...el.com>
Cc: davem@...emloft.net, Mitch Williams <mitch.a.williams@...el.com>,
netdev@...r.kernel.org, gospo@...hat.com, sassmann@...hat.com,
Jesse Brandeburg <jesse.brandeburg@...el.com>
Subject: Re: [net-next 05/16] i40e: fix long lines
On Fri, 2014-01-10 at 00:58 -0800, Jeff Kirsher wrote:
> From: Mitch Williams <mitch.a.williams@...el.com>
>
> Avoid over-length lines in order to appease checkpatch.
I think you can and should ignore long line warnings
where appropriate.
and...
> diff --git a/drivers/net/ethernet/intel/i40e/i40e_common.c b/drivers/net/ethernet/intel/i40e/i40e_common.c
[]
> @@ -681,7 +681,8 @@ aq_add_vsi_exit:
> * @cmd_details: pointer to command details structure or NULL
> **/
> i40e_status i40e_aq_set_vsi_unicast_promiscuous(struct i40e_hw *hw,
> - u16 seid, bool set, struct i40e_asq_cmd_details *cmd_details)
> + u16 seid, bool set,
> + struct i40e_asq_cmd_details *cmd_details)
Another way this could be changed is to put the
return value on a separate line like:
i40e_status
i40e_aq_set_vsi_unicast_promiscuous(struct i40e_hw *hw, u16 seid, bool set,
struct i40e_asq_cmd_details *cmd_details)
> diff --git a/drivers/net/ethernet/intel/i40e/i40e_prototype.h b/drivers/net/ethernet/intel/i40e/i40e_prototype.h
[]
> @@ -93,9 +93,9 @@ i40e_status i40e_aq_set_vsi_broadcast(struct i40e_hw *hw,
> u16 vsi_id, bool set_filter,
> struct i40e_asq_cmd_details *cmd_details);
> i40e_status i40e_aq_set_vsi_unicast_promiscuous(struct i40e_hw *hw,
> - u16 vsi_id, bool set, struct i40e_asq_cmd_details *cmd_details);
> + u16 vsi_id, bool set, struct i40e_asq_cmd_details *cmd_details);
i40e_status
i40e_aq_set_vsi_unicast_promiscuous(struct i40e_hw *hw, u16 vsi_id, bool set,
struct i40e_asq_cmd_details *cmd_details);
etc...
but once you use extremely long 35+ characters
function names, 80 columns gets a bit silly too.
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists