From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id A7521C433FE for ; Fri, 18 Nov 2022 10:14:22 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S241387AbiKRKOV (ORCPT ); Fri, 18 Nov 2022 05:14:21 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:44652 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S235225AbiKRKOS (ORCPT ); Fri, 18 Nov 2022 05:14:18 -0500 Received: from ams.source.kernel.org (ams.source.kernel.org [145.40.68.75]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 74643786CD for ; Fri, 18 Nov 2022 02:14:17 -0800 (PST) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ams.source.kernel.org (Postfix) with ESMTPS id 278CEB82272 for ; Fri, 18 Nov 2022 10:14:16 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id BD66BC433B5; Fri, 18 Nov 2022 10:13:45 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1668766454; bh=sbvFiU3WT//xFRXS5d8RwEjf6Y/qYJbitoZ5MmHfsiA=; h=Date:From:To:Cc:Subject:From; b=PHm+bCIXEETMYKiwq85vNSua1C55njv8n6H0OukoPHpV1yHJJX2Ify9lxtDLbBmW8 WClKbrakYd7jUHgQmAQMYyoamFiYHgOD9tLAWmFxf2HEMU2EKUCcIFJc5+CTY8BRlM 5bch34A9NbYHFhw+sDRchwddGZLrg9sET2li1cwY= Date: Fri, 18 Nov 2022 10:28:29 +0100 From: Greg KH To: Linus Torvalds , Andrew Morton Cc: linux-kernel@vger.kernel.org, Stephen Rothwell , Saravana Kannan Subject: [GIT PULL] Driver core fixes for 6.1-rc6 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org The following changes since commit 9abf2313adc1ca1b6180c508c25f22f9395cc780: Linux 6.1-rc1 (2022-10-16 15:36:24 -0700) are available in the Git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git tags/driver-core-6.1-rc6 for you to fetch changes up to 1edfe4ea16ca2c9e91ec6cecd446b13636724e4f: kernfs: Fix spurious lockdep warning in kernfs_find_and_get_node_by_id() (2022-11-10 19:03:42 +0100) ---------------------------------------------------------------- Driver core fixes for 6.1-rc6 Here are 2 small driver core fixes for 6.1-rc6: - utsname fix, this one should already be in your tree as it came from a different tree earlier. - kernfs bugfix for a much reported syzbot report that seems to keep getting triggered. Both of these have been in linux-next for a while with no reported issues. Signed-off-by: Greg Kroah-Hartman ---------------------------------------------------------------- Petr Vorel (1): kernel/utsname_sysctl.c: Add missing enum uts_proc value Tejun Heo (1): kernfs: Fix spurious lockdep warning in kernfs_find_and_get_node_by_id() fs/kernfs/dir.c | 14 ++++++++++++-- include/linux/utsname.h | 1 + 2 files changed, 13 insertions(+), 2 deletions(-)