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 90B121B4124 for ; Sun, 12 Jan 2025 14:06:22 +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=1736690782; cv=none; b=FXy8DeHzSy8IhgJwJq80emCiubcwKkgOQHiiy0jPVvH6xSiZ+z9nfKPVaYkyIIsxcbB1W5W6Onj4AfcvaOWD8A8vmA36A2LK5uOZsrqQ+3otiIsGNFhFLoW3kQyx6lWDySjbV/QexaosoxqUJkZc5t6pMEwIs/WQy2sgNdzNEmA= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1736690782; c=relaxed/simple; bh=JOX+FxhUJ1jdB4YtRdYsnl3o5BGc6fAVOW5DNePGmR8=; h=Date:From:To:Cc:Subject:Message-ID:MIME-Version:Content-Type: Content-Disposition; b=HdoBcNu4P0lOsGsGsciAhbDmO6fm/pvY2jGWOgiwo1kWp57sW7ydKBy7zd/0yQQkvZuPP8zno5HtYe0dY9f1ugdeuoD4W0BLiYlN9qPH9OucknKLM7degFkqxASMPtD7qNoImNs8WpyqGQ7BzERpHadtkiqcjPbrp5yx0tDlM/E= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=MvSi0Txu; 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="MvSi0Txu" Received: by smtp.kernel.org (Postfix) with ESMTPSA id B859CC4CEDF; Sun, 12 Jan 2025 14:06:21 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1736690782; bh=JOX+FxhUJ1jdB4YtRdYsnl3o5BGc6fAVOW5DNePGmR8=; h=Date:From:To:Cc:Subject:From; b=MvSi0TxuVUdg1LThjXeg6/zEmS7mNluQDmlG/XCaws12zNQu9YyzGwk4ABOzsWEQU fFGnarBhzMoO8wPZajeBkwF3h4YmF0Z8++nyEng0KGyltKB7B7WZLBx0by7B9PrYjR 7S92M6j6EGwoBj8Ihzx7B/tO5hljgPz9CmVV+seo= Date: Sun, 12 Jan 2025 15:06:19 +0100 From: Greg KH To: Linus Torvalds , Andrew Morton Cc: linux-kernel@vger.kernel.org, Stephen Rothwell , Saravana Kannan Subject: [GIT PULL] Driver core / debugfs fixes for 6.13-rc7 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 78d4f34e2115b517bcbfe7ec0d018bbbb6f9b0b8: Linux 6.13-rc3 (2024-12-15 15:58:23 -0800) are available in the Git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git tags/driver-core-6.13-rc7 for you to fetch changes up to 67510d7e2e5f5bdc020bf9d759aa575cce48c8e1: fs: debugfs: fix open proxy for unsafe files (2025-01-10 09:41:53 +0100) ---------------------------------------------------------------- Driver core and debugfs fixes for 6.13-rc7 Here are some small driver core and debugfs fixes for 6.13-rc7 that resolve some reported problems: - debugfs runtime error reporting fixes - topology cpumask race-condition fix - MAINTAINERS file email update All of these have been in linux-next this week with no reported issues. Signed-off-by: Greg Kroah-Hartman ---------------------------------------------------------------- Al Viro (1): debugfs: fix missing mutex_destroy() in short_fops case Danilo Krummrich (1): MAINTAINERS: align Danilo's maintainer entries Johannes Berg (2): fs: debugfs: differentiate short fops with proxy ops fs: debugfs: fix open proxy for unsafe files Li Huafei (1): topology: Keep the cpumask unchanged when printing cpumap MAINTAINERS | 4 +-- drivers/base/topology.c | 24 +++++++++++++--- fs/debugfs/file.c | 74 ++++++++++++++++++++++++++++++++++--------------- fs/debugfs/inode.c | 13 ++++----- fs/debugfs/internal.h | 6 +--- 5 files changed, 79 insertions(+), 42 deletions(-)