public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Wendy Cheng <wcheng@redhat.com>
To: Benjamin LaHaise <bcrl@kvack.org>
Cc: linux-kernel@vger.kernel.org, linux-aio@kvack.org
Subject: Re: [PATCH] Add ENOSYS into sys_io_cancel
Date: Tue, 12 Jul 2005 11:49:47 -0400	[thread overview]
Message-ID: <42D3E69B.7090704@redhat.com> (raw)
In-Reply-To: <20050712014845.GA11916@kvack.org>

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

Benjamin LaHaise wrote:

>Also, please cc linux-aio@kvack.org on future aio patches.  
>  
>
Didn't realize the patch was sent to linux-kernel (that I don't 
subscribe) instead of linux-aio - revised patch attached. Thanks for the 
help .... Wendy

>On Mon, Jul 11, 2005 at 03:06:52PM -0400, Wendy Cheng wrote:
>
>Note that other than few exceptions, most of the current filesystem 
>and/or drivers do not have aio cancel specifically defined 
>(kiob->ki_cancel field is mostly NULL). However, sys_io_cancel system 
>call universally sets return code to -EGAIN. This gives applications a 
>wrong impression that this call is implemented but just never works. We 
>have customer inquires about this issue.
>
>Upload a trivial patch to address this confusion.
>
>  
>


[-- Attachment #2: aio.patch --]
[-- Type: text/plain, Size: 361 bytes --]

Signed-off-by: S. Wendy Cheng <wcheng@redhat.com>

--- linux-2.6.12/fs/aio.c	2005-06-17 15:48:29.000000000 -0400
+++ linux/fs/aio.c	2005-07-12 11:26:08.503256160 -0400
@@ -1660,7 +1660,7 @@ asmlinkage long sys_io_cancel(aio_contex
 				ret = -EFAULT;
 		}
 	} else
-		printk(KERN_DEBUG "iocb has no cancel operation\n");
+		ret = -ENOSYS;
 
 	put_ioctx(ctx);
 

  reply	other threads:[~2005-07-12 15:55 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2005-07-11 19:06 [PATCH] Add ENOSYS into sys_io_cancel Wendy Cheng
2005-07-12  1:48 ` Benjamin LaHaise
2005-07-12 15:49   ` Wendy Cheng [this message]
2005-07-12 16:05     ` Benjamin LaHaise
  -- strict thread matches above, loose matches on Subject: below --
2005-07-10 18:25 Shiow-wen Cheng

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=42D3E69B.7090704@redhat.com \
    --to=wcheng@redhat.com \
    --cc=bcrl@kvack.org \
    --cc=linux-aio@kvack.org \
    --cc=linux-kernel@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox