public inbox for linux-scsi@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] qla2xxx: Remove use of 'struct timeval'
@ 2015-02-25  2:15 Tina Ruchandani
  2015-02-25 10:39 ` Arnd Bergmann
  2015-02-26  4:34 ` Saurav Kashyap
  0 siblings, 2 replies; 3+ messages in thread
From: Tina Ruchandani @ 2015-02-25  2:15 UTC (permalink / raw)
  To: linux-scsi; +Cc: Arnd Bergmann, James E.J. Bottomley

struct register_host_info stores a 64-bit UTC system time timestamp.
This patch removes the use of 'struct timeval' to obtain that timestamp
as its tv_sec value will overflow on 32-bit systems in year 2038 beyond.
The patch uses ktime_get_real_seconds() which returns a 64-bit seconds value.

Signed-off-by: Tina Ruchandani <ruchandani.tina@gmail.com>
---
 drivers/scsi/qla2xxx/qla_mr.c | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/drivers/scsi/qla2xxx/qla_mr.c b/drivers/scsi/qla2xxx/qla_mr.c
index 6d190b4..d64a64a 100644
--- a/drivers/scsi/qla2xxx/qla_mr.c
+++ b/drivers/scsi/qla2xxx/qla_mr.c
@@ -6,6 +6,7 @@
  */
 #include "qla_def.h"
 #include <linux/delay.h>
+#include <linux/ktime.h>
 #include <linux/pci.h>
 #include <linux/ratelimit.h>
 #include <linux/vmalloc.h>
@@ -1812,7 +1813,6 @@ qlafx00_fx_disc(scsi_qla_host_t *vha, fc_port_t *fcport, uint16_t fx_type)
 	struct host_system_info *phost_info;
 	struct register_host_info *preg_hsi;
 	struct new_utsname *p_sysid = NULL;
-	struct timeval tv;
 
 	sp = qla2x00_get_sp(vha, fcport, GFP_KERNEL);
 	if (!sp)
@@ -1886,8 +1886,7 @@ qlafx00_fx_disc(scsi_qla_host_t *vha, fc_port_t *fcport, uint16_t fx_type)
 			    p_sysid->domainname, DOMNAME_LENGTH);
 			strncpy(phost_info->hostdriver,
 			    QLA2XXX_VERSION, VERSION_LENGTH);
-			do_gettimeofday(&tv);
-			preg_hsi->utc = (uint64_t)tv.tv_sec;
+			preg_hsi->utc = (uint64_t)ktime_get_real_seconds();
 			ql_dbg(ql_dbg_init, vha, 0x0149,
 			    "ISP%04X: Host registration with firmware\n",
 			    ha->pdev->device);
-- 
2.2.0.rc0.207.ga3a616c


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] qla2xxx: Remove use of 'struct timeval'
  2015-02-25  2:15 [PATCH] qla2xxx: Remove use of 'struct timeval' Tina Ruchandani
@ 2015-02-25 10:39 ` Arnd Bergmann
  2015-02-26  4:34 ` Saurav Kashyap
  1 sibling, 0 replies; 3+ messages in thread
From: Arnd Bergmann @ 2015-02-25 10:39 UTC (permalink / raw)
  To: Tina Ruchandani; +Cc: linux-scsi, James E.J. Bottomley

On Wednesday 25 February 2015 07:45:12 Tina Ruchandani wrote:
> struct register_host_info stores a 64-bit UTC system time timestamp.
> This patch removes the use of 'struct timeval' to obtain that timestamp
> as its tv_sec value will overflow on 32-bit systems in year 2038 beyond.
> The patch uses ktime_get_real_seconds() which returns a 64-bit seconds value.
> 
> Signed-off-by: Tina Ruchandani <ruchandani.tina@gmail.com>

Reviewed-by: Tina Ruchandani <ruchandani.tina@gmail.com>

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] qla2xxx: Remove use of 'struct timeval'
  2015-02-25  2:15 [PATCH] qla2xxx: Remove use of 'struct timeval' Tina Ruchandani
  2015-02-25 10:39 ` Arnd Bergmann
@ 2015-02-26  4:34 ` Saurav Kashyap
  1 sibling, 0 replies; 3+ messages in thread
From: Saurav Kashyap @ 2015-02-26  4:34 UTC (permalink / raw)
  To: Tina Ruchandani, linux-scsi; +Cc: Arnd Bergmann, James E.J. Bottomley

[-- Attachment #1: Type: text/plain, Size: 1940 bytes --]

Acked-by: Saurav Kashyap <saurav.kashyap@qlogic.com>


>struct register_host_info stores a 64-bit UTC system time timestamp.
>This patch removes the use of 'struct timeval' to obtain that timestamp
>as its tv_sec value will overflow on 32-bit systems in year 2038 beyond.
>The patch uses ktime_get_real_seconds() which returns a 64-bit seconds
>value.
>
>Signed-off-by: Tina Ruchandani <ruchandani.tina@gmail.com>
>---
> drivers/scsi/qla2xxx/qla_mr.c | 5 ++---
> 1 file changed, 2 insertions(+), 3 deletions(-)
>
>diff --git a/drivers/scsi/qla2xxx/qla_mr.c b/drivers/scsi/qla2xxx/qla_mr.c
>index 6d190b4..d64a64a 100644
>--- a/drivers/scsi/qla2xxx/qla_mr.c
>+++ b/drivers/scsi/qla2xxx/qla_mr.c
>@@ -6,6 +6,7 @@
>  */
> #include "qla_def.h"
> #include <linux/delay.h>
>+#include <linux/ktime.h>
> #include <linux/pci.h>
> #include <linux/ratelimit.h>
> #include <linux/vmalloc.h>
>@@ -1812,7 +1813,6 @@ qlafx00_fx_disc(scsi_qla_host_t *vha, fc_port_t
>*fcport, uint16_t fx_type)
> 	struct host_system_info *phost_info;
> 	struct register_host_info *preg_hsi;
> 	struct new_utsname *p_sysid = NULL;
>-	struct timeval tv;
> 
> 	sp = qla2x00_get_sp(vha, fcport, GFP_KERNEL);
> 	if (!sp)
>@@ -1886,8 +1886,7 @@ qlafx00_fx_disc(scsi_qla_host_t *vha, fc_port_t
>*fcport, uint16_t fx_type)
> 			    p_sysid->domainname, DOMNAME_LENGTH);
> 			strncpy(phost_info->hostdriver,
> 			    QLA2XXX_VERSION, VERSION_LENGTH);
>-			do_gettimeofday(&tv);
>-			preg_hsi->utc = (uint64_t)tv.tv_sec;
>+			preg_hsi->utc = (uint64_t)ktime_get_real_seconds();
> 			ql_dbg(ql_dbg_init, vha, 0x0149,
> 			    "ISP%04X: Host registration with firmware\n",
> 			    ha->pdev->device);
>-- 
>2.2.0.rc0.207.ga3a616c
>
>--
>To unsubscribe from this list: send the line "unsubscribe linux-scsi" in
>the body of a message to majordomo@vger.kernel.org
>More majordomo info at  http://vger.kernel.org/majordomo-info.html


[-- Attachment #2: winmail.dat --]
[-- Type: application/ms-tnef, Size: 4780 bytes --]

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2015-02-26  4:34 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-02-25  2:15 [PATCH] qla2xxx: Remove use of 'struct timeval' Tina Ruchandani
2015-02-25 10:39 ` Arnd Bergmann
2015-02-26  4:34 ` Saurav Kashyap

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox