From: Phillip Potter <phil@philpotter.co.uk>
To: ooo@electrozaur.com
Cc: amir73il@gmail.com, viro@zeniv.linux.org.uk,
linux-fsdevel@vger.kernel.org
Subject: [RFC][PATCH v3 05/10] exofs: use common file type conversion
Date: Sat, 27 Oct 2018 01:53:38 +0100 [thread overview]
Message-ID: <20181027005338.GA9961@pathfinder> (raw)
Deduplicate the exofs file type conversion 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/exofs/dir.c | 48 ++++++++++++++++--------------------------------
1 file changed, 16 insertions(+), 32 deletions(-)
diff --git a/fs/exofs/dir.c b/fs/exofs/dir.c
index f0138674c1ed..7d0550d2bd4a 100644
--- a/fs/exofs/dir.c
+++ b/fs/exofs/dir.c
@@ -204,33 +204,24 @@ exofs_validate_entry(char *base, unsigned offset, unsigned mask)
return (char *)p - base;
}
-static unsigned char exofs_filetype_table[EXOFS_FT_MAX] = {
- [EXOFS_FT_UNKNOWN] = DT_UNKNOWN,
- [EXOFS_FT_REG_FILE] = DT_REG,
- [EXOFS_FT_DIR] = DT_DIR,
- [EXOFS_FT_CHRDEV] = DT_CHR,
- [EXOFS_FT_BLKDEV] = DT_BLK,
- [EXOFS_FT_FIFO] = DT_FIFO,
- [EXOFS_FT_SOCK] = DT_SOCK,
- [EXOFS_FT_SYMLINK] = DT_LNK,
-};
-
-#define S_SHIFT 12
-static unsigned char exofs_type_by_mode[S_IFMT >> S_SHIFT] = {
- [S_IFREG >> S_SHIFT] = EXOFS_FT_REG_FILE,
- [S_IFDIR >> S_SHIFT] = EXOFS_FT_DIR,
- [S_IFCHR >> S_SHIFT] = EXOFS_FT_CHRDEV,
- [S_IFBLK >> S_SHIFT] = EXOFS_FT_BLKDEV,
- [S_IFIFO >> S_SHIFT] = EXOFS_FT_FIFO,
- [S_IFSOCK >> S_SHIFT] = EXOFS_FT_SOCK,
- [S_IFLNK >> S_SHIFT] = EXOFS_FT_SYMLINK,
-};
-
static inline
void exofs_set_de_type(struct exofs_dir_entry *de, struct inode *inode)
{
- umode_t mode = inode->i_mode;
- de->file_type = exofs_type_by_mode[(mode & S_IFMT) >> S_SHIFT];
+ /*
+ * compile-time asserts that generic FT_x types still match
+ * EXOFS_FT_x types
+ */
+ BUILD_BUG_ON(EXOFS_FT_UNKNOWN != FT_UNKNOWN);
+ BUILD_BUG_ON(EXOFS_FT_REG_FILE != FT_REG_FILE);
+ BUILD_BUG_ON(EXOFS_FT_DIR != FT_DIR);
+ BUILD_BUG_ON(EXOFS_FT_CHRDEV != FT_CHRDEV);
+ BUILD_BUG_ON(EXOFS_FT_BLKDEV != FT_BLKDEV);
+ BUILD_BUG_ON(EXOFS_FT_FIFO != FT_FIFO);
+ BUILD_BUG_ON(EXOFS_FT_SOCK != FT_SOCK);
+ BUILD_BUG_ON(EXOFS_FT_SYMLINK != FT_SYMLINK);
+ BUILD_BUG_ON(EXOFS_FT_MAX != FT_MAX);
+
+ de->file_type = fs_umode_to_ftype(inode->i_mode);
}
static int
@@ -280,16 +271,9 @@ exofs_readdir(struct file *file, struct dir_context *ctx)
return -EIO;
}
if (de->inode_no) {
- unsigned char t;
-
- if (de->file_type < EXOFS_FT_MAX)
- t = exofs_filetype_table[de->file_type];
- else
- t = DT_UNKNOWN;
-
if (!dir_emit(ctx, de->name, de->name_len,
le64_to_cpu(de->inode_no),
- t)) {
+ fs_ftype_to_dtype(de->file_type))) {
exofs_put_page(page);
return 0;
}
--
2.17.2
next reply other threads:[~2018-10-27 9:32 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-10-27 0:53 Phillip Potter [this message]
2018-11-01 2:09 ` [RFC][PATCH v3 05/10] exofs: use common file type conversion Boaz Harrosh
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=20181027005338.GA9961@pathfinder \
--to=phil@philpotter.co.uk \
--cc=amir73il@gmail.com \
--cc=linux-fsdevel@vger.kernel.org \
--cc=ooo@electrozaur.com \
--cc=viro@zeniv.linux.org.uk \
/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 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.