public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2 0/7] exfat: code optimizations
@ 2022-12-13  2:36 ` Yuezhang.Mo
  2022-12-13  6:06   ` Sungjong Seo
  2022-12-13 11:29   ` Namjae Jeon
  0 siblings, 2 replies; 3+ messages in thread
From: Yuezhang.Mo @ 2022-12-13  2:36 UTC (permalink / raw)
  To: sj1557.seo@samsung.com, linkinjeon@kernel.org
  Cc: linux-fsdevel@vger.kernel.org, linux-kernel@vger.kernel.org,
	Andy.Wu@sony.com, Wataru.Aoyama@sony.com

This patchset is some minor code optimizations, no functional changes.

Changes for v2:
  - [6/7] [7/7] Fix return value type of exfat_sector_to_cluster()

Yuezhang Mo (7):
  exfat: remove call ilog2() from exfat_readdir()
  exfat: remove unneeded codes from __exfat_rename()
  exfat: remove unnecessary arguments from exfat_find_dir_entry()
  exfat: remove argument 'size' from exfat_truncate()
  exfat: remove i_size_write() from __exfat_truncate()
  exfat: fix overflow in sector and cluster conversion
  exfat: reuse exfat_find_location() to simplify exfat_get_dentry_set()

 fs/exfat/dir.c      | 38 +++++++++++++++-----------------------
 fs/exfat/exfat_fs.h | 19 ++++++++++++-------
 fs/exfat/file.c     | 12 +++++-------
 fs/exfat/inode.c    |  4 ++--
 fs/exfat/namei.c    | 19 +++----------------
 5 files changed, 37 insertions(+), 55 deletions(-)

-- 
2.25.1

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

* RE: [PATCH v2 0/7] exfat: code optimizations
  2022-12-13  2:36 ` [PATCH v2 0/7] exfat: code optimizations Yuezhang.Mo
@ 2022-12-13  6:06   ` Sungjong Seo
  2022-12-13 11:29   ` Namjae Jeon
  1 sibling, 0 replies; 3+ messages in thread
From: Sungjong Seo @ 2022-12-13  6:06 UTC (permalink / raw)
  To: linkinjeon; +Cc: linux-fsdevel, linux-kernel, sj1557.seo

> This patchset is some minor code optimizations, no functional changes.
> 
> Changes for v2:
>   - [6/7] [7/7] Fix return value type of exfat_sector_to_cluster()

Looks good. Thanks.
Reviewed-by: Sungjong Seo <sj1557.seo@samsung.com>

> 
> Yuezhang Mo (7):
>   exfat: remove call ilog2() from exfat_readdir()
>   exfat: remove unneeded codes from __exfat_rename()
>   exfat: remove unnecessary arguments from exfat_find_dir_entry()
>   exfat: remove argument 'size' from exfat_truncate()
>   exfat: remove i_size_write() from __exfat_truncate()
>   exfat: fix overflow in sector and cluster conversion
>   exfat: reuse exfat_find_location() to simplify exfat_get_dentry_set()
> 
>  fs/exfat/dir.c      | 38 +++++++++++++++-----------------------
>  fs/exfat/exfat_fs.h | 19 ++++++++++++-------
>  fs/exfat/file.c     | 12 +++++-------
>  fs/exfat/inode.c    |  4 ++--
>  fs/exfat/namei.c    | 19 +++----------------
>  5 files changed, 37 insertions(+), 55 deletions(-)
> 
> --
> 2.25.1


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

* Re: [PATCH v2 0/7] exfat: code optimizations
  2022-12-13  2:36 ` [PATCH v2 0/7] exfat: code optimizations Yuezhang.Mo
  2022-12-13  6:06   ` Sungjong Seo
@ 2022-12-13 11:29   ` Namjae Jeon
  1 sibling, 0 replies; 3+ messages in thread
From: Namjae Jeon @ 2022-12-13 11:29 UTC (permalink / raw)
  To: Yuezhang.Mo@sony.com
  Cc: sj1557.seo@samsung.com, linux-fsdevel@vger.kernel.org,
	linux-kernel@vger.kernel.org, Andy.Wu@sony.com,
	Wataru.Aoyama@sony.com

2022-12-13 11:36 GMT+09:00, Yuezhang.Mo@sony.com <Yuezhang.Mo@sony.com>:
> This patchset is some minor code optimizations, no functional changes.
Applied, Thanks for your patches!
>
> Changes for v2:
>   - [6/7] [7/7] Fix return value type of exfat_sector_to_cluster()
>
> Yuezhang Mo (7):
>   exfat: remove call ilog2() from exfat_readdir()
>   exfat: remove unneeded codes from __exfat_rename()
>   exfat: remove unnecessary arguments from exfat_find_dir_entry()
>   exfat: remove argument 'size' from exfat_truncate()
>   exfat: remove i_size_write() from __exfat_truncate()
>   exfat: fix overflow in sector and cluster conversion
>   exfat: reuse exfat_find_location() to simplify exfat_get_dentry_set()
>
>  fs/exfat/dir.c      | 38 +++++++++++++++-----------------------
>  fs/exfat/exfat_fs.h | 19 ++++++++++++-------
>  fs/exfat/file.c     | 12 +++++-------
>  fs/exfat/inode.c    |  4 ++--
>  fs/exfat/namei.c    | 19 +++----------------
>  5 files changed, 37 insertions(+), 55 deletions(-)
>
> --
> 2.25.1
>

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

end of thread, other threads:[~2022-12-13 11:29 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <CGME20221213023709epcas1p2076929f25729ec924f96d191cd025de4@epcas1p2.samsung.com>
2022-12-13  2:36 ` [PATCH v2 0/7] exfat: code optimizations Yuezhang.Mo
2022-12-13  6:06   ` Sungjong Seo
2022-12-13 11:29   ` Namjae Jeon

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox