Message ID | 20150203114747.GA7370@tinar (mailing list archive) |
---|---|
State | Rejected |
Headers | show |
On Tuesday 03 February 2015 17:17:47 Tina Ruchandani wrote: > This patch removes the unused field sent_ts from struct nes_cm_tcp_context. > This patch is part of an effort to clean up instances of timekeeping data-types > like 'struct timeval' which will overflow on 32-bit systems in year 2038 and > beyond. > > Signed-off-by: Tina Ruchandani <ruchandani.tina@gmail.com> > Acked-by: Arnd Bergmann <arnd@arndb.de> -- To unsubscribe from this list: send the line "unsubscribe linux-rdma" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
> From: Tina Ruchandani [mailto:ruchandani.tina@gmail.com] > Sent: Tuesday, February 03, 2015 5:48 AM > > This patch removes the unused field sent_ts from struct nes_cm_tcp_context. > This patch is part of an effort to clean up instances of timekeeping data-types > like 'struct timeval' which will overflow on 32-bit systems in year 2038 and > beyond. > > Signed-off-by: Tina Ruchandani <ruchandani.tina@gmail.com> > --- > -- > 2.2.0.rc0.207.ga3a616c Acked-by: Faisal Latif <faisal.latif@intel.com> -- To unsubscribe from this list: send the line "unsubscribe linux-rdma" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
diff --git a/drivers/infiniband/hw/nes/nes_cm.h b/drivers/infiniband/hw/nes/nes_cm.h index f522cf6..98948f1 100644 --- a/drivers/infiniband/hw/nes/nes_cm.h +++ b/drivers/infiniband/hw/nes/nes_cm.h @@ -279,7 +279,6 @@ struct nes_cm_tcp_context { u8 rcv_wscale; struct nes_cm_tsa_context tsa_cntxt; - struct timeval sent_ts; };
This patch removes the unused field sent_ts from struct nes_cm_tcp_context. This patch is part of an effort to clean up instances of timekeeping data-types like 'struct timeval' which will overflow on 32-bit systems in year 2038 and beyond. Signed-off-by: Tina Ruchandani <ruchandani.tina@gmail.com> --- drivers/infiniband/hw/nes/nes_cm.h | 1 - 1 file changed, 1 deletion(-)