From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 297A2A0A0E for ; Tue, 11 May 2021 16:46:09 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 194B84003E; Tue, 11 May 2021 16:46:09 +0200 (CEST) Received: from mail-pl1-f172.google.com (mail-pl1-f172.google.com [209.85.214.172]) by mails.dpdk.org (Postfix) with ESMTP id B632D4003E for ; Tue, 11 May 2021 16:46:07 +0200 (CEST) Received: by mail-pl1-f172.google.com with SMTP id h7so10947831plt.1 for ; Tue, 11 May 2021 07:46:07 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=broadcom.com; s=google; h=from:to:cc:subject:date:message-id:in-reply-to:references :mime-version; bh=fPYPok8qDWG1Ba47BNtItcISsHOV2sYXLRNKY8Rg5kU=; b=DRj7RrvPq/5SRYj+CMYeGj8DOSKR6mqJtaG7o9zTviX9ohJ0p/7oUwGYViC9EyQKj4 gkQSOVn5ZxqarzjSvR9Ru4oAjIs4kTTFykKI5htC/FnzSJ1uyo7LU/JVDFN9ZlDoOwYg hkWgwtPtz0thgAACpo4h56y2dqsA4LtKnA2qg= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references:mime-version; bh=fPYPok8qDWG1Ba47BNtItcISsHOV2sYXLRNKY8Rg5kU=; b=aMQdwN8D1jVY2n3b+rcrqc2G9J+5q/xnd8VUSl2a6Zjxktl/k/3XdoNFNTPL/+24ss K8YQCwrDTI4dFroMDrLR3jKmdFoISOGmj7qLtljI/3i5bn7D/CLLBSFuiccboxkS4n0+ id4BS4Ch9cFQbwDaCuG/oLFZPt6nfiazGbMoptLOesk+yiSeBzeGwefXVJrhBsIRDEzQ qm8jY5VmZWSXJSntTth8opiHQxuhed53N84chzp/XFw7PsgdU1W+1K6OX503+ubk35eZ /QFFL7+B1BjJVFczy6qpDImrBfB0j9JqhieUNjm6mMgAV4kRQLXwhaPJSZJ4sWVozUKU U2Rg== X-Gm-Message-State: AOAM5300n0exzhdVfhRq7BnC59jFDhh3eO/Jrz2YwkJgAiJEzpECLdKK rtCz8g2FHXEaTBhlqZPmAiIWHQ== X-Google-Smtp-Source: ABdhPJxxW4hynuDySTDGCU7CsWo799qGJhk7imvyd4DHqlJ2zzWRiZ8MEzExKpiVsynPG+AMca+mww== X-Received: by 2002:a17:902:fe06:b029:ef:77e8:da70 with SMTP id g6-20020a170902fe06b02900ef77e8da70mr145447plj.21.1620744366685; Tue, 11 May 2021 07:46:06 -0700 (PDT) Received: from localhost.localdomain ([192.19.231.250]) by smtp.gmail.com with ESMTPSA id d16sm14258305pgk.34.2021.05.11.07.46.01 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Tue, 11 May 2021 07:46:06 -0700 (PDT) From: Lance Richardson To: Dmitry Kozlyuk , Narcisa Ana Maria Vasile , Dmitry Malloy , Pallavi Kadam Cc: dev@dpdk.org, anatoly.burakov@intel.com, thomas@monjalon.net, stable@dpdk.org Date: Tue, 11 May 2021 10:45:54 -0400 Message-Id: <20210511144554.146987-1-lance.richardson@broadcom.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20210507181025.84012-1-lance.richardson@broadcom.com> References: <20210507181025.84012-1-lance.richardson@broadcom.com> MIME-Version: 1.0 Content-Type: multipart/signed; protocol="application/pkcs7-signature"; micalg=sha-256; boundary="000000000000458d3d05c20ef4b1" X-Content-Filtered-By: Mailman/MimeDel 2.1.29 Subject: [dpdk-stable] [PATCH v4] eal: fix memory mapping for 32-bit targets X-BeenThere: stable@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: patches for DPDK stable branches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: stable-bounces@dpdk.org Sender: "stable" --000000000000458d3d05c20ef4b1 Content-Transfer-Encoding: 8bit For 32-bit targets, size_t is normally a 32-bit type and does not have sufficient range to represent 64-bit offsets that can are needed when mapping PCI addresses. Use off_t instead, which is usually a 64-bit type when compiled with _D_FILE_OFFSET_BITS=64 as is the case for DPDK. Found when attempting to run 32-bit Linux dpdk-testpmd using VFIO driver: EAL: pci_map_resource(): cannot map resource(63, 0xc0010000, \ 0x200000, 0x20000000000): Invalid argument ((nil)) Fixes: c4b89ecb64ea ("eal: introduce memory management wrappers") Cc: stable@dpdk.org Signed-off-by: Lance Richardson --- v4: Identical to v1, with now included in rte_eal_paging.h to (hopefully) make off_t available for Windows builds. v3: Use PRIx64 instead of llx ot format offset in log message. v2: Use uint64_t instead of off_t (off_t is unknown to Windows). lib/eal/include/rte_eal_paging.h | 3 ++- lib/eal/unix/eal_unix_memory.c | 10 +++++----- lib/eal/windows/eal_memory.c | 2 +- 3 files changed, 8 insertions(+), 7 deletions(-) diff --git a/lib/eal/include/rte_eal_paging.h b/lib/eal/include/rte_eal_paging.h index ed98e70e9e..974bf5ee64 100644 --- a/lib/eal/include/rte_eal_paging.h +++ b/lib/eal/include/rte_eal_paging.h @@ -3,6 +3,7 @@ */ #include +#include #include @@ -61,7 +62,7 @@ enum rte_map_flags { __rte_internal void * rte_mem_map(void *requested_addr, size_t size, int prot, int flags, - int fd, size_t offset); + int fd, off_t offset); /** * OS-independent implementation of POSIX munmap(3). diff --git a/lib/eal/unix/eal_unix_memory.c b/lib/eal/unix/eal_unix_memory.c index ec7156df96..51a42e1a43 100644 --- a/lib/eal/unix/eal_unix_memory.c +++ b/lib/eal/unix/eal_unix_memory.c @@ -24,14 +24,14 @@ static void * mem_map(void *requested_addr, size_t size, int prot, int flags, - int fd, size_t offset) + int fd, off_t offset) { void *virt = mmap(requested_addr, size, prot, flags, fd, offset); if (virt == MAP_FAILED) { RTE_LOG(DEBUG, EAL, - "Cannot mmap(%p, 0x%zx, 0x%x, 0x%x, %d, 0x%zx): %s\n", - requested_addr, size, prot, flags, fd, offset, - strerror(errno)); + "Cannot mmap(%p, 0x%zx, 0x%x, 0x%x, %d, 0x%llx): %s\n", + requested_addr, size, prot, flags, fd, + (unsigned long long)offset, strerror(errno)); rte_errno = errno; return NULL; } @@ -106,7 +106,7 @@ mem_rte_to_sys_prot(int prot) void * rte_mem_map(void *requested_addr, size_t size, int prot, int flags, - int fd, size_t offset) + int fd, off_t offset) { int sys_flags = 0; int sys_prot; diff --git a/lib/eal/windows/eal_memory.c b/lib/eal/windows/eal_memory.c index 2cf5a5e649..f1c4b03e96 100644 --- a/lib/eal/windows/eal_memory.c +++ b/lib/eal/windows/eal_memory.c @@ -508,7 +508,7 @@ eal_mem_set_dump(void *virt, size_t size, bool dump) void * rte_mem_map(void *requested_addr, size_t size, int prot, int flags, - int fd, size_t offset) + int fd, off_t offset) { HANDLE file_handle = INVALID_HANDLE_VALUE; HANDLE mapping_handle = INVALID_HANDLE_VALUE; -- 2.25.1 --000000000000458d3d05c20ef4b1--