From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id D727238F63F for ; Mon, 13 Apr 2026 04:13:46 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1776053626; cv=none; b=ZOt/uwNMGQjgWquNmzhc4/9uuiJ+faiCqxpbT4qUAdVRQZQn6qlhluU8/z8zG4C8s91WyWg+LRu7c0d8BnFD4Jt9gWBbJJiPMGfSTKz6DenMUIu4t9eziaDJnwlFW5bmr5uF2vZZypi23ciGLvfgF3xGdiEIwnGynRTziJHBTF8= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1776053626; c=relaxed/simple; bh=pxagk5yV+DY99nTPoAEvTDDP5aILBrVm7mLdYn+29SA=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=Xig47G3hIKEUue+BEk0dZ4vyPdNc8mmGVavg/WaX5dybg8aorD+gQFhk1fZ6QRC6lizHZ7W3nP66DwE8OcTfDUmdQt80OsYN5i25PGgfqXuYdT3OhnMJqO5QMaJ1x6UP0di1USZvW+8NWgZwVxEYiQ4dy29C7bzctFyfH5tylCM= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=CIElmOhP; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="CIElmOhP" Received: by smtp.kernel.org (Postfix) with ESMTPSA id A9BCAC116C6; Mon, 13 Apr 2026 04:13:45 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1776053626; bh=pxagk5yV+DY99nTPoAEvTDDP5aILBrVm7mLdYn+29SA=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=CIElmOhPtiYdaYlipoOO12YViXUR0/D+KBdmUJlEbsqt580oD98NKdsvHG/Z+umoU 1GSBqMKuCmjvy0IUIHOQgSVXIvjPAxGyVgxeIvim/MDoeugBIvfQ54oFYagWiAI957 qxpuJPqpxZ48gKYQxWcBmlAnOiK09F+iDwz6WdyozV9RlYkUXL0wTPdabJ9HSyRUjd us87qKQPHHJPvlpx9I318RO/xdR2pkX+pGD0UD4XBai5Zi/k9VwNFZjg7+nGdswNhQ CjNP/Y9bu6nv1R3oa2MBS61RqI99cyVoN1vkulvbgNqxBcGPcs9cTF6WhntWeUryWO z1AMyCabRy8IQ== From: Sasha Levin To: "Maciej W. Rozycki" Cc: Sasha Levin , stable@vger.kernel.org, Thomas Bogendoerfer Subject: Re: [PATCH 5.10.y 1-5/5] MIPS: mm: kmalloc tlb_vpn array to avoid stack overflow Date: Mon, 13 Apr 2026 00:13:44 -0400 Message-ID: <20260412120103.mips-tlb-5.10@kernel.org> X-Mailer: git-send-email 2.53.0 In-Reply-To: <20260410005546.49873-1-macro@orcam.me.uk> References: <20260410005546.49873-1-macro@orcam.me.uk> Precedence: bulk X-Mailing-List: stable@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit > [PATCH 5.10.y 1-5/5] MIPS: mm: kmalloc tlb_vpn array to avoid > stack overflow NAK -- this series fails to build on 5.10: arch/mips/mm/tlb-r4k.c:765:31: error: passing argument 1 of 'memblock_free' makes integer from pointer without a cast The memblock_free() API on 5.10 takes phys_addr_t, not a pointer. The series needs to be adapted for the older memblock API.