Subject: [PATCH] mm: fix in kerneldoc

Fixes an kerneldoc error.
Signed-off-by: Henrik Kretzschmar <[email protected]>

---

diff --git a/mm/filemap.c b/mm/filemap.c
index ec46923..f789500 100644
--- a/mm/filemap.c
+++ b/mm/filemap.c
@@ -1139,11 +1139,11 @@ success:
}

/**
- * __generic_file_aio_read - generic filesystem read routine
+ * generic_file_aio_read - generic filesystem read routine
* @iocb: kernel I/O control block
* @iov: io vector request
* @nr_segs: number of segments in the iovec
- * @ppos: current file position
+ * @pos: current file position
*
* This is the "read()" routine for all filesystems
* that can use the page cache directly.



2006-10-02 21:40:25

by Christoph Hellwig

[permalink] [raw]
Subject: Re: [PATCH] mm: fix in kerneldoc

On Sun, Oct 01, 2006 at 12:30:35PM +0200, Henne wrote:
> Fixes an kerneldoc error.
> Signed-off-by: Henrik Kretzschmar <[email protected]>
>
> ---
>
> diff --git a/mm/filemap.c b/mm/filemap.c
> index ec46923..f789500 100644
> --- a/mm/filemap.c
> +++ b/mm/filemap.c
> @@ -1139,11 +1139,11 @@ success:
> }
>
> /**
> - * __generic_file_aio_read - generic filesystem read routine
> + * generic_file_aio_read - generic filesystem read routine
> * @iocb: kernel I/O control block
> * @iov: io vector request
> * @nr_segs: number of segments in the iovec
> - * @ppos: current file position
> + * @pos: current file position
> *
> * This is the "read()" routine for all filesystems
> * that can use the page cache directly.

Looks good - thank you a lot!