From: Deepak R Varma <drv@mailo.com>
To: Julia Lawall <julia.lawall@inria.fr>
Cc: outreachy@lists.linux.dev, Larry.Finger@lwfinger.net,
phil@philpotter.co.uk, paskripkin@gmail.com,
gregkh@linuxfoundation.org, linux-staging@lists.linux.dev,
linux-kernel@vger.kernel.org, kumarpraveen@linux.microsoft.com,
saurabh.truth@gmail.com
Subject: Re: [PATCH 1/4] staging: r8188eu: use Linux kernel variable naming convention
Date: Mon, 17 Oct 2022 19:42:02 +0530 [thread overview]
Message-ID: <Y01ismOuC6gj3xt1@debian-BULLSEYE-live-builder-AMD64> (raw)
In-Reply-To: <alpine.DEB.2.22.394.2210171554470.16433@hadrien>
On Mon, Oct 17, 2022 at 03:56:02PM +0200, Julia Lawall wrote:
>
>
> On Mon, 17 Oct 2022, Deepak R Varma wrote:
>
> > Follow Linux Kernel coding style variable naming convention instead of using
>
> Follow -> Follow the
>
> > camelCase style. Address following checkpatch script complaints:
>
> Address following -> Address the following
>
> > CHECK: Avoid CamelCase: <tagLen>
> > CHECK: Avoid CamelCase: <tagType>
> > CHECK: Avoid CamelCase: <networkAddr>
> > CHECK: Avoid CamelCase: <ipAddr>
> > CHECK: Avoid CamelCase: <macAddr>
>
> Copy pasting the checkpatch output doesn't really need necessary. You
> could just say This affects the variables bla, bla', bla'', etc.
Sounds good. I will include the suggestions in next version.
Thank you Julia.
./drv
>
> julia
>
> > Signed-off-by: Deepak R Varma <drv@mailo.com>
> > ---
> > drivers/staging/r8188eu/core/rtw_br_ext.c | 112 +++++++++++-----------
> > 1 file changed, 56 insertions(+), 56 deletions(-)
> >
> > diff --git a/drivers/staging/r8188eu/core/rtw_br_ext.c b/drivers/staging/r8188eu/core/rtw_br_ext.c
> > index 4c5f30792a46..79daf8f269d6 100644
> > --- a/drivers/staging/r8188eu/core/rtw_br_ext.c
> > +++ b/drivers/staging/r8188eu/core/rtw_br_ext.c
> > @@ -50,17 +50,17 @@
> > static unsigned char *__nat25_find_pppoe_tag(struct pppoe_hdr *ph, unsigned short type)
> > {
> > unsigned char *cur_ptr, *start_ptr;
> > - unsigned short tagLen, tagType;
> > + unsigned short tag_len, tag_type;
> >
> > start_ptr = (unsigned char *)ph->tag;
> > cur_ptr = (unsigned char *)ph->tag;
> > while ((cur_ptr - start_ptr) < ntohs(ph->length)) {
> > /* prevent un-alignment access */
> > - tagType = (unsigned short)((cur_ptr[0] << 8) + cur_ptr[1]);
> > - tagLen = (unsigned short)((cur_ptr[2] << 8) + cur_ptr[3]);
> > - if (tagType == type)
> > + tag_type = (unsigned short)((cur_ptr[0] << 8) + cur_ptr[1]);
> > + tag_len = (unsigned short)((cur_ptr[2] << 8) + cur_ptr[3]);
> > + if (tag_type == type)
> > return cur_ptr;
> > - cur_ptr = cur_ptr + TAG_HDR_LEN + tagLen;
> > + cur_ptr = cur_ptr + TAG_HDR_LEN + tag_len;
> > }
> > return NULL;
> > }
> > @@ -111,32 +111,32 @@ static int __nat25_has_expired(struct nat25_network_db_entry *fdb)
> > return 0;
> > }
> >
> > -static void __nat25_generate_ipv4_network_addr(unsigned char *networkAddr,
> > - unsigned int *ipAddr)
> > +static void __nat25_generate_ipv4_network_addr(unsigned char *network_addr,
> > + unsigned int *ip_addr)
> > {
> > - memset(networkAddr, 0, MAX_NETWORK_ADDR_LEN);
> > + memset(network_addr, 0, MAX_NETWORK_ADDR_LEN);
> >
> > - networkAddr[0] = NAT25_IPV4;
> > - memcpy(networkAddr + 7, (unsigned char *)ipAddr, 4);
> > + network_addr[0] = NAT25_IPV4;
> > + memcpy(network_addr + 7, (unsigned char *)ip_addr, 4);
> > }
> >
> > -static void __nat25_generate_pppoe_network_addr(unsigned char *networkAddr,
> > +static void __nat25_generate_pppoe_network_addr(unsigned char *network_addr,
> > unsigned char *ac_mac, __be16 *sid)
> > {
> > - memset(networkAddr, 0, MAX_NETWORK_ADDR_LEN);
> > + memset(network_addr, 0, MAX_NETWORK_ADDR_LEN);
> >
> > - networkAddr[0] = NAT25_PPPOE;
> > - memcpy(networkAddr + 1, (unsigned char *)sid, 2);
> > - memcpy(networkAddr + 3, (unsigned char *)ac_mac, 6);
> > + network_addr[0] = NAT25_PPPOE;
> > + memcpy(network_addr + 1, (unsigned char *)sid, 2);
> > + memcpy(network_addr + 3, (unsigned char *)ac_mac, 6);
> > }
> >
> > -static void __nat25_generate_ipv6_network_addr(unsigned char *networkAddr,
> > - unsigned int *ipAddr)
> > +static void __nat25_generate_ipv6_network_addr(unsigned char *network_addr,
> > + unsigned int *ip_addr)
> > {
> > - memset(networkAddr, 0, MAX_NETWORK_ADDR_LEN);
> > + memset(network_addr, 0, MAX_NETWORK_ADDR_LEN);
> >
> > - networkAddr[0] = NAT25_IPV6;
> > - memcpy(networkAddr + 1, (unsigned char *)ipAddr, 16);
> > + network_addr[0] = NAT25_IPV6;
> > + memcpy(network_addr + 1, (unsigned char *)ip_addr, 16);
> > }
> >
> > static unsigned char *scan_tlv(unsigned char *data, int len, unsigned char tag, unsigned char len8b)
> > @@ -200,40 +200,40 @@ static int update_nd_link_layer_addr(unsigned char *data, int len, unsigned char
> > return 0;
> > }
> >
> > -static int __nat25_network_hash(unsigned char *networkAddr)
> > +static int __nat25_network_hash(unsigned char *network_addr)
> > {
> > - if (networkAddr[0] == NAT25_IPV4) {
> > + if (network_addr[0] == NAT25_IPV4) {
> > unsigned long x;
> >
> > - x = networkAddr[7] ^ networkAddr[8] ^ networkAddr[9] ^ networkAddr[10];
> > + x = network_addr[7] ^ network_addr[8] ^ network_addr[9] ^ network_addr[10];
> >
> > return x & (NAT25_HASH_SIZE - 1);
> > - } else if (networkAddr[0] == NAT25_IPX) {
> > + } else if (network_addr[0] == NAT25_IPX) {
> > unsigned long x;
> >
> > - x = networkAddr[1] ^ networkAddr[2] ^ networkAddr[3] ^ networkAddr[4] ^ networkAddr[5] ^
> > - networkAddr[6] ^ networkAddr[7] ^ networkAddr[8] ^ networkAddr[9] ^ networkAddr[10];
> > + x = network_addr[1] ^ network_addr[2] ^ network_addr[3] ^ network_addr[4] ^ network_addr[5] ^
> > + network_addr[6] ^ network_addr[7] ^ network_addr[8] ^ network_addr[9] ^ network_addr[10];
> >
> > return x & (NAT25_HASH_SIZE - 1);
> > - } else if (networkAddr[0] == NAT25_APPLE) {
> > + } else if (network_addr[0] == NAT25_APPLE) {
> > unsigned long x;
> >
> > - x = networkAddr[1] ^ networkAddr[2] ^ networkAddr[3];
> > + x = network_addr[1] ^ network_addr[2] ^ network_addr[3];
> >
> > return x & (NAT25_HASH_SIZE - 1);
> > - } else if (networkAddr[0] == NAT25_PPPOE) {
> > + } else if (network_addr[0] == NAT25_PPPOE) {
> > unsigned long x;
> >
> > - x = networkAddr[0] ^ networkAddr[1] ^ networkAddr[2] ^ networkAddr[3] ^ networkAddr[4] ^ networkAddr[5] ^ networkAddr[6] ^ networkAddr[7] ^ networkAddr[8];
> > + x = network_addr[0] ^ network_addr[1] ^ network_addr[2] ^ network_addr[3] ^ network_addr[4] ^ network_addr[5] ^ network_addr[6] ^ network_addr[7] ^ network_addr[8];
> >
> > return x & (NAT25_HASH_SIZE - 1);
> > - } else if (networkAddr[0] == NAT25_IPV6) {
> > + } else if (network_addr[0] == NAT25_IPV6) {
> > unsigned long x;
> >
> > - x = networkAddr[1] ^ networkAddr[2] ^ networkAddr[3] ^ networkAddr[4] ^ networkAddr[5] ^
> > - networkAddr[6] ^ networkAddr[7] ^ networkAddr[8] ^ networkAddr[9] ^ networkAddr[10] ^
> > - networkAddr[11] ^ networkAddr[12] ^ networkAddr[13] ^ networkAddr[14] ^ networkAddr[15] ^
> > - networkAddr[16];
> > + x = network_addr[1] ^ network_addr[2] ^ network_addr[3] ^ network_addr[4] ^ network_addr[5] ^
> > + network_addr[6] ^ network_addr[7] ^ network_addr[8] ^ network_addr[9] ^ network_addr[10] ^
> > + network_addr[11] ^ network_addr[12] ^ network_addr[13] ^ network_addr[14] ^ network_addr[15] ^
> > + network_addr[16];
> >
> > return x & (NAT25_HASH_SIZE - 1);
> > } else {
> > @@ -241,7 +241,7 @@ static int __nat25_network_hash(unsigned char *networkAddr)
> > int i;
> >
> > for (i = 0; i < MAX_NETWORK_ADDR_LEN; i++)
> > - x ^= networkAddr[i];
> > + x ^= network_addr[i];
> >
> > return x & (NAT25_HASH_SIZE - 1);
> > }
> > @@ -269,17 +269,17 @@ static void __network_hash_unlink(struct nat25_network_db_entry *ent)
> > }
> >
> > static void __nat25_db_network_insert(struct adapter *priv,
> > - unsigned char *macAddr, unsigned char *networkAddr)
> > + unsigned char *mac_addr, unsigned char *network_addr)
> > {
> > struct nat25_network_db_entry *db;
> > int hash;
> >
> > spin_lock_bh(&priv->br_ext_lock);
> > - hash = __nat25_network_hash(networkAddr);
> > + hash = __nat25_network_hash(network_addr);
> > db = priv->nethash[hash];
> > while (db) {
> > - if (!memcmp(db->networkAddr, networkAddr, MAX_NETWORK_ADDR_LEN)) {
> > - memcpy(db->macAddr, macAddr, ETH_ALEN);
> > + if (!memcmp(db->networkAddr, network_addr, MAX_NETWORK_ADDR_LEN)) {
> > + memcpy(db->macAddr, mac_addr, ETH_ALEN);
> > db->ageing_timer = jiffies;
> > spin_unlock_bh(&priv->br_ext_lock);
> > return;
> > @@ -291,8 +291,8 @@ static void __nat25_db_network_insert(struct adapter *priv,
> > spin_unlock_bh(&priv->br_ext_lock);
> > return;
> > }
> > - memcpy(db->networkAddr, networkAddr, MAX_NETWORK_ADDR_LEN);
> > - memcpy(db->macAddr, macAddr, ETH_ALEN);
> > + memcpy(db->networkAddr, network_addr, MAX_NETWORK_ADDR_LEN);
> > + memcpy(db->macAddr, mac_addr, ETH_ALEN);
> > atomic_set(&db->use_count, 1);
> > db->ageing_timer = jiffies;
> >
> > @@ -366,7 +366,7 @@ void nat25_db_expire(struct adapter *priv)
> > int nat25_db_handle(struct adapter *priv, struct sk_buff *skb, int method)
> > {
> > unsigned short protocol;
> > - unsigned char networkAddr[MAX_NETWORK_ADDR_LEN];
> > + unsigned char network_addr[MAX_NETWORK_ADDR_LEN];
> > unsigned int tmp;
> >
> > if (!skb)
> > @@ -395,9 +395,9 @@ int nat25_db_handle(struct adapter *priv, struct sk_buff *skb, int method)
> > if (iph->saddr == 0)
> > return 0;
> > tmp = be32_to_cpu(iph->saddr);
> > - __nat25_generate_ipv4_network_addr(networkAddr, &tmp);
> > + __nat25_generate_ipv4_network_addr(network_addr, &tmp);
> > /* record source IP address and , source mac address into db */
> > - __nat25_db_network_insert(priv, skb->data + ETH_ALEN, networkAddr);
> > + __nat25_db_network_insert(priv, skb->data + ETH_ALEN, network_addr);
> > return 0;
> > default:
> > return -1;
> > @@ -421,8 +421,8 @@ int nat25_db_handle(struct adapter *priv, struct sk_buff *skb, int method)
> > memcpy(arp_ptr, GET_MY_HWADDR(priv), ETH_ALEN);
> > arp_ptr += arp->ar_hln;
> > sender = (unsigned int *)arp_ptr;
> > - __nat25_generate_ipv4_network_addr(networkAddr, sender);
> > - __nat25_db_network_insert(priv, skb->data + ETH_ALEN, networkAddr);
> > + __nat25_generate_ipv4_network_addr(network_addr, sender);
> > + __nat25_db_network_insert(priv, skb->data + ETH_ALEN, network_addr);
> > return 0;
> > default:
> > return -1;
> > @@ -495,9 +495,9 @@ int nat25_db_handle(struct adapter *priv, struct sk_buff *skb, int method)
> > return -1;
> > }
> > } else { /* session phase */
> > - __nat25_generate_pppoe_network_addr(networkAddr, skb->data, &ph->sid);
> > + __nat25_generate_pppoe_network_addr(network_addr, skb->data, &ph->sid);
> >
> > - __nat25_db_network_insert(priv, skb->data + ETH_ALEN, networkAddr);
> > + __nat25_db_network_insert(priv, skb->data + ETH_ALEN, network_addr);
> >
> > if (!priv->ethBrExtInfo.addPPPoETag &&
> > priv->pppoe_connection_in_progress &&
> > @@ -548,8 +548,8 @@ int nat25_db_handle(struct adapter *priv, struct sk_buff *skb, int method)
> > return -1;
> > case NAT25_INSERT:
> > if (memcmp(&iph->saddr, "\x0\x0\x0\x0\x0\x0\x0\x0\x0\x0\x0\x0\x0\x0\x0\x0", 16)) {
> > - __nat25_generate_ipv6_network_addr(networkAddr, (unsigned int *)&iph->saddr);
> > - __nat25_db_network_insert(priv, skb->data + ETH_ALEN, networkAddr);
> > + __nat25_generate_ipv6_network_addr(network_addr, (unsigned int *)&iph->saddr);
> > + __nat25_db_network_insert(priv, skb->data + ETH_ALEN, network_addr);
> >
> > if (iph->nexthdr == IPPROTO_ICMPV6 &&
> > skb->len > (ETH_HLEN + sizeof(*iph) + 4)) {
> > @@ -639,17 +639,17 @@ void dhcp_flag_bcast(struct adapter *priv, struct sk_buff *skb)
> > }
> > }
> >
> > -void *scdb_findEntry(struct adapter *priv, unsigned char *ipAddr)
> > +void *scdb_findEntry(struct adapter *priv, unsigned char *ip_addr)
> > {
> > - unsigned char networkAddr[MAX_NETWORK_ADDR_LEN];
> > + unsigned char network_addr[MAX_NETWORK_ADDR_LEN];
> > struct nat25_network_db_entry *db;
> > int hash;
> >
> > - __nat25_generate_ipv4_network_addr(networkAddr, (unsigned int *)ipAddr);
> > - hash = __nat25_network_hash(networkAddr);
> > + __nat25_generate_ipv4_network_addr(network_addr, (unsigned int *)ip_addr);
> > + hash = __nat25_network_hash(network_addr);
> > db = priv->nethash[hash];
> > while (db) {
> > - if (!memcmp(db->networkAddr, networkAddr, MAX_NETWORK_ADDR_LEN)) {
> > + if (!memcmp(db->networkAddr, network_addr, MAX_NETWORK_ADDR_LEN)) {
> > return (void *)db;
> > }
> >
> > --
> > 2.30.2
> >
> >
> >
> >
> >
next prev parent reply other threads:[~2022-10-17 14:41 UTC|newest]
Thread overview: 23+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-10-17 13:20 [PATCH 0/4] staging: r8188eu: trivial code cleanup patches Deepak R Varma
2022-10-17 13:21 ` [PATCH 1/4] staging: r8188eu: use Linux kernel variable naming convention Deepak R Varma
2022-10-17 13:56 ` Julia Lawall
2022-10-17 14:12 ` Deepak R Varma [this message]
2022-10-17 13:23 ` [PATCH 3/4] staging: r8188eu: remove {} for single statement blocks Deepak R Varma
2022-10-17 13:57 ` Julia Lawall
2022-10-17 14:13 ` Deepak R Varma
2022-10-17 13:24 ` [PATCH 4/4] staging: r8188eu: use htons macro instead of __constant_htons Deepak R Varma
2022-10-19 6:08 ` Joe Perches
2022-10-19 9:27 ` Deepak R Varma
2022-11-05 15:00 ` Deepak R Varma
2022-10-17 13:26 ` [PATCH 2/4] staging: r8188eu: reformat long computation lines Deepak R Varma
2022-10-17 13:22 ` Deepak R Varma
2022-10-17 14:09 ` Greg KH
2022-10-17 14:10 ` Deepak R Varma
2022-10-17 14:52 ` Greg KH
2022-10-18 11:21 ` David Laight
2022-10-18 12:42 ` Deepak R Varma
2022-10-19 5:43 ` Joe Perches
2022-10-19 6:17 ` Deepak R Varma
2022-10-19 6:38 ` Joe Perches
2022-10-19 6:44 ` Deepak R Varma
2022-10-19 9:02 ` Deepak R Varma
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=Y01ismOuC6gj3xt1@debian-BULLSEYE-live-builder-AMD64 \
--to=drv@mailo.com \
--cc=Larry.Finger@lwfinger.net \
--cc=gregkh@linuxfoundation.org \
--cc=julia.lawall@inria.fr \
--cc=kumarpraveen@linux.microsoft.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-staging@lists.linux.dev \
--cc=outreachy@lists.linux.dev \
--cc=paskripkin@gmail.com \
--cc=phil@philpotter.co.uk \
--cc=saurabh.truth@gmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox