All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] fs/proc/util.c: include fs/proc/internal.h for name_to_int()
@ 2018-11-15  0:18 Eric Biggers
  2018-11-15 14:43 ` Alexey Dobriyan
  0 siblings, 1 reply; 2+ messages in thread
From: Eric Biggers @ 2018-11-15  0:18 UTC (permalink / raw)
  To: linux-fsdevel, Andrew Morton; +Cc: Alexey Dobriyan

From: Eric Biggers <ebiggers@google.com>

name_to_int() is defined in fs/proc/util.c and declared in
fs/proc/internal.h, but the declaration isn't included at the point of
the definition.  Include the header to enforce that the definition
matches the declaration.

This addresses a gcc warning when -Wmissing-prototypes is enabled.

Signed-off-by: Eric Biggers <ebiggers@google.com>
---
 fs/proc/util.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/fs/proc/util.c b/fs/proc/util.c
index b161cfa0f9fa1..98f8adc173453 100644
--- a/fs/proc/util.c
+++ b/fs/proc/util.c
@@ -1,4 +1,5 @@
 #include <linux/dcache.h>
+#include "internal.h"
 
 unsigned name_to_int(const struct qstr *qstr)
 {
-- 
2.19.1.930.g4563a0d9d0-goog

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

* Re: [PATCH] fs/proc/util.c: include fs/proc/internal.h for name_to_int()
  2018-11-15  0:18 [PATCH] fs/proc/util.c: include fs/proc/internal.h for name_to_int() Eric Biggers
@ 2018-11-15 14:43 ` Alexey Dobriyan
  0 siblings, 0 replies; 2+ messages in thread
From: Alexey Dobriyan @ 2018-11-15 14:43 UTC (permalink / raw)
  To: Eric Biggers; +Cc: linux-fsdevel, Andrew Morton

On Wed, Nov 14, 2018 at 04:18:33PM -0800, Eric Biggers wrote:
> --- a/fs/proc/util.c
> +++ b/fs/proc/util.c
> @@ -1,4 +1,5 @@
>  #include <linux/dcache.h>
> +#include "internal.h"

Reviewed-by: Alexey Dobriyan <adobriyan@gmail.com>

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

end of thread, other threads:[~2018-11-16  0:51 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-11-15  0:18 [PATCH] fs/proc/util.c: include fs/proc/internal.h for name_to_int() Eric Biggers
2018-11-15 14:43 ` Alexey Dobriyan

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.