lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Date:   Thu, 27 May 2021 13:00:42 +0200
From:   Greg Kroah-Hartman <gregkh@...uxfoundation.org>
To:     Sean Gloumeau <sajgloumeau@...il.com>
Cc:     Forest Bond <forest@...ttletooquiet.net>,
        "Gustavo A . R . Silva" <gustavoars@...nel.org>,
        linux-staging@...ts.linux.dev, linux-kernel@...r.kernel.org
Subject: Re: [PATCH] staging: vt6655: key.c: Fix coding style issues

On Wed, May 26, 2021 at 10:03:09AM -0400, Sean Gloumeau wrote:
> The following changes were made to comply with the suggestions present
> in Documentation/process/coding-style.rst as a requirement for Task 10
> of the Eudyptula challenge.
> 
> Signed-off-by: Sean Gloumeau <sajgloumeau@...il.com>
> ---
>  drivers/staging/vt6655/key.c | 24 ++++++++++++------------
>  1 file changed, 12 insertions(+), 12 deletions(-)
> 
> diff --git a/drivers/staging/vt6655/key.c b/drivers/staging/vt6655/key.c
> index 94665ddc36a5..d1470ff55e06 100644
> --- a/drivers/staging/vt6655/key.c
> +++ b/drivers/staging/vt6655/key.c
> @@ -64,7 +64,7 @@ static int vnt_set_keymode(struct ieee80211_hw *hw, u8 *mac_addr,
>  		key_mode |= (mode << 4);
>  		key_mode |= VNT_KEY_GROUP;
>  		break;
> -	case  VNT_KEY_PAIRWISE:
> +	case VNT_KEY_PAIRWISE:
>  		key_mode |= mode;
>  		key_inx = 4;
>  		break;
> @@ -82,8 +82,8 @@ static int vnt_set_keymode(struct ieee80211_hw *hw, u8 *mac_addr,
>  			key->key[15] |= 0x80;
>  	}
>  
> -	MACvSetKeyEntry(priv, key_mode, entry, key_inx,
> -			bssid, (u32 *)key->key, priv->byLocalID);
> +	MACvSetKeyEntry(priv, key_mode, entry, key_inx, bssid, (u32 *)key->key,
> +			priv->byLocalID);
>  
>  	return 0;
>  }
> @@ -103,7 +103,7 @@ int vnt_set_keys(struct ieee80211_hw *hw, struct ieee80211_sta *sta,
>  
>  	switch (key->cipher) {
>  	case 0:
> -		for (u = 0 ; u < MAX_KEY_TABLE; u++)
> +		for (u = 0; u < MAX_KEY_TABLE; u++)
>  			MACvDisableKeyEntry(priv, u);
>  		return ret;
>  
> @@ -112,8 +112,8 @@ int vnt_set_keys(struct ieee80211_hw *hw, struct ieee80211_sta *sta,
>  		for (u = 0; u < MAX_KEY_TABLE; u++)
>  			MACvDisableKeyEntry(priv, u);
>  
> -		vnt_set_keymode(hw, mac_addr,
> -				key, VNT_KEY_DEFAULTKEY, KEY_CTL_WEP, true);
> +		vnt_set_keymode(hw, mac_addr, key, VNT_KEY_DEFAULTKEY,
> +				KEY_CTL_WEP, true);
>  
>  		key->flags |= IEEE80211_KEY_FLAG_GENERATE_IV;
>  
> @@ -132,14 +132,14 @@ int vnt_set_keys(struct ieee80211_hw *hw, struct ieee80211_sta *sta,
>  	}
>  
>  	if (key->flags & IEEE80211_KEY_FLAG_PAIRWISE) {
> -		vnt_set_keymode(hw, mac_addr,
> -				key, VNT_KEY_PAIRWISE, key_dec_mode, true);
> +		vnt_set_keymode(hw, mac_addr, key, VNT_KEY_PAIRWISE,
> +				key_dec_mode, true);
>  	} else {
> -		vnt_set_keymode(hw, mac_addr,
> -				key, VNT_KEY_DEFAULTKEY, key_dec_mode, true);
> +		vnt_set_keymode(hw, mac_addr, key, VNT_KEY_DEFAULTKEY,
> +				key_dec_mode, true);
>  
> -		vnt_set_keymode(hw, (u8 *)conf->bssid,
> -				key, VNT_KEY_GROUP_ADDRESS, key_dec_mode, true);
> +		vnt_set_keymode(hw, (u8 *)conf->bssid, key,
> +				VNT_KEY_GROUP_ADDRESS, key_dec_mode, true);
>  	}
>  
>  	return 0;
> -- 
> 2.31.1
> 
> 

Hi,

This is the friendly patch-bot of Greg Kroah-Hartman.  You have sent him
a patch that has triggered this response.  He used to manually respond
to these common problems, but in order to save his sanity (he kept
writing the same thing over and over, yet to different people), I was
created.  Hopefully you will not take offence and will fix the problem
in your patch and resubmit it so that it can be accepted into the Linux
kernel tree.

You are receiving this message because of the following common error(s)
as indicated below:

- Your patch did many different things all at once, making it difficult
  to review.  All Linux kernel patches need to only do one thing at a
  time.  If you need to do multiple things (such as clean up all coding
  style issues in a file/driver), do it in a sequence of patches, each
  one doing only one thing.  This will make it easier to review the
  patches to ensure that they are correct, and to help alleviate any
  merge issues that larger patches can cause.

- You did not specify a description of why the patch is needed, or
  possibly, any description at all, in the email body.  Please read the
  section entitled "The canonical patch format" in the kernel file,
  Documentation/SubmittingPatches for what is needed in order to
  properly describe the change.

- You did not write a descriptive Subject: for the patch, allowing Greg,
  and everyone else, to know what this patch is all about.  Please read
  the section entitled "The canonical patch format" in the kernel file,
  Documentation/SubmittingPatches for what a proper Subject: line should
  look like.

If you wish to discuss this problem further, or you have questions about
how to resolve this issue, please feel free to respond to this email and
Greg will reply once he has dug out from the pending patches received
from other developers.

thanks,

greg k-h's patch email bot

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ