The patch titled remove unnecessary barrier in rtc_get_rtc_time has been removed from the -mm tree. Its filename is remove-unnecessary-barrier-in-rtc_get_rtc_time.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: remove unnecessary barrier in rtc_get_rtc_time From: Steven Rostedt <rostedt@xxxxxxxxxxx> Signed-off-by: Steven Rostedt <rostedt@xxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- drivers/char/rtc.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff -puN drivers/char/rtc.c~remove-unnecessary-barrier-in-rtc_get_rtc_time drivers/char/rtc.c --- a/drivers/char/rtc.c~remove-unnecessary-barrier-in-rtc_get_rtc_time +++ a/drivers/char/rtc.c @@ -1262,10 +1262,8 @@ void rtc_get_rtc_time(struct rtc_time *r * Once the read clears, read the RTC time (again via ioctl). Easy. */ - while (rtc_is_updating() != 0 && jiffies - uip_watchdog < 2*HZ/100) { - barrier(); + while (rtc_is_updating() != 0 && jiffies - uip_watchdog < 2*HZ/100) cpu_relax(); - } /* * Only the values that we read from the RTC are set. We leave _ Patches currently in -mm which might be from rostedt@xxxxxxxxxxx are origin.patch typo-fixes-for-rt-mutex-designtxt.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