All of lore.kernel.org
 help / color / mirror / Atom feed
* [merged] time-delete-current_fs_time-function.patch removed from -mm tree
@ 2017-05-16 17:49 akpm
  0 siblings, 0 replies; only message in thread
From: akpm @ 2017-05-16 17:49 UTC (permalink / raw)
  To: arnd, deepa.kernel, john.stultz, mm-commits, tglx


The patch titled
     Subject: time: delete current_fs_time()
has been removed from the -mm tree.  Its filename was
     time-delete-current_fs_time-function.patch

This patch was dropped because it was merged into mainline or a subsystem tree

------------------------------------------------------
From: Deepa Dinamani <deepa.kernel@gmail.com>
Subject: time: delete current_fs_time()

All uses of the current_fs_time() function have been replaced by other
time interfaces.

And, its use cases can be fulfilled by current_time() or ktime_get_*
variants.

Link: http://lkml.kernel.org/r/1491613030-11599-13-git-send-email-deepa.kernel@gmail.com
Signed-off-by: Deepa Dinamani <deepa.kernel@gmail.com>
Reviewed-by: Arnd Bergmann <arnd@arndb.de>
Cc: John Stultz <john.stultz@linaro.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
---

 include/linux/fs.h |    1 -
 kernel/time/time.c |   14 --------------
 2 files changed, 15 deletions(-)

diff -puN include/linux/fs.h~time-delete-current_fs_time-function include/linux/fs.h
--- a/include/linux/fs.h~time-delete-current_fs_time-function
+++ a/include/linux/fs.h
@@ -1431,7 +1431,6 @@ static inline void i_gid_write(struct in
 	inode->i_gid = make_kgid(inode->i_sb->s_user_ns, gid);
 }
 
-extern struct timespec current_fs_time(struct super_block *sb);
 extern struct timespec current_time(struct inode *inode);
 
 /*
diff -puN kernel/time/time.c~time-delete-current_fs_time-function kernel/time/time.c
--- a/kernel/time/time.c~time-delete-current_fs_time-function
+++ a/kernel/time/time.c
@@ -230,20 +230,6 @@ SYSCALL_DEFINE1(adjtimex, struct timex _
 	return copy_to_user(txc_p, &txc, sizeof(struct timex)) ? -EFAULT : ret;
 }
 
-/**
- * current_fs_time - Return FS time
- * @sb: Superblock.
- *
- * Return the current time truncated to the time granularity supported by
- * the fs.
- */
-struct timespec current_fs_time(struct super_block *sb)
-{
-	struct timespec now = current_kernel_time();
-	return timespec_trunc(now, sb->s_time_gran);
-}
-EXPORT_SYMBOL(current_fs_time);

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2017-05-16 17:49 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-05-16 17:49 [merged] time-delete-current_fs_time-function.patch removed from -mm tree akpm

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.