linux-fsdevel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* aio_read const struct iovec *
@ 2009-09-09 11:18 Sergey Senozhatsky
  2009-09-09 11:53 ` Matthew Wilcox
  0 siblings, 1 reply; 2+ messages in thread
From: Sergey Senozhatsky @ 2009-09-09 11:18 UTC (permalink / raw)
  To: Al Viro; +Cc: Jens Axboe, linux-fsdevel, linux-kernel

[-- Attachment #1: Type: text/plain, Size: 825 bytes --]

Hello,
I have the following question:
struct file_operations {
	ssize_t (*read) (struct file *, char __user *, size_t, loff_t *);
	ssize_t (*write) (struct file *, const char __user *, size_t, loff_t *);
At the same time:
	ssize_t (*aio_read) (struct kiocb *, const struct iovec *, unsigned long, loff_t);
	ssize_t (*aio_write) (struct kiocb *, const struct iovec *, unsigned long, loff_t);

'const struct iovec *' both for aio_write and aio_read. 
And "char __user *" and "const char __user *" for read/write.

For example,
pipe_read(struct kiocb *iocb, const struct iovec *_iov,
	    unsigned long nr_segs, loff_t ppos)
{
	struct iovec *iov = (struct iovec *)_iov; 

Could we avoid 'struct iovec *iov = (struct iovec *)_iov;' by changing aio_read 'const struct iovec *'
 to 'struct iovec *'?


	Sergey

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 315 bytes --]

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

* Re: aio_read const struct iovec *
  2009-09-09 11:18 aio_read const struct iovec * Sergey Senozhatsky
@ 2009-09-09 11:53 ` Matthew Wilcox
  0 siblings, 0 replies; 2+ messages in thread
From: Matthew Wilcox @ 2009-09-09 11:53 UTC (permalink / raw)
  To: Sergey Senozhatsky; +Cc: Al Viro, Jens Axboe, linux-fsdevel, linux-kernel

On Wed, Sep 09, 2009 at 02:18:38PM +0300, Sergey Senozhatsky wrote:
> Hello,
> I have the following question:
> struct file_operations {
> 	ssize_t (*read) (struct file *, char __user *, size_t, loff_t *);
> 	ssize_t (*write) (struct file *, const char __user *, size_t, loff_t *);
> At the same time:
> 	ssize_t (*aio_read) (struct kiocb *, const struct iovec *, unsigned long, loff_t);
> 	ssize_t (*aio_write) (struct kiocb *, const struct iovec *, unsigned long, loff_t);
> 
> 'const struct iovec *' both for aio_write and aio_read. 
> And "char __user *" and "const char __user *" for read/write.
> 
> For example,
> pipe_read(struct kiocb *iocb, const struct iovec *_iov,
> 	    unsigned long nr_segs, loff_t ppos)
> {
> 	struct iovec *iov = (struct iovec *)_iov; 
> 
> Could we avoid 'struct iovec *iov = (struct iovec *)_iov;' by changing aio_read 'const struct iovec *'
>  to 'struct iovec *'?

If you try it, it'll be educational for you to see where it fails ;-)

But if you're too impatient, aio_rw_vect_retry() will be (one of)
the problems:

        ssize_t (*rw_op)(struct kiocb *, const struct iovec *,
                         unsigned long, loff_t);
[...]
                rw_op = file->f_op->aio_read;
[...]
                rw_op = file->f_op->aio_write;


so aio_read and aio_write need to have the same prototype.

Now, I'm not sure why it's more beneficial to have a lying const in the
aio_read prototype than simply omitting the const from the aio_write
prototype ... but I'm sure if you try that, you'll find a good reason too.

-- 
Matthew Wilcox				Intel Open Source Technology Centre
"Bill, look, we understand that you're interested in selling us this
operating system, but compare it to ours.  We can't possibly take such
a retrograde step."

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

end of thread, other threads:[~2009-09-09 11:53 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-09-09 11:18 aio_read const struct iovec * Sergey Senozhatsky
2009-09-09 11:53 ` Matthew Wilcox

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).