[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1424670192-3215-1-git-send-email-nuxi@vault24.org>
Date: Mon, 23 Feb 2015 00:43:12 -0500
From: Jon DeVree <nuxi@...lt24.org>
To: linux-kernel@...r.kernel.org
Cc: Jon DeVree <nuxi@...lt24.org>
Subject: [PATCH] kernel/sys.c: Fix UNAME26 for 4.0
Signed-off-by: Jon DeVree <nuxi@...lt24.org>
---
kernel/sys.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/kernel/sys.c b/kernel/sys.c
index 667b2e6..0ffd403 100644
--- a/kernel/sys.c
+++ b/kernel/sys.c
@@ -1127,7 +1127,7 @@ static int override_release(char __user *release, size_t len)
break;
rest++;
}
- v = ((LINUX_VERSION_CODE >> 8) & 0xff) + 40;
+ v = ((LINUX_VERSION_CODE >> 8) & 0xff) + 60;
copy = clamp_t(size_t, len, 1, sizeof(buf));
copy = scnprintf(buf, copy, "2.6.%u%s", v, rest);
ret = copy_to_user(release, buf, copy + 1);
--
2.1.4
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists