From d5a09b59916d4ef24b15e34eac394149cb7a641a Mon Sep 17 00:00:00 2001 From: Chuck Lever Date: Tue, 15 Jul 2008 12:10:33 -0400 Subject: Moved the kernel version-ing code into a new version.h header file which allows the code to be shared Signed-off-by: Chuck Lever Signed-off-by: Steve Dickson --- utils/mount/mount.c | 18 +----------------- 1 file changed, 1 insertion(+), 17 deletions(-) (limited to 'utils/mount/mount.c') diff --git a/utils/mount/mount.c b/utils/mount/mount.c index a753932..d0eb1a0 100644 --- a/utils/mount/mount.c +++ b/utils/mount/mount.c @@ -29,7 +29,6 @@ #include #include #include -#include #include #include #include @@ -47,6 +46,7 @@ #include "error.h" #include "network.h" #include "stropts.h" +#include "version.h" char *progname; int nfs_mount_data_version; @@ -146,24 +146,8 @@ static const struct opt_map opt_map[] = { { NULL, 0, 0, 0 } }; -#define MAKE_VERSION(p,q,r) (65536 * (p) + 256 * (q) + (r)) - static void parse_opts(const char *options, int *flags, char **extra_opts); -int linux_version_code(void) -{ - struct utsname my_utsname; - int p, q, r; - - if (uname(&my_utsname) == 0) { - p = atoi(strtok(my_utsname.release, ".")); - q = atoi(strtok(NULL, ".")); - r = atoi(strtok(NULL, ".")); - return MAKE_VERSION(p,q,r); - } - return 0; -} - /* * Choose the version of the nfs_mount_data structure that is appropriate * for the kernel that is doing the mount. -- cgit