Re: Pull request for semaphore include changes

Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]
From: Matthew Wilcox
Date: Wednesday, April 23, 2008 - 9:03 am

On Wed, Apr 23, 2008 at 08:57:24AM -0700, Roland Dreier wrote:

You've missed this hunk:

        if (filp->f_flags & O_NONBLOCK) {
                if (down_trylock(&port->sm_sem)) {
                        ret = -EAGAIN;
                        goto fail;
                }
        } else {
                if (down_interruptible(&port->sm_sem)) {
                        ret = -ERESTARTSYS;
                        goto fail;
                }
        }

which is still in Linus' tree as of last night.

-- 
Intel are signing my paycheques ... these opinions are still mine
"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."
--
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]

Messages in current thread:
Pull request for semaphore include changes, Matthew Wilcox, (Sat Apr 19, 11:40 am)
Re: Pull request for semaphore include changes, Geert Uytterhoeven, (Wed Apr 23, 12:18 am)
Re: Pull request for semaphore include changes, Matthew Wilcox, (Wed Apr 23, 4:13 am)
Re: Pull request for semaphore include changes, Roland Dreier, (Wed Apr 23, 8:57 am)
Re: Pull request for semaphore include changes, Matthew Wilcox, (Wed Apr 23, 9:03 am)
Re: Pull request for semaphore include changes, Roland Dreier, (Wed Apr 23, 9:06 am)