* [PATCH] libmount: define BTRFS_TEST_MAGIC if missing
@ 2014-03-05 10:55 Bernhard Voelker
2014-03-05 11:27 ` Karel Zak
0 siblings, 1 reply; 2+ messages in thread
From: Bernhard Voelker @ 2014-03-05 10:55 UTC (permalink / raw)
To: Util-Linux
The patch below avoid the following compile error:
libmount/src/utils.c: In function 'mnt_statfs_get_fstype':
libmount/src/utils.c:397:7: error: 'BTRFS_TEST_MAGIC' undeclared (first use in this function)
case BTRFS_TEST_MAGIC: return "btrfs";
^
libmount/src/utils.c:397:7: note: each undeclared identifier is reported only once for each function it appears in
Have a nice day,
Berny
From 2a5ed00775aa558a71be462c05ded86ad3e632d9 Mon Sep 17 00:00:00 2001
From: Bernhard Voelker <mail@bernhard-voelker.de>
Date: Wed, 5 Mar 2014 11:52:13 +0100
Subject: [PATCH] libmount: define BTRFS_TEST_MAGIC if missing
* libmount/src/utils.c (BTRFS_TEST_MAGIC): Conditionally add define
which is used since commit v2.24-243-g6a52473.
Signed-off-by: Bernhard Voelker <mail@bernhard-voelker.de>
---
libmount/src/utils.c | 3 +++
1 file changed, 3 insertions(+)
diff --git a/libmount/src/utils.c b/libmount/src/utils.c
index d402b7e..2541a22 100644
--- a/libmount/src/utils.c
+++ b/libmount/src/utils.c
@@ -333,6 +333,9 @@ int mnt_fstype_is_netfs(const char *type)
#ifndef CONFIGFS_SUPER_MAGIC
# define CONFIGFS_SUPER_MAGIC 0x62656570
#endif
+#ifndef BTRFS_TEST_MAGIC
+# define BTRFS_TEST_MAGIC 0x73727279
+#endif
const char *mnt_statfs_get_fstype(struct statfs *vfs)
{
--
1.8.4.2
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] libmount: define BTRFS_TEST_MAGIC if missing
2014-03-05 10:55 [PATCH] libmount: define BTRFS_TEST_MAGIC if missing Bernhard Voelker
@ 2014-03-05 11:27 ` Karel Zak
0 siblings, 0 replies; 2+ messages in thread
From: Karel Zak @ 2014-03-05 11:27 UTC (permalink / raw)
To: Bernhard Voelker; +Cc: Util-Linux
On Wed, Mar 05, 2014 at 11:55:34AM +0100, Bernhard Voelker wrote:
> * libmount/src/utils.c (BTRFS_TEST_MAGIC): Conditionally add define
> which is used since commit v2.24-243-g6a52473.
Applied, thanks.
Unfortunately, this is not end of the statfs f_type horror -- all
depends on kernel headers version, stuff in linux/magic.h, etc. And
the list of the filesystems is also not complete.
So I guess we will see more reports...
Maybe the best would be to create our private include/statfs_magic.h
with ifndef-define for all filesystems.
I'm trying to cleanup this thing in kernel tree, but the result is
doubtful
http://www.spinics.net/lists/linux-fsdevel/threads.html#73297
and we still need compatibility with already released kernels.
Karel
--
Karel Zak <kzak@redhat.com>
http://karelzak.blogspot.com
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2014-03-05 11:27 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-03-05 10:55 [PATCH] libmount: define BTRFS_TEST_MAGIC if missing Bernhard Voelker
2014-03-05 11:27 ` Karel Zak
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox