@@ -26,27 +26,6 @@ struct itimerspec64 {
#endif
-#ifdef CONFIG_FS_USES_64BIT_TIME
-
-/* Place holder defines until CONFIG_FS_USES_64BIT_TIME
- * is enabled.
- * timespec64 data type and functions will be used at that
- * time directly and these defines will be deleted.
- */
-#define inode_timespec timespec64
-
-#define inode_timespec_compare timespec64_compare
-#define inode_timespec_equal timespec64_equal
-
-#else
-
-#define inode_timespec timespec
-
-#define inode_timespec_compare timespec_compare
-#define inode_timespec_equal timespec_equal
-
-#endif
-
#define CURRENT_TIME64 (current_kernel_time64())
#define CURRENT_TIME64_SEC \
((struct timespec64) { ktime_get_real_seconds(), 0 })
Now that CONFIG_FS_USES_64BIT_TIME is enabled, the aliases for inode_timespec are no longer used and can be removed. Signed-off-by: Deepa Dinamani <deepa.kernel@gmail.com> --- include/linux/time64.h | 21 --------------------- 1 file changed, 21 deletions(-)