From patchwork Tue Feb 3 11:47:47 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tina Ruchandani X-Patchwork-Id: 5767941 Return-Path: X-Original-To: patchwork-linux-rdma@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork1.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.136]) by patchwork1.web.kernel.org (Postfix) with ESMTP id D02609F269 for ; Tue, 3 Feb 2015 11:47:56 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 14D7B200DB for ; Tue, 3 Feb 2015 11:47:56 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 3B45B2010C for ; Tue, 3 Feb 2015 11:47:55 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S933165AbbBCLry (ORCPT ); Tue, 3 Feb 2015 06:47:54 -0500 Received: from mail-pa0-f52.google.com ([209.85.220.52]:44918 "EHLO mail-pa0-f52.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932169AbbBCLrx (ORCPT ); Tue, 3 Feb 2015 06:47:53 -0500 Received: by mail-pa0-f52.google.com with SMTP id kx10so95290647pab.11 for ; Tue, 03 Feb 2015 03:47:53 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=date:from:to:cc:subject:message-id:mime-version:content-type :content-disposition:user-agent; bh=yT0eKaJi0IrU6cPQ3RZh132eta70dboGgdIFtEAh954=; b=yNIpgCQmf+wgl7OSNsA7e9fqLxthrRddrkTUE0S+6kgOUzDUPZRbPlNBYVE5n5n/TT 1lZaD5lkQAUtLzsqAaniFMraO96ai8Z+buDr720A5FHribtVlHUMWdIygr95rQrI2vDA oZdmbNFSvInzKmsE3luWN46pJdZMAAG0EH7VpEVv/bCmg2i0dKVIsjU1Pq9cU3A5u4rr VloWEdTOfPddYsiUs1v8u4+ja8RhX8vyt2INUgja776lxWLzXKv4O22LiRLbmkrFL5Cr dnoNfN872P6cC+0uUaGQG7wZGzP5ZrigP4G3g4HF1pfAw8CWaGVaUVv8z5psU2hEloRc nx0w== X-Received: by 10.66.118.109 with SMTP id kl13mr36947888pab.19.1422964073148; Tue, 03 Feb 2015 03:47:53 -0800 (PST) Received: from tinar ([14.97.171.135]) by mx.google.com with ESMTPSA id rx1sm1954888pbc.5.2015.02.03.03.47.52 (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Tue, 03 Feb 2015 03:47:52 -0800 (PST) Date: Tue, 3 Feb 2015 17:17:47 +0530 From: Tina Ruchandani To: linux-rdma@vger.kernel.org Cc: Arnd Bergmann , Faisal Latif , Roland Dreier , Sean Hefty Subject: [PATCH] RDMA/nes: Remove unused field sent_ts Message-ID: <20150203114747.GA7370@tinar> MIME-Version: 1.0 Content-Disposition: inline User-Agent: Mutt/1.5.21 (2010-09-15) Sender: linux-rdma-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-rdma@vger.kernel.org X-Spam-Status: No, score=-6.8 required=5.0 tests=BAYES_00, DKIM_ADSP_CUSTOM_MED, DKIM_SIGNED, FREEMAIL_FROM, RCVD_IN_DNSWL_HI, T_DKIM_INVALID, T_RP_MATCHES_RCVD, UNPARSEABLE_RELAY autolearn=ham version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP 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 Acked-by: Arnd Bergmann Acked-by: Faisal Latif --- drivers/infiniband/hw/nes/nes_cm.h | 1 - 1 file changed, 1 deletion(-) 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; };