Re: [PATCH v2 3/9] exfat: add exfat_file_open()
From: Namjae Jeon
Date: Thu May 07 2026 - 19:38:26 EST
On Thu, May 7, 2026 at 10:52 PM CharSyam <charsyam@xxxxxxxxx> wrote:
>
> Hi, namjae.
>
> How about this? I think err is not needed.
>
> static int exfat_file_open(struct inode *inode, struct file *filp)
> {
> if (unlikely(exfat_forced_shutdown(inode->i_sb)))
> return -EIO;
>
> return generic_file_open(inode, filp);
> }
Okay, I will fix it in the next version.