aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlison Schofield <amsfield22@gmail.com>2016-02-18 00:29:34 -0500
committerMartin K. Petersen <martin.petersen@oracle.com>2016-02-25 21:16:49 -0500
commit5a412c38bb5bb6fc6a5faaeac0d6d33d2c731b4c (patch)
tree1f069b29200763982c7aa63742f6125bcd9a854e
parentba690c79e5c4d1b5e8025a37139bfdd2a5e2e07a (diff)
gdth: replace struct timeval with ktime_get_real_seconds()
struct timeval will overflow on 32-bit systems in y2038 and is being removed from the kernel. Replace the use of struct timeval and do_gettimeofday() with ktime_get_real_seconds() which provides a 64-bit seconds value and is y2038 safe. gdth driver requires changes in two areas: 1) gdth_store_event() loads two u32 timestamp fields for ioctl GDTIOCTL_EVENT These timestamp fields are part of struct gdth_evt_str used for passing event data to userspace. At the first instance of an event we do (first_stamp=last_stamp="current time"). If that same event repeats, we do (last_stamp="current time") AND increment same_count to indicate how many times the event has repeated since first_stamp. This patch replaces the use of timeval and do_gettimeofday() with ktime_get_real_seconds() cast to u32 to extend the timestamp fields to y2106. Beyond y2106, the userspace tools (ie. RAID controller monitors) can work around the time rollover and this driver would still not need to change. Alternative: The alternative approach is to introduce a new ioctl in gdth with the u32 time fields defined as u64. This would require userspace changes now, but not in y2106. 2) gdth_show_info() calculates elapsed time using u32 first_stamp It is adding events with timestamps to a seq_file. Timestamps are calculated as the "current time" minus the first_stamp. This patch replaces the use of timeval and do_gettimeofday() with ktime_get_real_seconds() cast to u32 to calculate the timestamp. This elapsed time calculation is safe even when the time wraps (beyond y2106) due to how unsigned subtraction works. A comment has been added to the code to indicate this safety. Alternative: This piece itself doesn't warrant an alternative, but if we do introduce a new structure & ioctl with u64 timestamps, this would change accordingly. Signed-off-by: Alison Schofield <amsfield22@gmail.com> Reviewed-by: Arnd Bergmann <arnd@arndb.de> Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
-rw-r--r--drivers/scsi/gdth.c7
-rw-r--r--drivers/scsi/gdth_proc.c11
2 files changed, 10 insertions, 8 deletions
diff --git a/drivers/scsi/gdth.c b/drivers/scsi/gdth.c
index 71e138044379..0a767740bf02 100644
--- a/drivers/scsi/gdth.c
+++ b/drivers/scsi/gdth.c
@@ -2838,7 +2838,6 @@ static gdth_evt_str *gdth_store_event(gdth_ha_str *ha, u16 source,
2838 u16 idx, gdth_evt_data *evt) 2838 u16 idx, gdth_evt_data *evt)
2839{ 2839{
2840 gdth_evt_str *e; 2840 gdth_evt_str *e;
2841 struct timeval tv;
2842 2841
2843 /* no GDTH_LOCK_HA() ! */ 2842 /* no GDTH_LOCK_HA() ! */
2844 TRACE2(("gdth_store_event() source %d idx %d\n", source, idx)); 2843 TRACE2(("gdth_store_event() source %d idx %d\n", source, idx));
@@ -2854,8 +2853,7 @@ static gdth_evt_str *gdth_store_event(gdth_ha_str *ha, u16 source,
2854 !strcmp((char *)&ebuffer[elastidx].event_data.event_string, 2853 !strcmp((char *)&ebuffer[elastidx].event_data.event_string,
2855 (char *)&evt->event_string)))) { 2854 (char *)&evt->event_string)))) {
2856 e = &ebuffer[elastidx]; 2855 e = &ebuffer[elastidx];
2857 do_gettimeofday(&tv); 2856 e->last_stamp = (u32)ktime_get_real_seconds();
2858 e->last_stamp = tv.tv_sec;
2859 ++e->same_count; 2857 ++e->same_count;
2860 } else { 2858 } else {
2861 if (ebuffer[elastidx].event_source != 0) { /* entry not free ? */ 2859 if (ebuffer[elastidx].event_source != 0) { /* entry not free ? */
@@ -2871,8 +2869,7 @@ static gdth_evt_str *gdth_store_event(gdth_ha_str *ha, u16 source,
2871 e = &ebuffer[elastidx]; 2869 e = &ebuffer[elastidx];
2872 e->event_source = source; 2870 e->event_source = source;
2873 e->event_idx = idx; 2871 e->event_idx = idx;
2874 do_gettimeofday(&tv); 2872 e->first_stamp = e->last_stamp = (u32)ktime_get_real_seconds();
2875 e->first_stamp = e->last_stamp = tv.tv_sec;
2876 e->same_count = 1; 2873 e->same_count = 1;
2877 e->event_data = *evt; 2874 e->event_data = *evt;
2878 e->application = 0; 2875 e->application = 0;
diff --git a/drivers/scsi/gdth_proc.c b/drivers/scsi/gdth_proc.c
index e66e997992e3..be609db66807 100644
--- a/drivers/scsi/gdth_proc.c
+++ b/drivers/scsi/gdth_proc.c
@@ -148,7 +148,6 @@ int gdth_show_info(struct seq_file *m, struct Scsi_Host *host)
148 gdth_cmd_str *gdtcmd; 148 gdth_cmd_str *gdtcmd;
149 gdth_evt_str *estr; 149 gdth_evt_str *estr;
150 char hrec[161]; 150 char hrec[161];
151 struct timeval tv;
152 151
153 char *buf; 152 char *buf;
154 gdth_dskstat_str *pds; 153 gdth_dskstat_str *pds;
@@ -540,8 +539,14 @@ int gdth_show_info(struct seq_file *m, struct Scsi_Host *host)
540 if (estr->event_data.eu.driver.ionode == ha->hanum && 539 if (estr->event_data.eu.driver.ionode == ha->hanum &&
541 estr->event_source == ES_ASYNC) { 540 estr->event_source == ES_ASYNC) {
542 gdth_log_event(&estr->event_data, hrec); 541 gdth_log_event(&estr->event_data, hrec);
543 do_gettimeofday(&tv); 542
544 sec = (int)(tv.tv_sec - estr->first_stamp); 543 /*
544 * Elapsed seconds subtraction with unsigned operands is
545 * safe from wrap around in year 2106. Executes as:
546 * operand a + (2's complement operand b) + 1
547 */
548
549 sec = (int)((u32)ktime_get_real_seconds() - estr->first_stamp);
545 if (sec < 0) sec = 0; 550 if (sec < 0) sec = 0;
546 seq_printf(m," date- %02d:%02d:%02d\t%s\n", 551 seq_printf(m," date- %02d:%02d:%02d\t%s\n",
547 sec/3600, sec%3600/60, sec%60, hrec); 552 sec/3600, sec%3600/60, sec%60, hrec);