Merge tag 'driver-core-6.9-rc5' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core

Pull kernfs bugfix and documentation update from Greg KH:
"Here are two changes for 6.9-rc5 that deal with "driver core" stuff,
that do the following:

- sysfs reference leak fix

- embargoed-hardware-issues.rst update for Power

Both of these have been in linux-next for over a week with no reported
issues"

* tag 'driver-core-6.9-rc5' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core:
Documentation: embargoed-hardware-issues.rst: Add myself for Power
fs: sysfs: Fix reference leak in sysfs_break_active_protection()

Changed files
+3 -1
Documentation
fs
sysfs
+1 -1
Documentation/process/embargoed-hardware-issues.rst
··· 252 252 AMD Tom Lendacky <thomas.lendacky@amd.com> 253 253 Ampere Darren Hart <darren@os.amperecomputing.com> 254 254 ARM Catalin Marinas <catalin.marinas@arm.com> 255 - IBM Power Anton Blanchard <anton@linux.ibm.com> 255 + IBM Power Michael Ellerman <ellerman@au.ibm.com> 256 256 IBM Z Christian Borntraeger <borntraeger@de.ibm.com> 257 257 Intel Tony Luck <tony.luck@intel.com> 258 258 Qualcomm Trilok Soni <quic_tsoni@quicinc.com>
+2
fs/sysfs/file.c
··· 463 463 kn = kernfs_find_and_get(kobj->sd, attr->name); 464 464 if (kn) 465 465 kernfs_break_active_protection(kn); 466 + else 467 + kobject_put(kobj); 466 468 return kn; 467 469 } 468 470 EXPORT_SYMBOL_GPL(sysfs_break_active_protection);