Re: [PATCH V6 2/8] fs: Remove unneeded IS_DAX() check

From: Ira Weiny
Date: Thu Apr 09 2020 - 10:57:50 EST


On Thu, Apr 09, 2020 at 09:31:34AM +0200, Christoph Hellwig wrote:
> On Tue, Apr 07, 2020 at 11:29:52AM -0700, ira.weiny@xxxxxxxxx wrote:
> > static inline bool io_is_direct(struct file *filp)
> > {
> > - return (filp->f_flags & O_DIRECT) || IS_DAX(filp->f_mapping->host);
> > + return (filp->f_flags & O_DIRECT);
> > }
>
> As requested last time: Can you please also just remove io_is_direct?

FWIW I just found this mail in my junk folder... My fault I know... :-/

Regardless I did not see that request last time but I can do that,

Done for V7
Ira