2020-01-21 08:50:34

by Alex Shi

[permalink] [raw]
Subject: [PATCH] fs/gfs2: remove IS_DINODE

After commit 1579343a73e3 ("GFS2: Remove dirent_first() function"), this
macro isn't used any more. so remove it.

Signed-off-by: Alex Shi <[email protected]>
Cc: Bob Peterson <[email protected]>
Cc: Andreas Gruenbacher <[email protected]>
Cc: [email protected]
Cc: [email protected]
---
fs/gfs2/dir.c | 1 -
1 file changed, 1 deletion(-)

diff --git a/fs/gfs2/dir.c b/fs/gfs2/dir.c
index eb9c0578978f..636a8d0f3dab 100644
--- a/fs/gfs2/dir.c
+++ b/fs/gfs2/dir.c
@@ -74,7 +74,6 @@
#include "util.h"

#define IS_LEAF 1 /* Hashed (leaf) directory */
-#define IS_DINODE 2 /* Linear (stuffed dinode block) directory */

#define MAX_RA_BLOCKS 32 /* max read-ahead blocks */

--
1.8.3.1


2020-01-21 10:24:58

by Andreas Grünbacher

[permalink] [raw]
Subject: Re: [PATCH] fs/gfs2: remove IS_DINODE

Alex,

Am Di., 21. Jan. 2020 um 09:50 Uhr schrieb Alex Shi
<[email protected]>:
> After commit 1579343a73e3 ("GFS2: Remove dirent_first() function"), this
> macro isn't used any more. so remove it.
>
> Signed-off-by: Alex Shi <[email protected]>
> Cc: Bob Peterson <[email protected]>
> Cc: Andreas Gruenbacher <[email protected]>
> Cc: [email protected]
> Cc: [email protected]
> ---
> fs/gfs2/dir.c | 1 -
> 1 file changed, 1 deletion(-)
>
> diff --git a/fs/gfs2/dir.c b/fs/gfs2/dir.c
> index eb9c0578978f..636a8d0f3dab 100644
> --- a/fs/gfs2/dir.c
> +++ b/fs/gfs2/dir.c
> @@ -74,7 +74,6 @@
> #include "util.h"
>
> #define IS_LEAF 1 /* Hashed (leaf) directory */
> -#define IS_DINODE 2 /* Linear (stuffed dinode block) directory */

The same is true for the IS_LEAF macro. I'm adjusting the patch accordingly.

The other patch removing the LBIT macros looks good as well, so I'm
applying both.

Thanks,
Andreas

2020-01-21 10:30:27

by Alex Shi

[permalink] [raw]
Subject: Re: [PATCH] fs/gfs2: remove IS_DINODE



在 2020/1/21 下午6:23, Andreas Grünbacher 写道:
> Alex,
>
> Am Di., 21. Jan. 2020 um 09:50 Uhr schrieb Alex Shi
> <[email protected]>:
>> After commit 1579343a73e3 ("GFS2: Remove dirent_first() function"), this
>> macro isn't used any more. so remove it.
>>
>> Signed-off-by: Alex Shi <[email protected]>
>> Cc: Bob Peterson <[email protected]>
>> Cc: Andreas Gruenbacher <[email protected]>
>> Cc: [email protected]
>> Cc: [email protected]
>> ---
>> fs/gfs2/dir.c | 1 -
>> 1 file changed, 1 deletion(-)
>>
>> diff --git a/fs/gfs2/dir.c b/fs/gfs2/dir.c
>> index eb9c0578978f..636a8d0f3dab 100644
>> --- a/fs/gfs2/dir.c
>> +++ b/fs/gfs2/dir.c
>> @@ -74,7 +74,6 @@
>> #include "util.h"
>>
>> #define IS_LEAF 1 /* Hashed (leaf) directory */
>> -#define IS_DINODE 2 /* Linear (stuffed dinode block) directory */
>
> The same is true for the IS_LEAF macro. I'm adjusting the patch accordingly.
>

I oversee this. Sorry.

> The other patch removing the LBIT macros looks good as well, so I'm
> applying both.

Thanks a lot!
Alex