* [PATCH] mkfs.ubifs: Fix build with gcc 5.1
@ 2015-05-02 12:38 Bernhard Walle
2015-05-28 23:34 ` Brian Norris
0 siblings, 1 reply; 2+ messages in thread
From: Bernhard Walle @ 2015-05-02 12:38 UTC (permalink / raw)
To: linux-mtd; +Cc: Bernhard Walle
In gcc 5.1, the default C standard which is used to compile a C file,
has changed from gnu89 to gnu11. This changed the meaning of 'extern
inline'. See https://gcc.gnu.org/gcc-5/porting_to.html.
In mkfs.ubifs, this leads to multiple definitions of
hashtable_iterator_key and -hashtable_iterator_value. I think the most
pragmatic way to fix the issue is to replace 'extern inline' with
'static inline' here.
Signed-off-by: Bernhard Walle <bernhard@bwalle.de>
---
mkfs.ubifs/hashtable/hashtable_itr.c | 12 ------------
mkfs.ubifs/hashtable/hashtable_itr.h | 4 ++--
2 files changed, 2 insertions(+), 14 deletions(-)
diff --git a/mkfs.ubifs/hashtable/hashtable_itr.c b/mkfs.ubifs/hashtable/hashtable_itr.c
index 24f4dde..d102453 100644
--- a/mkfs.ubifs/hashtable/hashtable_itr.c
+++ b/mkfs.ubifs/hashtable/hashtable_itr.c
@@ -35,18 +35,6 @@ hashtable_iterator(struct hashtable *h)
}
/*****************************************************************************/
-/* key - return the key of the (key,value) pair at the current position */
-/* value - return the value of the (key,value) pair at the current position */
-
-void *
-hashtable_iterator_key(struct hashtable_itr *i)
-{ return i->e->k; }
-
-void *
-hashtable_iterator_value(struct hashtable_itr *i)
-{ return i->e->v; }
-
-/*****************************************************************************/
/* advance - advance the iterator to the next element
* returns zero if advanced to end of table */
diff --git a/mkfs.ubifs/hashtable/hashtable_itr.h b/mkfs.ubifs/hashtable/hashtable_itr.h
index 87a97eb..5c94a04 100644
--- a/mkfs.ubifs/hashtable/hashtable_itr.h
+++ b/mkfs.ubifs/hashtable/hashtable_itr.h
@@ -28,7 +28,7 @@ hashtable_iterator(struct hashtable *h);
/* hashtable_iterator_key
* - return the value of the (key,value) pair at the current position */
-extern inline void *
+static inline void *
hashtable_iterator_key(struct hashtable_itr *i)
{
return i->e->k;
@@ -37,7 +37,7 @@ hashtable_iterator_key(struct hashtable_itr *i)
/*****************************************************************************/
/* value - return the value of the (key,value) pair at the current position */
-extern inline void *
+static inline void *
hashtable_iterator_value(struct hashtable_itr *i)
{
return i->e->v;
--
2.3.7
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] mkfs.ubifs: Fix build with gcc 5.1
2015-05-02 12:38 [PATCH] mkfs.ubifs: Fix build with gcc 5.1 Bernhard Walle
@ 2015-05-28 23:34 ` Brian Norris
0 siblings, 0 replies; 2+ messages in thread
From: Brian Norris @ 2015-05-28 23:34 UTC (permalink / raw)
To: Bernhard Walle; +Cc: linux-mtd
On Sat, May 02, 2015 at 02:38:06PM +0200, Bernhard Walle wrote:
> In gcc 5.1, the default C standard which is used to compile a C file,
> has changed from gnu89 to gnu11. This changed the meaning of 'extern
> inline'. See https://gcc.gnu.org/gcc-5/porting_to.html.
>
> In mkfs.ubifs, this leads to multiple definitions of
> hashtable_iterator_key and -hashtable_iterator_value. I think the most
> pragmatic way to fix the issue is to replace 'extern inline' with
> 'static inline' here.
>
> Signed-off-by: Bernhard Walle <bernhard@bwalle.de>
Pushed to mtd-utils.git. Thanks.
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2015-05-28 23:35 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-05-02 12:38 [PATCH] mkfs.ubifs: Fix build with gcc 5.1 Bernhard Walle
2015-05-28 23:34 ` Brian Norris
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox