lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Date:	Thu, 16 Oct 2014 17:44:10 -0400
From:	Matthew Wilcox <willy@...ux.intel.com>
To:	Mathieu Desnoyers <mathieu.desnoyers@...icios.com>
Cc:	Matthew Wilcox <matthew.r.wilcox@...el.com>,
	linux-fsdevel@...r.kernel.org, linux-mm@...ck.org,
	linux-kernel@...r.kernel.org
Subject: Re: [PATCH v11 12/21] vfs: Remove get_xip_mem

On Thu, Oct 16, 2014 at 02:14:46PM +0200, Mathieu Desnoyers wrote:
> > +++ b/fs/open.c
> > @@ -655,11 +655,8 @@ int open_check_o_direct(struct file *f)
> >  {
> >  	/* NB: we're sure to have correct a_ops only after f_op->open */
> >  	if (f->f_flags & O_DIRECT) {
> > -		if (!f->f_mapping->a_ops ||
> > -		    ((!f->f_mapping->a_ops->direct_IO) &&
> > -		    (!f->f_mapping->a_ops->get_xip_mem))) {
> > +		if (!f->f_mapping->a_ops || !f->f_mapping->a_ops->direct_IO)
> 
> Why is it OK to remove the check for get_xip_mem callback here, rather
> than replacing it with a IS_DAX check like the rest of this patch does ?
> I'm probably missing something.

XIP used to intercept I/Os by having the filesystem's ->read & ->write
methods call xip_file_read (/write).  That would do the I/O, and so there
was no need to have a ->direct_IO element in a_ops.  For DAX, we use the
generic VFS code to call back into the filesystem's ->direct_IO entry
point, so the check above for ->direct_IO now checks for both regular
and DAX support.

Or to put it another way, DAX now requires that the filesystem support
O_DIRECT.  Which is pretty much the way it has to be anyway, since DAX
is direct!
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ