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 7C67D1D6193 for ; Sat, 7 Feb 2026 11:09:15 +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=1770462555; cv=none; b=AqfqPkws3ATq+KhGKgb0QYmTVMxtPo/h9oks+M0bAfJseK7A3RgOJelJeUNjEBWikhxKXoiW9SIL5H7PfuRDPafXcn2w3MaB/L30am9Pxa/5DtRo39FWqiKA2mpcBrzYpfW4tYbb4x0TTilw9N8GH4sg4nzLcnLiix+I3OY/rXc= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1770462555; c=relaxed/simple; bh=xEoa2GcYKBdNxN3F0zOBSLbwhddyNTivDpx4W1UDeC0=; h=Date:From:To:Cc:Subject:Message-ID:MIME-Version:Content-Type: Content-Disposition; b=jM5mEVVIHmDk7EhqHgXw10JTOgtUyeV5CuyjahS0NPuFRLyHJf5on8rSiS2BxTvgEgEp6YrB8trVtkT8eGdWQ9BpqgOVLwwZYCtln2BcFQ3dDKAjr4xEK9wFuLud8s9IhWmxA4E3d//Y+JJJHuXaeU15ZjbNHlJS3qtZP3Lmrmk= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=XkQqB/A2; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="XkQqB/A2" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 88B13C116D0; Sat, 7 Feb 2026 11:09:14 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1770462555; bh=xEoa2GcYKBdNxN3F0zOBSLbwhddyNTivDpx4W1UDeC0=; h=Date:From:To:Cc:Subject:From; b=XkQqB/A2cBKSUMOPuYUYFwFUnejMxYHr0Eos5qjG3aaWYOr+ZzFKFlHfC+zbxbQIY /A97n6uz/5SHwRKNsH69AchNHSBFnWVTQxF9R/1elk2ZFjR5yBrkcCLe3eL95l45Zm mIE5e3c4cKJIaP5dGPaev6tTe/rnWDOncTn7nnIE= Date: Sat, 7 Feb 2026 12:09:06 +0100 From: Greg KH To: Linus Torvalds Cc: Andrew Morton , Arnd Bergmann , linux-kernel@vger.kernel.org Subject: [GIT PULL] Binder driver fixes for 6.19-final Message-ID: Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline The following changes since commit 63804fed149a6750ffd28610c5c1c98cce6bd377: Linux 6.19-rc7 (2026-01-25 14:11:24 -0800) are available in the Git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git tags/char-misc-6.19-final for you to fetch changes up to ec4ddc90d201d09ef4e4bef8a2c6d9624525ad68: binderfs: fix ida_alloc_max() upper bound (2026-02-03 12:59:07 +0100) ---------------------------------------------------------------- Binder fixes for 6.19-final Here are some small, last-minute binder C and Rust driver fixes for reported issues. They include a number of fixes for reported crashes and other problems. All of these have been in linux-next this week, and longer. Signed-off-by: Greg Kroah-Hartman ---------------------------------------------------------------- Alice Ryhl (2): rust_binder: correctly handle FDA objects of length zero rust_binder: add additional alignment checks Carlos Llamas (4): binder: fix UAF in binder_netlink_report() binder: fix BR_FROZEN_REPLY error log rust_binderfs: fix ida_alloc_max() upper bound binderfs: fix ida_alloc_max() upper bound drivers/android/binder.c | 19 +++++- drivers/android/binder/rust_binderfs.c | 8 +-- drivers/android/binder/thread.rs | 109 +++++++++++++++++++++------------ drivers/android/binderfs.c | 8 +-- 4 files changed, 94 insertions(+), 50 deletions(-)