lkml.org 
[lkml]   [2008]   [Apr]   [12]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
Date
From
SubjectRe: [PATCH RFC 1/5] vringfd syscall
On Sat, Apr 12, 2008 at 02:18:20PM -0300, Marcelo Tosatti wrote:

> > + mask = POLLIN | POLLRDNORM;
> > + else
> > + mask = 0;
> > +
> > +poll_wait:
> > + poll_wait(filp, &vr->poll_wait, poll);
> > +
> > + return mask;
> > +}
>
> I suppose you are doing data copy in ->poll instead of ->read to save
> a system call? This is weird, not conformant to what the interface is
> supposed to do.
>
> This way select/poll syscalls might block in userspace datacopy. The
> application might have a higher priority fd in the fdset to be informed
> of, for example.
>
> So why not change this to the common arrangement, with vring_poll adding
> the waitqueue with poll_wait() and vring_read doing the actual data copy ?
>
> > +struct vring_info *vring_attach(int fd, const struct vring_ops *ops,
> > + void *data, bool atomic_use)
> > +{
> > + struct file *filp;
> > + struct vring_info *vr;
> > +
> > + /* Must be a valid fd, and must be one of ours. */
> > + filp = fget(fd);
> > + if (!filp) {
> > + vr = ERR_PTR(-EBADF);
> > + goto out;
> > + }
> > +
> > + if (filp->f_op != &vring_fops) {
> > + vr = ERR_PTR(-EBADF);
> > + goto fput;
> > + }
> > +
> > + /* Mutex simply protects against parallel vring_attach. */
> > + mutex_lock(&vring_lock);
> > + vr = filp->private_data;
> > + if (vr->ops) {
> > + vr = ERR_PTR(-EBUSY);
> > + goto unlock;
> > + }
> > +
> > + /* If they want to use atomically, we have to map the page. */
> > + if (atomic_use) {
> > + if (get_user_pages(current, current->mm,
> > + (unsigned long)vr->ring.used, 1, 1, 1,
> > + &vr->used_page, NULL) != 1) {
>
> Can't the same be achieved by the app mlocking the vring pages, which
> then goes through standard rlimit checking ?

Oh, this is a driver API to allow the copy to take place in atomic
contexes. You might want to add some sort of limit enforcement.

Also forgot mmap_sem there.



\
 
 \ /
  Last update: 2008-04-12 19:39    [W:0.100 / U:0.072 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site