All of lore.kernel.org
 help / color / mirror / Atom feed
* [RFC][PATCH v3 03/10] hfsplus: use fs_umode_to_dtype() helper
@ 2018-10-27  0:53 Phillip Potter
  2018-10-29 22:17 ` Viacheslav Dubeyko
  0 siblings, 1 reply; 2+ messages in thread
From: Phillip Potter @ 2018-10-27  0:53 UTC (permalink / raw)
  To: linux-fsdevel; +Cc: amir73il, viro, slava

Replace if/else statements with common lookup table implementation - file
systems that use the same file types as defined by POSIX do not need to
define their own versions and can use the common helper functions decared
in fs_types.h and implemented in fs_types.c

Signed-off-by: Amir Goldstein <amir73il@gmail.com>
Signed-off-by: Phillip Potter <phil@philpotter.co.uk>
---
 fs/hfsplus/dir.c | 16 ++--------------
 1 file changed, 2 insertions(+), 14 deletions(-)

diff --git a/fs/hfsplus/dir.c b/fs/hfsplus/dir.c
index f37662675c3a..7b798a46c8ac 100644
--- a/fs/hfsplus/dir.c
+++ b/fs/hfsplus/dir.c
@@ -223,7 +223,6 @@ static int hfsplus_readdir(struct file *file, struct dir_context *ctx)
 				break;
 		} else if (type == HFSPLUS_FILE) {
 			u16 mode;
-			unsigned type = DT_UNKNOWN;
 
 			if (fd.entrylength < sizeof(struct hfsplus_cat_file)) {
 				pr_err("small file entry\n");
@@ -232,21 +231,10 @@ static int hfsplus_readdir(struct file *file, struct dir_context *ctx)
 			}
 
 			mode = be16_to_cpu(entry.file.permissions.mode);
-			if (S_ISREG(mode))
-				type = DT_REG;
-			else if (S_ISLNK(mode))
-				type = DT_LNK;
-			else if (S_ISFIFO(mode))
-				type = DT_FIFO;
-			else if (S_ISCHR(mode))
-				type = DT_CHR;
-			else if (S_ISBLK(mode))
-				type = DT_BLK;
-			else if (S_ISSOCK(mode))
-				type = DT_SOCK;
 
 			if (!dir_emit(ctx, strbuf, len,
-				      be32_to_cpu(entry.file.id), type))
+				      be32_to_cpu(entry.file.id),
+				      fs_umode_to_dtype(mode)))
 				break;
 		} else {
 			pr_err("bad catalog entry type\n");
-- 
2.17.2

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [RFC][PATCH v3 03/10] hfsplus: use fs_umode_to_dtype() helper
  2018-10-27  0:53 [RFC][PATCH v3 03/10] hfsplus: use fs_umode_to_dtype() helper Phillip Potter
@ 2018-10-29 22:17 ` Viacheslav Dubeyko
  0 siblings, 0 replies; 2+ messages in thread
From: Viacheslav Dubeyko @ 2018-10-29 22:17 UTC (permalink / raw)
  To: Phillip Potter; +Cc: linux-fsdevel, amir73il, viro

On Sat, 2018-10-27 at 01:53 +0100, Phillip Potter wrote:
> Replace if/else statements with common lookup table implementation - file
> systems that use the same file types as defined by POSIX do not need to
> define their own versions and can use the common helper functions decared
> in fs_types.h and implemented in fs_types.c
> 
> Signed-off-by: Amir Goldstein <amir73il@gmail.com>
> Signed-off-by: Phillip Potter <phil@philpotter.co.uk>
> ---
>  fs/hfsplus/dir.c | 16 ++--------------
>  1 file changed, 2 insertions(+), 14 deletions(-)
> 
> diff --git a/fs/hfsplus/dir.c b/fs/hfsplus/dir.c
> index f37662675c3a..7b798a46c8ac 100644
> --- a/fs/hfsplus/dir.c
> +++ b/fs/hfsplus/dir.c
> @@ -223,7 +223,6 @@ static int hfsplus_readdir(struct file *file, struct dir_context *ctx)
>  				break;
>  		} else if (type == HFSPLUS_FILE) {
>  			u16 mode;
> -			unsigned type = DT_UNKNOWN;
>  
>  			if (fd.entrylength < sizeof(struct hfsplus_cat_file)) {
>  				pr_err("small file entry\n");
> @@ -232,21 +231,10 @@ static int hfsplus_readdir(struct file *file, struct dir_context *ctx)
>  			}
>  
>  			mode = be16_to_cpu(entry.file.permissions.mode);
> -			if (S_ISREG(mode))
> -				type = DT_REG;
> -			else if (S_ISLNK(mode))
> -				type = DT_LNK;
> -			else if (S_ISFIFO(mode))
> -				type = DT_FIFO;
> -			else if (S_ISCHR(mode))
> -				type = DT_CHR;
> -			else if (S_ISBLK(mode))
> -				type = DT_BLK;
> -			else if (S_ISSOCK(mode))
> -				type = DT_SOCK;
>  
>  			if (!dir_emit(ctx, strbuf, len,
> -				      be32_to_cpu(entry.file.id), type))
> +				      be32_to_cpu(entry.file.id),
> +				      fs_umode_to_dtype(mode)))
>  				break;
>  		} else {
>  			pr_err("bad catalog entry type\n");

I don't see any difference with previous state. Looks good. Nice
cleanup.

Reviewed-by: Vyacheslav Dubeyko <slava@dubeyko.com>

Thanks,
Vyacheslav Dubeyko.

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2018-10-30  7:08 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-10-27  0:53 [RFC][PATCH v3 03/10] hfsplus: use fs_umode_to_dtype() helper Phillip Potter
2018-10-29 22:17 ` Viacheslav Dubeyko

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.