]> Zhao Yanbai Git Server - minix.git/commitdiff
Bumping version to 3.3.0 19/919/2
authorLionel Sambuc <lionel@minix3.org>
Wed, 3 Apr 2013 08:45:55 +0000 (08:45 +0000)
committerLionel Sambuc <lionel@minix3.org>
Tue, 18 Feb 2014 10:25:01 +0000 (11:25 +0100)
Change-Id: I4c88bdd449daf6ad3fe4e93ee8fc35d4f38becc4

include/minix/config.h
servers/vfs/link.c

index 216c3fc9fbb0404ce24275a9e316d6987d3c5b16..2ccdec4a0cc71639e2548ac53d11f0fe29eb07ce 100644 (file)
@@ -3,11 +3,8 @@
 
 /* Minix release and version numbers. */
 #define OS_RELEASE "3"
-#define OS_VERSION "2.1"
+#define OS_VERSION "3.0"
 
-/* Keep these in sync with os_version above for temp version check in VFS */
-#define OS_VMAJOR 2
-#define OS_VMINOR 1
 /* This file sets configuration parameters for the MINIX kernel, FS, and PM.
  * It is divided up into two main sections.  The first section contains
  * user-settable parameters.  In the second section, various internal system
index dafeb3424025958795237d71dc8c345ea3716333..c29c2119f198f48d62c6e29e84686a19eb6c9eae 100644 (file)
@@ -311,12 +311,7 @@ int do_truncate(message *UNUSED(m_out))
        length = (off_t) job_m_in.m2_l1;
        if ((int) job_m_in.flength < 0) return(EINVAL);
   } else {
-#if OS_VMAJOR == 2 && OS_VMINOR == 1
-       length = (off_t) make64(job_m_in.m2_l1, 0); /* Ignore higher bits */
-#else
-#error "Please remove this version check. Recompile dynamic packages first."
        length = (off_t) make64(job_m_in.m2_l1, job_m_in.m2_l2);
-#endif
        if (length < 0) return(EINVAL);
   }
 
@@ -359,12 +354,7 @@ int do_ftruncate(message *UNUSED(m_out))
        length = (off_t) job_m_in.m2_l1;
        if ((int) job_m_in.flength < 0) return(EINVAL);
   } else {
-#if OS_VMAJOR == 2 && OS_VMINOR == 1
-       length = (off_t) make64(job_m_in.m2_l1, 0); /* Ignore higher bits */
-#else
-#error "Please remove this version check. Recompile dynamic packages first."
        length = (off_t) make64(job_m_in.m2_l1, job_m_in.m2_l2);
-#endif
        if (length < 0) return(EINVAL);
   }