linux-kernel-mentees.lists.linuxfoundation.org archive mirror
 help / color / mirror / Atom feed
* [Linux-kernel-mentees] Fwd: [PATCH] fs: direct-io: Fixed a Documentation build warn
       [not found] ` <CAF65HP3W3OM-Euc28fpZc_EPcG9KzEt8==UOC0fgS8ODoWRXiA@mail.gmail.com>
@ 2019-09-23 21:03   ` madhuparnabhowmik04
  2019-09-23 21:03     ` Madhuparna Bhowmik
  2019-09-23 21:59     ` skhan
  0 siblings, 2 replies; 4+ messages in thread
From: madhuparnabhowmik04 @ 2019-09-23 21:03 UTC (permalink / raw)


Fixed Excess function parameters warning.
warning: Excess function parameter 'offset' description in
'dio_complete'.
Removed the description of the local variable offset from the
description for arguments of a function and added it with the
declaration of the variable.

Signed-off-by: Madhuparna Bhowmik <madhuparnabhowmik04 at gmail.com>
---
 fs/direct-io.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/fs/direct-io.c b/fs/direct-io.c
index ae196784f487..a9cb770f0bc1 100644
--- a/fs/direct-io.c
+++ b/fs/direct-io.c
@@ -243,7 +243,6 @@ void dio_warn_stale_pagecache(struct file *filp)

 /**
  * dio_complete() - called when all DIO BIO I/O has been completed
- * @offset: the byte offset in the file of the completed operation
  *
  * This drops i_dio_count, lets interested parties know that a DIO
operation
  * has completed, and calculates the resulting return code for the
operation.
@@ -255,6 +254,7 @@ void dio_warn_stale_pagecache(struct file *filp)
  */
 static ssize_t dio_complete(struct dio *dio, ssize_t ret, unsigned int
flags)
 {
+       /* offset: the byte offset in the file of the completed operation */
        loff_t offset = dio->iocb->ki_pos;
        ssize_t transferred = 0;
        int err;
-- 
2.17.1

?
?
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.linuxfoundation.org/pipermail/linux-kernel-mentees/attachments/20190924/d297bba5/attachment.html>

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [Linux-kernel-mentees] Fwd: [PATCH] fs: direct-io: Fixed a Documentation build warn
  2019-09-23 21:03   ` [Linux-kernel-mentees] Fwd: [PATCH] fs: direct-io: Fixed a Documentation build warn madhuparnabhowmik04
@ 2019-09-23 21:03     ` Madhuparna Bhowmik
  2019-09-23 21:59     ` skhan
  1 sibling, 0 replies; 4+ messages in thread
From: Madhuparna Bhowmik @ 2019-09-23 21:03 UTC (permalink / raw)


Fixed Excess function parameters warning.
warning: Excess function parameter 'offset' description in
'dio_complete'.
Removed the description of the local variable offset from the
description for arguments of a function and added it with the
declaration of the variable.

Signed-off-by: Madhuparna Bhowmik <madhuparnabhowmik04 at gmail.com>
---
 fs/direct-io.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/fs/direct-io.c b/fs/direct-io.c
index ae196784f487..a9cb770f0bc1 100644
--- a/fs/direct-io.c
+++ b/fs/direct-io.c
@@ -243,7 +243,6 @@ void dio_warn_stale_pagecache(struct file *filp)

 /**
  * dio_complete() - called when all DIO BIO I/O has been completed
- * @offset: the byte offset in the file of the completed operation
  *
  * This drops i_dio_count, lets interested parties know that a DIO
operation
  * has completed, and calculates the resulting return code for the
operation.
@@ -255,6 +254,7 @@ void dio_warn_stale_pagecache(struct file *filp)
  */
 static ssize_t dio_complete(struct dio *dio, ssize_t ret, unsigned int
flags)
 {
+       /* offset: the byte offset in the file of the completed operation */
        loff_t offset = dio->iocb->ki_pos;
        ssize_t transferred = 0;
        int err;
-- 
2.17.1

?
?
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.linuxfoundation.org/pipermail/linux-kernel-mentees/attachments/20190924/d297bba5/attachment.html>

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [Linux-kernel-mentees] Fwd: [PATCH] fs: direct-io: Fixed a Documentation build warn
  2019-09-23 21:03   ` [Linux-kernel-mentees] Fwd: [PATCH] fs: direct-io: Fixed a Documentation build warn madhuparnabhowmik04
  2019-09-23 21:03     ` Madhuparna Bhowmik
@ 2019-09-23 21:59     ` skhan
  2019-09-23 21:59       ` Shuah Khan
  1 sibling, 1 reply; 4+ messages in thread
From: skhan @ 2019-09-23 21:59 UTC (permalink / raw)


On 9/23/19 3:03 PM, Madhuparna Bhowmik wrote:
> Fixed Excess function parameters warning.
> warning: Excess function parameter 'offset' description in
> 'dio_complete'.
> Removed the description of the local variable offset from the
> description for arguments of a function and added it with the
> declaration of the variable.

Change the commit log to say: Fixes instead of Fixed and Removes
instead of Removed.

Also I think what you mean to say is that the this patch removes
offset which isn't an argument to the function from the function
header. Can you rephrase the commit log.

> 
> Signed-off-by: Madhuparna Bhowmik <madhuparnabhowmik04 at gmail.com 
> <mailto:madhuparnabhowmik04 at gmail.com>>

Why is this a Fwd::

> ---
>  ?fs/direct-io.c | 2 +-
>  ?1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/fs/direct-io.c b/fs/direct-io.c
> index ae196784f487..a9cb770f0bc1 100644
> --- a/fs/direct-io.c
> +++ b/fs/direct-io.c
> @@ -243,7 +243,6 @@ void dio_warn_stale_pagecache(struct file *filp)
> 
>  ?/**
>  ? * dio_complete() - called when all DIO BIO I/O has been completed
> - * @offset: the byte offset in the file of the completed operation
>  ? *
>  ? * This drops i_dio_count, lets interested parties know that a DIO 
> operation
>  ? * has completed, and calculates the resulting return code for the 
> operation.
> @@ -255,6 +254,7 @@ void dio_warn_stale_pagecache(struct file *filp)
>  ? */
>  ?static ssize_t dio_complete(struct dio *dio, ssize_t ret, unsigned int 
> flags)
>  ?{
> +? ? ? ?/* offset: the byte offset in the file of the completed operation */
>  ? ? ? ? loff_t offset = dio->iocb->ki_pos;
>  ? ? ? ? ssize_t transferred = 0;
>  ? ? ? ? int err;
> -- 
> 2.17.1
> 
> ?
> ?

thanks,
-- Shuah

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [Linux-kernel-mentees] Fwd: [PATCH] fs: direct-io: Fixed a Documentation build warn
  2019-09-23 21:59     ` skhan
@ 2019-09-23 21:59       ` Shuah Khan
  0 siblings, 0 replies; 4+ messages in thread
From: Shuah Khan @ 2019-09-23 21:59 UTC (permalink / raw)


On 9/23/19 3:03 PM, Madhuparna Bhowmik wrote:
> Fixed Excess function parameters warning.
> warning: Excess function parameter 'offset' description in
> 'dio_complete'.
> Removed the description of the local variable offset from the
> description for arguments of a function and added it with the
> declaration of the variable.

Change the commit log to say: Fixes instead of Fixed and Removes
instead of Removed.

Also I think what you mean to say is that the this patch removes
offset which isn't an argument to the function from the function
header. Can you rephrase the commit log.

> 
> Signed-off-by: Madhuparna Bhowmik <madhuparnabhowmik04 at gmail.com 
> <mailto:madhuparnabhowmik04 at gmail.com>>

Why is this a Fwd::

> ---
>  ?fs/direct-io.c | 2 +-
>  ?1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/fs/direct-io.c b/fs/direct-io.c
> index ae196784f487..a9cb770f0bc1 100644
> --- a/fs/direct-io.c
> +++ b/fs/direct-io.c
> @@ -243,7 +243,6 @@ void dio_warn_stale_pagecache(struct file *filp)
> 
>  ?/**
>  ? * dio_complete() - called when all DIO BIO I/O has been completed
> - * @offset: the byte offset in the file of the completed operation
>  ? *
>  ? * This drops i_dio_count, lets interested parties know that a DIO 
> operation
>  ? * has completed, and calculates the resulting return code for the 
> operation.
> @@ -255,6 +254,7 @@ void dio_warn_stale_pagecache(struct file *filp)
>  ? */
>  ?static ssize_t dio_complete(struct dio *dio, ssize_t ret, unsigned int 
> flags)
>  ?{
> +? ? ? ?/* offset: the byte offset in the file of the completed operation */
>  ? ? ? ? loff_t offset = dio->iocb->ki_pos;
>  ? ? ? ? ssize_t transferred = 0;
>  ? ? ? ? int err;
> -- 
> 2.17.1
> 
> ?
> ?

thanks,
-- Shuah

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2019-09-23 21:59 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <20190923123701.GA9627@madhuparna-HP-Notebook>
     [not found] ` <CAF65HP3W3OM-Euc28fpZc_EPcG9KzEt8==UOC0fgS8ODoWRXiA@mail.gmail.com>
2019-09-23 21:03   ` [Linux-kernel-mentees] Fwd: [PATCH] fs: direct-io: Fixed a Documentation build warn madhuparnabhowmik04
2019-09-23 21:03     ` Madhuparna Bhowmik
2019-09-23 21:59     ` skhan
2019-09-23 21:59       ` Shuah Khan

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).