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 CDFFBA0C43 for ; Sat, 8 May 2021 16:28:05 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id C1932410EC; Sat, 8 May 2021 16:28:05 +0200 (CEST) Received: from mail-pj1-f46.google.com (mail-pj1-f46.google.com [209.85.216.46]) by mails.dpdk.org (Postfix) with ESMTP id 2E8FB4013F for ; Sat, 8 May 2021 16:28:04 +0200 (CEST) Received: by mail-pj1-f46.google.com with SMTP id gx21-20020a17090b1255b02901589d39576eso587714pjb.0 for ; Sat, 08 May 2021 07:28:04 -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=Sy2uQeLQN/zRGQHoV8ol4TR/TuV24VYiggps4GIUBfI=; b=NIGX7Kafxwavkx0Pl8yE03M7tNK1CJpL3q/iaEmPg/DcP3U81QTPZ9ArsiO6mBDiD5 rVdm5CwBM4H4dUGDhoCxtohvU1tnaunw/UNBOWU0GepA8Y5dJM/ohTt8YuoWl5WAIhQG wp2nmE/MIOQVJ6TCWXRn9aO+8/PVwy191V7p4= 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=Sy2uQeLQN/zRGQHoV8ol4TR/TuV24VYiggps4GIUBfI=; b=XH3dBGo3MCujA64kL7iipPb3yvtL5EIDflzYSMfhCeISS+3zs5Gr1gkjpYqiZAH1NF SnpoZ3eL/dhxlsJzk4ag1YnQm1kVitA0aWYCW+BB3vSq0gI8Bxz/5JNOyClP27gVktW6 fAs/Mjbl8AyvTKAwTuFnfRBhJAJfeH2wIhj60ysml/jkrciUKs/cwd5aUps8Cm8Cnfri lHSFt4Jp3SHNtSmbaDnX6OfezVoib6tGedfM2sMqz9ZFCfx6qYi6D39Vh0w1KOFaJ/TO Vutdb4eauniea3/fHKT9w1mYPtAYTL9fj9kK3ityDNaBIY8CZkB27Stok3gtAU2V90nq G4/Q== X-Gm-Message-State: AOAM532eWdzKQYHeyXaBVUOnfVIdgGNaj26oKvYh0uUemfSZhtIX5tZR 7h9h8QnAbYPsbPfs65SN3+UesA== X-Google-Smtp-Source: ABdhPJzoG/fRC4GusnjmI7Rv69Zu89FF8Tcyro4dy3yIH7y4uq6+i7EI6RkWu3Nm5z/erPX08mLF0A== X-Received: by 2002:a17:90b:e98:: with SMTP id fv24mr30416469pjb.216.1620484083089; Sat, 08 May 2021 07:28:03 -0700 (PDT) Received: from localhost.localdomain ([192.19.231.250]) by smtp.gmail.com with ESMTPSA id l10sm7116918pfc.125.2021.05.08.07.27.59 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Sat, 08 May 2021 07:28:02 -0700 (PDT) From: Lance Richardson To: Dmitry Kozlyuk , Narcisa Ana Maria Vasile , Dmitry Malloy , Pallavi Kadam Cc: dev@dpdk.org, stable@dpdk.org Date: Sat, 8 May 2021 10:27:53 -0400 Message-Id: <20210508142753.114343-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="00000000000028c59305c1d25ab6" X-Content-Filtered-By: Mailman/MimeDel 2.1.29 Subject: [dpdk-stable] [PATCH v3] 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" --00000000000028c59305c1d25ab6 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 uint64_t instead. 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 --- v3: Use PRIx64 instead of llx to 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 | 2 +- lib/eal/unix/eal_unix_memory.c | 11 ++++++----- 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..c60317d0f5 100644 --- a/lib/eal/include/rte_eal_paging.h +++ b/lib/eal/include/rte_eal_paging.h @@ -61,7 +61,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, uint64_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..68ae93bd6e 100644 --- a/lib/eal/unix/eal_unix_memory.c +++ b/lib/eal/unix/eal_unix_memory.c @@ -5,6 +5,7 @@ #include #include #include +#include #include #include @@ -24,14 +25,14 @@ static void * mem_map(void *requested_addr, size_t size, int prot, int flags, - int fd, size_t offset) + int fd, uint64_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%"PRIx64"): %s\n", + requested_addr, size, prot, flags, fd, offset, + strerror(errno)); rte_errno = errno; return NULL; } @@ -106,7 +107,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, uint64_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..4db048ccb5 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, uint64_t offset) { HANDLE file_handle = INVALID_HANDLE_VALUE; HANDLE mapping_handle = INVALID_HANDLE_VALUE; -- 2.25.1 --00000000000028c59305c1d25ab6--