Re: [159/244] ipc/mqueue.c: fix mq_open() return value

From: Doug Ledford
Date: Thu Sep 29 2011 - 11:43:39 EST


----- Original Message -----
> 3.0-stable review patch. If anyone has any objections, please let us
> know.
>

@@ -160,6 +161,7 @@ static struct inode *mqueue_get_inode(st
u->mq_bytes + mq_bytes > task_rlimit(p, RLIMIT_MSGQUEUE)) {
spin_unlock(&mq_lock);
/* mqueue_evict_inode() releases info->messages */
+ ret = -EMFILE;
goto out_inode;
}
u->mq_bytes += mq_bytes;

NACK to this portion of the patch. The test is for the total bytes allocated, and the RLIMIT is for bytes allocated. This can happen on one file or on the hundredth file. It isn't a file error, it's a memory error and should remain such. If you want to accurately return the right error, then you need new_inode() to return an ERR_PTR(EMFILE) in the case that the number of message queues in the namespace is exceeded and propagate that back up, but as mqueue_get_inode() really only checks memory issues, not queue count issues, the only return it should generate is ENOMEM.

--
Doug Ledford <dledford@xxxxxxxxxx>
GPG KeyID: CFBFF194
http://people.redhat.com/dledford

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/