From owner-svn-src-projects@freebsd.org Sun May 22 07:39:26 2016 Return-Path: Delivered-To: svn-src-projects@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C3B91B44AB7 for ; Sun, 22 May 2016 07:39:26 +0000 (UTC) (envelope-from ngie@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 832EB1A89; Sun, 22 May 2016 07:39:26 +0000 (UTC) (envelope-from ngie@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u4M7dPv4080993; Sun, 22 May 2016 07:39:25 GMT (envelope-from ngie@FreeBSD.org) Received: (from ngie@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u4M7dPMg080992; Sun, 22 May 2016 07:39:25 GMT (envelope-from ngie@FreeBSD.org) Message-Id: <201605220739.u4M7dPMg080992@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ngie set sender to ngie@FreeBSD.org using -f From: Garrett Cooper Date: Sun, 22 May 2016 07:39:25 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r300404 - projects/vmware_pvscsi/sys/dev/vmware/vmw_pvscsi X-SVN-Group: projects MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 22 May 2016 07:39:26 -0000 Author: ngie Date: Sun May 22 07:39:25 2016 New Revision: 300404 URL: https://svnweb.freebsd.org/changeset/base/300404 Log: Fix i386 compilation by casting longs to *intmax_t type and using appropriate %j* format specifiers Modified: projects/vmware_pvscsi/sys/dev/vmware/vmw_pvscsi/vmw_pvscsi.c Modified: projects/vmware_pvscsi/sys/dev/vmware/vmw_pvscsi/vmw_pvscsi.c ============================================================================== --- projects/vmware_pvscsi/sys/dev/vmware/vmw_pvscsi/vmw_pvscsi.c Sun May 22 07:33:19 2016 (r300403) +++ projects/vmware_pvscsi/sys/dev/vmware/vmw_pvscsi/vmw_pvscsi.c Sun May 22 07:39:25 2016 (r300404) @@ -1100,7 +1100,7 @@ pvscsi_scsiio_timeout(void *data) getmicrotime(&tv); device_printf(pvscsi_dev(adapter), "SCSI IO TIMEOUT ctx>%p ccb>%p at " - "%ld.%06ld\n", ctx, ctx->cmd, tv.tv_sec, tv.tv_usec); + "%jd.%06ld\n", ctx, ctx->cmd, (intmax_t)tv.tv_sec, tv.tv_usec); /* Update the targ_t from the targ array with the TO info */ targ = adapter->pvs_tarrg + ctx->cmd->ccb_h.target_id; @@ -2280,8 +2280,8 @@ pvscsi_action(struct cam_sim *psim, unio target_id_t trg = pccb->ccb_h.target_id; if (pccb->ccb_h.target_lun) { - device_printf(device, "Non-zero LU number %lu\n", - pccb->ccb_h.target_lun); + device_printf(device, "Non-zero LU number %ju\n", + (uintmax_t)pccb->ccb_h.target_lun); pccb->ccb_h.status = CAM_LUN_INVALID; xpt_done(pccb); break;