Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1435796

Re: [PATCH 2/4] fs: befs: Coding style fix

From Luis de Bethencourt <luisbg@osg.samsung.com>
Newsgroups linux.kernel
Subject Re: [PATCH 2/4] fs: befs: Coding style fix
Date 2016-07-02 13:30 +0200
Message-ID <rQrhv-2YC-13@gated-at.bofh.it> (permalink)
References <rQo9X-14M-1@gated-at.bofh.it> <rQo9Y-14M-11@gated-at.bofh.it>
Organization linux.* mail to news gateway

Show all headers | View raw


On 02/07/16 09:05, Salah Triki wrote:
> Constant has to be capitalized.
> 
> Signed-off-by: Salah Triki <salah.triki@gmail.com>
> ---
>  fs/befs/btree.c | 6 +++---
>  1 file changed, 3 insertions(+), 3 deletions(-)
> 
> diff --git a/fs/befs/btree.c b/fs/befs/btree.c
> index 307645f9..e59ad20 100644
> --- a/fs/befs/btree.c
> +++ b/fs/befs/btree.c
> @@ -85,7 +85,7 @@ struct befs_btree_node {
>  };
>  
>  /* local constants */
> -static const befs_off_t befs_bt_inval = 0xffffffffffffffffULL;
> +static const befs_off_t BEFS_BT_INVAL = 0xffffffffffffffffULL;
>  
>  /* local functions */
>  static int befs_btree_seekleaf(struct super_block *sb, const befs_data_stream *ds,
> @@ -467,7 +467,7 @@ befs_btree_read(struct super_block *sb, const befs_data_stream *ds,
>  	while (key_sum + this_node->head.all_key_count <= key_no) {
>  
>  		/* no more nodes to look in: key_no is too large */
> -		if (this_node->head.right == befs_bt_inval) {
> +		if (this_node->head.right == BEFS_BT_INVAL) {
>  			*keysize = 0;
>  			*value = 0;
>  			befs_debug(sb,
> @@ -608,7 +608,7 @@ static int
>  befs_leafnode(struct befs_btree_node *node)
>  {
>  	/* all interior nodes (and only interior nodes) have an overflow node */
> -	if (node->head.overflow == befs_bt_inval)
> +	if (node->head.overflow == BEFS_BT_INVAL)
>  		return 1;
>  	else
>  		return 0;
> 

Hi Salah,

What the coding style says is:
"Names of macros defining constants and labels in enums are capitalized."

Even though this isn't a macro, when reading the code it is good to know it is
almost like one. I agree this makes the code more readable.

Acked-by: Luis de Bethencourt <luisbg@osg.samsung.com>

Thanks,
Luis

Back to linux.kernel | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


Thread

[PATCH 1/4] fs: befs: Remove redundant validation from befs_find_brun_direct Salah Triki <salah.triki@gmail.com> - 2016-07-02 10:10 +0200
  [PATCH 3/4] fs: befs: Remove useless calls to brelse in befs_find_brun_dblindirect Salah Triki <salah.triki@gmail.com> - 2016-07-02 10:10 +0200
    Re: [PATCH 3/4] fs: befs: Remove useless calls to brelse in befs_find_brun_dblindirect Luis de Bethencourt <luisbg@osg.samsung.com> - 2016-07-02 14:00 +0200
  [PATCH 2/4] fs: befs: Coding style fix Salah Triki <salah.triki@gmail.com> - 2016-07-02 10:10 +0200
    Re: [PATCH 2/4] fs: befs: Coding style fix Luis de Bethencourt <luisbg@osg.samsung.com> - 2016-07-02 13:30 +0200
  [PATCH 4/4] fs: befs: Remove goto from befs_bread_iaddr Salah Triki <salah.triki@gmail.com> - 2016-07-02 10:10 +0200
    Re: [PATCH 4/4] fs: befs: Remove goto from befs_bread_iaddr Luis de Bethencourt <luisbg@osg.samsung.com> - 2016-07-02 14:10 +0200
  Re: [PATCH 1/4] fs: befs: Remove redundant validation from befs_find_brun_direct Luis de Bethencourt <luisbg@osg.samsung.com> - 2016-07-02 13:40 +0200
    Re: [PATCH 1/4] fs: befs: Remove redundant validation from  befs_find_brun_direct Salah Triki <salah.triki@acm.org> - 2016-07-02 16:00 +0200
      Re: [PATCH 1/4] fs: befs: Remove redundant validation from befs_find_brun_direct Luis de Bethencourt <luisbg@osg.samsung.com> - 2016-07-02 16:50 +0200

csiph-web