From: Sven Eckelmann <sven@narfation.org>
To: b.a.t.m.a.n@lists.open-mesh.org
Subject: [B.A.T.M.A.N.] [PATCH] batctl: Print compat version when querying the version
Date: Wed, 3 Oct 2012 19:31:15 +0200 [thread overview]
Message-ID: <1349285475-9782-1-git-send-email-sven@narfation.org> (raw)
Signed-off-by: Sven Eckelmann <sven@narfation.org>
---
main.c | 53 +++++++++++++++++++++++++++++++++++++++++------------
1 file changed, 41 insertions(+), 12 deletions(-)
diff --git a/main.c b/main.c
index 01a435b..eaaec0a 100644
--- a/main.c
+++ b/main.c
@@ -31,6 +31,7 @@
#include "main.h"
#include "sys.h"
#include "debug.h"
+#include "debugfs.h"
#include "ping.h"
#include "traceroute.h"
#include "tcpdump.h"
@@ -42,6 +43,7 @@
char mesh_dfl_iface[] = "bat0";
char module_ver_path[] = "/sys/module/batman_adv/version";
+char module_compat_ver_file[] = "batman_adv/compat_version";
void print_usage(void)
{
@@ -90,6 +92,44 @@ void print_usage(void)
#endif
}
+static void print_version(void)
+{
+ int ret;
+ char *debugfs_mnt;
+
+ printf("batctl %s [", SOURCE_VERSION);
+
+ ret = read_file("", module_ver_path, USE_READ_BUFF | SILENCE_ERRORS, 0, 0);
+ if ((line_ptr) && (line_ptr[strlen(line_ptr) - 1] == '\n'))
+ line_ptr[strlen(line_ptr) - 1] = '\0';
+
+ if (ret == EXIT_SUCCESS) {
+ printf("batman-adv: %s", line_ptr);
+ } else {
+ printf("module not loaded");
+ goto out;
+ }
+
+ free(line_ptr);
+ line_ptr = NULL;
+
+ debugfs_mnt = debugfs_mount(NULL);
+ if (!debugfs_mnt)
+ goto out;
+
+ ret = read_file(debugfs_mnt, module_compat_ver_file, USE_READ_BUFF | SILENCE_ERRORS, 0, 0);
+ if ((line_ptr) && (line_ptr[strlen(line_ptr) - 1] == '\n'))
+ line_ptr[strlen(line_ptr) - 1] = '\0';
+
+ if (ret == EXIT_SUCCESS)
+ printf(", compat: %s", line_ptr);
+
+out:
+ free(line_ptr);
+ line_ptr = NULL;
+ printf("]\n");
+}
+
int main(int argc, char **argv)
{
int i, ret = EXIT_FAILURE;
@@ -116,18 +156,7 @@ int main(int argc, char **argv)
goto err;
if (strcmp(argv[1], "-v") == 0) {
- printf("batctl %s [batman-adv: ", SOURCE_VERSION);
-
- ret = read_file("", module_ver_path, USE_READ_BUFF | SILENCE_ERRORS, 0, 0);
- if ((line_ptr) && (line_ptr[strlen(line_ptr) - 1] == '\n'))
- line_ptr[strlen(line_ptr) - 1] = '\0';
-
- if (ret == EXIT_SUCCESS)
- printf("%s]\n", line_ptr);
- else
- printf("module not loaded]\n");
-
- free(line_ptr);
+ print_version();
exit(EXIT_SUCCESS);
}
--
1.7.10.4
next reply other threads:[~2012-10-03 17:31 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-10-03 17:31 Sven Eckelmann [this message]
2012-10-16 13:31 ` [B.A.T.M.A.N.] [PATCH-rebased] batctl: Print compat version when querying the version Sven Eckelmann
2012-10-16 20:38 ` Marek Lindner
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1349285475-9782-1-git-send-email-sven@narfation.org \
--to=sven@narfation.org \
--cc=b.a.t.m.a.n@lists.open-mesh.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox