The patch titled make timespec_equal() take const arguments has been removed from the -mm tree. Its filename was make-timespec_equal-take-const-arguments.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: make timespec_equal() take const arguments From: Jan Engelhardt <jengelh@xxxxxxxxxxxxxxx> Make arguments of timespec_equal() const struct timespec. Signed-off-by: Jan Engelhardt <jengelh@xxxxxx> Cc: Thomas Gleixner <tglx@xxxxxxxxxxxxx> Cc: john stultz <johnstul@xxxxxxxxxx> Cc: Roman Zippel <zippel@xxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- include/linux/time.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff -puN include/linux/time.h~make-timespec_equal-take-const-arguments include/linux/time.h --- a/include/linux/time.h~make-timespec_equal-take-const-arguments +++ a/include/linux/time.h @@ -36,7 +36,8 @@ struct timezone { #define NSEC_PER_SEC 1000000000L #define FSEC_PER_SEC 1000000000000000L -static inline int timespec_equal(struct timespec *a, struct timespec *b) +static inline int timespec_equal(const struct timespec *a, + const struct timespec *b) { return (a->tv_sec == b->tv_sec) && (a->tv_nsec == b->tv_nsec); } _ Patches currently in -mm which might be from jengelh@xxxxxxxxxxxxxxx are origin.patch intel-iommu-iommu-gfx-workaround-kconfig-fix.patch intel-iommu-iommu-floppy-workaround-kconfig-fix.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html