summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* python3: skip readline limited history testsTrevor Gamblin2024-08-152-0/+42
| | | | | | | | | | | | | Python 3.12.5 is failing a newer ptest for reading/writing limited history when editline (default) is set in PACKAGECONFIG. Skip it for now until a proper fix (if any) is determined. A bug has been opened upstream: https://github.com/python/cpython/issues/123018 (From OE-Core rev: de569ddffd5ea36b70c56df21dec9c892e5dee7d) Signed-off-by: Trevor Gamblin <tgamblin@baylibre.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* python3: upgrade 3.12.4 -> 3.12.5Trevor Gamblin2024-08-151-1/+1
| | | | | | | | | | Changelog: https://docs.python.org/release/3.12.5/whatsnew/changelog.html (From OE-Core rev: d9e2ebd6b24b802d1d4cd38b3b910e068c308809) Signed-off-by: Trevor Gamblin <tgamblin@baylibre.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* kernel.bbclass: remove unused CMDLINE_CONSOLEJon Mason2024-08-151-2/+0
| | | | | | | | | | | | CMDLINE_CONSOLE appears to be a legacy variable that is unused anywhere, and has not been modified the creation of the git tree. Remove it and make life simpler. (From OE-Core rev: d075b7c8f15488d98f0cda7b59de9dbed2a4f2d1) Signed-off-by: Jon Mason <jdmason@kudzu.us> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* python_flit_core: remove python3 dependencyKonrad Weihmann2024-08-151-1/+1
| | | | | | | | | | as this is correctly set by setuptools3-base already (From OE-Core rev: 6c4705d1cc5812ef6d1b17f46899007f1709af17) Signed-off-by: Konrad Weihmann <kweihmann@outlook.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* python3-setuptools-rust: upgrade 1.9.0 -> 1.10.1Tim Orling2024-08-151-7/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Set PYPI_PACKAGE = "setuptools_rust" * Cleanup SRC_URI as we do not need old tarball link anymore and PYPI_SRCURI should be the default. https://github.com/PyO3/setuptools-rust/compare/v1.9.0...v1.10.1 1.10.1 (2024-08-04) * Fixed - Fix regression in 1.10.0 where editable builds would be built in release mode 1.10.0 (2024-08-03) * Packaging - Extend macOS build flags to iOS, tvOS and watchOS. #436 - Support Python 3.13. #446 * Changed - Add SETUPTOOLS_RUST_PEP517_USE_BASE_PYTHON environment variable to use the base interpreter path when running inside a virtual environment to avoid recompilation when switching between virtual environments. #429 - Delay import of dependencies until use to avoid import errors during a partially complete install when multiple packages are installing at once. #437 - Deprecate --build-temp argument to build_rust command (it does nothing). #457 (From OE-Core rev: 14c67686cc306a4d5796a933fcb3cd3f27f2a2c9) Signed-off-by: Tim Orling <tim.orling@konsulko.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* python3-attrs: upgrade 23.2.0 -> 24.2.0Tim Orling2024-08-153-78/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Drop 0001-test_funcs-skip-test_unknown-for-pytest-8.patch fixed upstream in https://github.com/python-attrs/attrs/pull/1249 * Drop 0001-conftest.py-disable-deadline.patch upstream wanted to try doubling the deadline time https://github.com/python-attrs/attrs/pull/1252 from 200 ms default to 400 ms (we saw some times a bit greater than 200 ms) https://www.attrs.org/en/stable/changelog.html 24.2.0 - 2024-08-06 * Deprecations - Given the amount of warnings raised in the broader ecosystem, we’ve decided to only soft-deprecate the hash argument to @define / @attr.s. Please don’t use it in new code, but we don’t intend to remove it anymore. #1330 * Changes - attrs.converters.pipe() (and its syntactic sugar of passing a list for attrs.field()’s / attr.ib()’s converter argument) works again when passing attrs.setters.convert to on_setattr (which is default for attrs.define). #1328 - Restored support for PEP 649 / 749-implementing Pythons – currently 3.14-dev. #1329 24.1.0 - 2024-08-03 * Backwards-incompatible Changes - attrs.evolve() doesn’t accept the inst argument as a keyword argument anymore. Pass it as the first positional argument instead. #1264 - attrs.validators.provides() has been removed. The removed code is available as a gist for convenient copy and pasting. #1265 - All packaging metadata except from __version__ and __version_info__ has been removed from the attr and attrs modules (for example, attrs.__url__). - Please use importlib.metadata or importlib-metadata instead. #1268 - The generated __eq__ methods have been sped up significantly by generating a chain of attribute comparisons instead of constructing and comparing tuples. This change arguably makes the behavior more correct, but changes it if an attribute compares equal by identity but not value, like float('nan'). #1310 * Deprecations - The repr_ns argument to attr.s is now deprecated. It was a workaround for nested classes in Python 2 and is pointless in Python 3. #1263 - The hash argument to @attr.s, @attrs.define, and make_class() is now deprecated in favor of unsafe_hash, as defined by PEP 681. #1323 * Changes - Allow original slotted functools.cached_property classes to be cleaned by garbage collection. Allow super() calls in slotted cached properties. #1221 - Our type stubs now use modern type notation and are organized such that VS Code’s quick-fix prefers the attrs namespace. #1234 - Preserve AttributeError raised by properties of slotted classes with functools.cached_properties. #1253 - It is now possible to wrap a converter into an attrs.Converter and get the current instance and/or the current field definition passed into the converter callable. - Note that this is not supported by any type checker, yet. #1267 - attrs.make_class() now populates the __annotations__ dict of the generated class, so that attrs.resolve_types() can resolve them. #1285 - Added the attrs.validators.or_() validator. #1303 - The combination of a __attrs_pre_init__ that takes arguments, a kw-only field, and a default on that field does not crash anymore. #1319 - attrs.validators.in_() now transforms certain unhashable options to tuples to keep the field hashable. - This allows fields that use this validator to be used with, for example, attrs.filters.include(). #1320 - If a class has an inherited method called __attrs_init_subclass__, it is now called once the class is done assembling. - This is a replacement for Python’s __init_subclass__ and useful for registering classes, and similar. #1321 (From OE-Core rev: b8c45e8accdb7d74646fa15b775034eb3dcbdcd1) Signed-off-by: Tim Orling <tim.orling@konsulko.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* systemd: update from 256 to 256.4Mikko Rapeli2024-08-156-70/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Changes: 566210c272 meson: Bump version to 256.4 16de138427 mkosi: update debian commit reference b731debea9 hwdb: update to main@{2024-07-24} a78a524652 add udev rules for trezor hw wallet devices b825a8be0b core: reliably check if varlink socket has been deserialized 83c9043727 mkosi: Bump device timeout even more e60d01bdbf man/systemd-repart: extend description and reword some sentences 766af3f782 Document that MemorySwapMax supports % configuration 1922d49fd6 Make vcs-tag do something useful for non-developer mode as well 5b9ad0bbb8 tools/fetch-distro: switch to the target branch 8334be48a3 tools/fetch-distro: only fetch the configured branch 92890d56e8 tools/update-distro-hash: rename, fetch the repository if appropriate 1f079607f8 Merge pull request #33803 from bluca/v256-stable e05f93b5c4 mkosi: update arch commit reference c9d39eea98 mkosi: update fedora commit reference dbeed95d76 mkosi: Use the Fedora Rawhide spec for CentOS 6108f13fc0 mkosi: Switch back to PKG_SUBDIR instead of symlinks fd2a6ea0a8 zsh/_networkctl: remove duplicated argument for completion (#31926) 995c702a34 import-creds: when we hit ENOENT on SMBIOS 11 do not even debug log 6a3cb4cd11 core/unit: ignore dropins for masked units completely when checking need_reload f81659f5f3 test: add a reproducer for #33672 7fcfb73d71 shared: log error when execve fail 7da84cc154 test-execute: ExecStop= and friends should not get credentials 8f58652f5e test: override blocking localed policy in TEST-73-LOCALE d6f8575f1e meson: fix missing failure if bpf-framework was enabled e274de4b74 zsh: add varlinkctl completions cae58967a5 docs: Document how to do stable releases 468b064634 man: Mention Type=oneshot timeout directive d870f2335b l10n: fix credits for the French translation 8aa9e60f89 sd-device: remove debug log message when dirs are missing 86ec58a55c id128: refuse --app-specific= if we're listing GPT types b60d5bc1b7 gpt: add more architecture aliases b786185406 kernel-install: Remove existing loader entries and UKIs e63ae80a89 bootspec: correct log level for fatal errors 3736e21341 bootspec: implement sorting by tries left/done, to match what sd-boot does 18143edf3e boot: compare filename suffixes without case 78fcf31f08 man: some fixes bcda6d4637 man: fix typo in unit options section 1747350ffd fsck: do not pull down mount units on soft-reboot a68188e985 man: fix typo in the alias symlink name 15c236806c vmspawn: define default machines for mips targets fa2b2da146 path: drop IN_ATTRIB from parent directory watches 35e2f62967 Remove extra period at the end of systemd-bsod's unit description. (#33632) a40eb432cb test: Set priority for TEST-73-LOCALE 172ffeb813 TEST-06-SELINUX: Disable RuntimeBuildSources= 2fd3514456 test: Add missing --no-rebuild to doc 69c9044525 meson: Bump version to 256.3 16b12506a6 core/cgroup: check root cgroup earlier for unit_get_memory_accounting 06c2ee3979 core/cgroup: make unit_has_host_root_cgroup take const Unit* 15732ee31f core: unify reset_accounting handling 50a0a55066 core: do not drop CGroupRuntime when unit stops, but only on GC b08b5996d3 core/cgroup: use > 0 comparison rather than == 1 ffd90200b2 core/cgroup: actually make use of the cached accounting values 7684f52839 test-install-root: introduce test case for #33411 a42db16a1c shared/install: correctly report changes in install_info_symlink_alias() bb83650f96 shared/install: propagate all errors in install_info_apply() 908edce5b6 shared/install: drop unneeded initialization f414ca0ee3 systemctl: do not try to acquire triggering units for template units 67e0d09368 systemctl: skip triggering unit warning if unit vanished bb71d5dfb4 man/systemctl: --no-reload is honored by mask/unmask/preset too 7122e226c3 logind-dbus: set gc_mode to USER_GC_BY_PIN when disable linger 5d6bf58cf2 logind-user: take gc_mode into account when reporting user state bcb13a3fa2 test_ukify: do not use files from /boot 88264411b6 test_ukify: use sha384 in the signing tests 8b3bedd821 test_ukify: add instructions 168b788104 terminal-util: don't issue "ESC c" sequence on reset, but only when erasing the screen 5e4464bb64 mkosi: Bump default device timeout a little 0009ed8ee1 meson: Drop version from 256.3 to v256.2 1354f6194c meson: Drop ~devel suffix from systemd-stable version fe37213c55 Merge pull request #33774 from DaanDeMeyer/mkosi-backport 677126d300 mkosi: Fix indentation 4c25e572a9 mkosi: Fix typo 400222fa1c mkosi: Drop util-linux from centos/fedora packages dc3543a391 mkosi: Drop udev from Packages= list 82e2a5f47f mkosi: Fix formatting 11f065d3ee mkosi: Build CentOS Stream 10 images by default c54eab5dd0 mkosi: Streamline running the integration tests without building systemd 3bde2db7a4 meson: Drop genkey target baad1c0d0e mkosi: Skip sync script if NO_BUILD is enabled 102ed56c61 mkosi: Remove enforcing=0 from default kernel command line 611e82e660 mkosi: Stop setting apparmor=0 fa7892a690 docs: update mkosi version mentioned in HACKING.md (#33723) ad444842e0 Merge pull request #33735 from DaanDeMeyer/backport-mkosi a63e82ca4a repart: Allow overriding fstype per partition designator 9d05f2d559 mkosi: List library packages explicitly in VolatilePackages= 4a55046779 mkosi: Build initrd as a subimage 81bafc8dd9 mkosi: Drop CacheOnly=always from two subimages 1be0b1f54b TEST-13-NSPAWN: make sure we don't load libnss_systemd 0b9df91ce2 mkosi: Disable unique debug source names 89904fc10c systemd-networkd-tests: Skip tests requiring dhcpd if it is not available c3342c3dc7 TEST-55-OOMD: Remove the opensuse user@ dropin 127f8362c1 mkosi: Install binutils 1a995b9d66 TEST-64-UDEV-STORAGE: Use max_ioqpairs instead of num_queues 367ad876a6 mkosi: Use clang --print-runtime-dir 8b859fa29d mkosi: Extend arch build script comment about symlinks a8a7a6716e test: do not attempt to set xattr on tmpfs 3fc259ae25 mkosi: Add CI for CentOS Stream 10 945013a092 mkosi: Use squashfs for sysext if mkfs.erofs is not available 480f8fa839 mkosi: Make epel repositories optional for CentOS Stream 9 76e14148f6 mkosi: Introduce build image abc3a61e59 mkosi: update fedora commit reference 748cd5a703 mkosi: Update to latest 6d07d59237 Merge pull request #33691 from DaanDeMeyer/backport-mkosi 180814f22f mkosi: Switch back to code.opensuse.org for opensuse 976a0d998e test: install split-out sshd-session binary if present ca97b9a7e6 mkosi: update opensuse commit reference fef4746218 tools/update-distro-hash: Fix path 54eb9b9301 TEST-06-SELINUX: Various fixes de6c473b40 mkosi: Don't fail if /var/log/journal does not exist 74475a5169 test: Switch to ncat instead of nc 0c51e28088 TEST-55-OOMD: Switch to stress-ng 0c7d634157 docs: Simplify update commands in HACKING.md 5685a59371 mkosi: Update to latest 370bf11ec4 mkosi: Build a sysext if SYSEXT=1 is specified 0bdb879b3c mkosi: Check for configured build directory if WIPE=1 880c32b7e3 mkosi: Install erofs-utils cd357eb029 Merge pull request #33674 from DaanDeMeyer/backport-mkosi c350e02631 mkosi: Fix git commit 00bcc619db mkosi: Adapt configuration to take into account configuration rework 3cf12f4f9a mkosi: use apt pinning for locally built debian/ubuntu packages 7ab51fef1f mkosi: Make .autorelabel file empty 0123dbee1b mkosi: Update to latest 32981c454c build(deps): bump actions/checkout from 4.1.6 to 4.1.7 ab11d7e177 mkosi: policykit-1 was renamed to polkitd 8dd54e5adc mkosi: Use the "default" root filesystem for each distribution d28aa922fd meson: add option to build systemd-executor "statically" c3b4032fc3 meson: build libsystemd-core via an intermediate static library 9be2fe707e meson: rename libbasic to libbasic_static fcbafc3ffe Bump meson version to 256.3~devel c7e144eb4a Finalize v256.2 709655ea0d mkosi: switch debian to ci/v256-stable branch e8bbe635cd workflows/labeler: do not set labels on stable backport PRs aa1eb0b066 labeler: match all mkosi files 32f2b9bba6 labeler: remove matches for dropped files (Makefile) 9a2f16e4ed vmm: make sure we can handle smbios objects without variable part c32f71aa14 README: update requirements for signed dm-verity abba1e6bc2 sysusers: handle NSS errors gracefully df1ed3fbe2 man: fully adopt ~/.local/state/ 9d40e5c9c6 man: mention that distinction between /usr/lib/ and /usr/share/ is really about shared *ownership* 8dbb7e2a72 man: drop version info from file hiearchy man page 160b539a9d os-util: avoid matching on the wrong extension-release file 0ff6d2cf47 load-fragment: allow MountImages= with paths starting with /dev cc4472c31e zsh: add run0 completions d0a9cf084d docs: Update HACKING a50e6c5709 README: add missing CONFIG_MEMCG kernel config option for oomd 71de25f2df boot: cover for hardware keys on phones/tablets 243276f008 core/manager: invoke special targets on signal only for system manager efc44e0c3e core/dbus-manager: refuse SoftReboot() for user managers 399e788553 meson: Define __TARGET_ARCH macros required by bpf a946258e9d coredump: correctly take tmpfs size into account for compression 05dcd242dc docs: update RELEASE.md to use same repository for stable branches 0a97db8789 docs: Add section to HACKING.md on distribution packages 3c91ea49d2 docs/CODING_STYLE: document that we nowadays prefer (const char*) for func ret type ea92f16422 test: fix TEST-74-AUX-UTILS.ssh.sh on SUSE f52475dcf3 test: preserve symlink in inst_recursive() 10b7e0a0af test: fix TEST-24-CRYPTSETUP on SUSE 4f7d6885a1 test: install /etc/hosts e94e33b566 test: split the resolved test suite into separate test cases 4d561a0e08 mkosi: update debian commit reference 05c9bc547b units: add dep on systemd-logind.service by user@.service d1cd66ca97 repart: add sections to --help text c2f74defaa Conditional PSI check to reflect changes done in 5.13 df990be913 core: try again bind mounting if the destination was already created 24987eb3cc mkfs-util: Set sector size for btrfs as well e34f436433 repart: Don't set filesystem sector size to 512 3c88c94432 repart: Log more about filesystem sector size 86d47d63b0 core/unit: follow merged units before updating SourcePath= timestamp too 9dec66fc5f meson: use less verbose quoting 6c8e99dedd TEST-54-CREDS: Use UEFI firmware if available 78631dcafd TEST-18-FAILUREACTION: Set auto firmware 71fb49d02c TEST-09-REBOOT: Set auto firmware 938f7b6f29 TEST-06-SELINUX: Explicitly pull in autorelabel.service 37412c952d TEST-70-TPM2: Use UEFI firmware if available 7ee60a8614 resolved: correct parsing of OPT extended RCODEs 711f843e3a TEST-45-TIMEDATE: Use syslog identifier journalctl match 6ead24fcac resolved: allow the full TTL to be used by OPT records dc0167b674 TEST-64-UDEV-STORAGE: Make nvme_subsystem expected pci symlinks more generic fb747bd8cd LICENSES/README: expand text to summarize state for binaries and libs ffc8126cc6 test: pull in multi-user.target explicitly b908f492bc TEST-64-UDEV-STORAGE: Fix python 3.9 compatibility 1c4f25c296 TEST-64-UDEV-STORAGE: Use bus pci slot 1 instead of 0 9663bb7410 TEST-58-REPART: reverse order of diff args 2f455914f7 man/tmpfiles: remove outdated behavior regarding symlink ownership 24dd273402 test-mountpoint-util: add a test for bind mounted symlinks 99cb4bdbbb mountpoint-util: do not assume symlinks are not mountpoints 4437967cab hostnamed: if polkit authentication fails for Varlink Describe() call, don't reply to client with an error fb7ec285c9 core/exec-invoke: use sched_setattr instead of sched_setscheduler 5911f1ec25 cryptsetup: improve TPM2 blob display 57661f4ea9 util: make file_read() 64bit offset safe e2fb3dda24 man/capsule@.service: the capsule user is prefixed with "c-" rather than "p_" 2547de4629 man/capsule@.service.xml: fix typo 98928cf0a7 nspawn, vmspawn: honor the new window title switch 9cbb3aadd5 run: add environment variable to prevent the setting of terminal title 81acc5b39a test-execute: add a test case for issue #33299 d008b3fb26 core: do not filter out write() if required in the very late stage d580b1f850 core: use write() to send handoff timestamp 52eeeb7d3d seccomp-util: split out seccomp_filter_set_add_by_name() 8e775590f1 Fix typo in CAP_BPF description (#33464) 54910267ba test-network: check if static routes not overridden by NDisc routes 4fda6e8f34 network/ndisc: do not remove static routes when received RA with zero lifetime 34bef8dfac network/ndisc: do not override conflicting static routes 0b909bf685 core/exec-invoke: reopen OpenFile= fds with O_NOCTTY 52371fe526 core: verify WorkingDirectory= is outside of API VFS only under mount namespacing ec5ac3ea53 terminal-util: use colon as separator for specifying color 421ccd7094 man: fix double is typo in systemd-tmpfiles 778034f42e test: skip test-cgroup-id on ENOSYS from cg_cgroupid_open 3174fae67b meson: bpf: propagate 'sysroot' for cross compilation a6906475be kernel-install: correct the place where it works in man and help text 3e435e970d man/systemd.exec: list inaccessible files for ProtectKernelTunables 90b5cb35e9 Use consistent spelling of systemd.condition_first_boot argument b6316b8fac login/user-runtime-dir: free ignored sd_bus_error, avoid triggering assertion 71546deef5 login/user-runtime-dir: use STRLEN where appropriate fbfc88af5e pretty-print: take console glyph width into account when drawing progress bar 058fca7e6c mkosi: add support for TEST_SAVE_JOURNAL to integration test wrapper 50ae476efd semaphore: pin packaging to ci/v256/stable branch 771bb489bf test: skip TEST-69-SHUTDOWN on Debian 69c51768ef meson: Bump version to 256.2~devel 273b5622ac meson: Fix various versions 9150ffc98a src/boot/efi/meson.build: ensure VERSION_TAG exists in case of cross build 1eb122033f mkosi: Build a disk image by default again 84d6fec8f9 meson: Deal with potential stable versions 851f991b1c mkosi: bump to latest commit 3d3bc1d999 mkosi: Switch back to btrfs ce41fdbfdc mkosi: Install btrfs-progs on CentOS as well 1566c15fe4 mkosi: Enable hyperscale-packages-experimental for CentOS 33ad0ea834 mkosi: Drop leftover systemd-coredump-debuginfo package for opensuse 2286ae91f4 mkosi: Drop s390x console patch from opensuse spec 7404ba69cf mkosi: use new standalone-shutdown package for debian's exitrd 3f0763b5a6 mkosi: update debian commit reference 9d0259e5bc mkosi: bump Debian Salsa commit to latest 87fc64db36 mkosi: install new split-out systemd packages 245d17d8dd mkosi: update arch commit reference 8717dc0dd4 mkosi: switch opensuse to devel branch 6f720b609a mkosi: update fedora commit reference a09800cd16 mkosi: update fedora commit reference e3703f4327 mkosi: Install zypper in opensuse images a7da351f39 mkosi: Fix sync script git command a39473aac7 mkosi: Clean up old packages from the build directory 2e0af5f6fe mkosi: remove conflicting deb packages from builddir 6a898c35da mkosi: Copy packages to the build directory as well 16ea64e2be mkosi: Make sure we don't hide errors from git merge-base 3f42d88faa mkosi: Install perf f2c782c043 mkosi: Install pciutils 054fc83a23 mkosi: move variable to the right scope 8abb2e0f55 mkosi: Don't touch the packaging checkout if work is being done 59ab01d32f vmspawn: define QEMU_MACHINE_TYPE for loongarch64 ba28889c65 vmspawn: define QEMU_MACHINE_TYPE for riscv 715d146a3a docs: fix dead link to GNOME documentation 34ba18b012 logs-show: do not use _SOURCE_MONOTONIC_TIMESTAMP field f8f669fd69 repart: fix memory leak 7b18adadde mkosi: restrict noble-backports to noble builds 08b8237303 tmpfiles: move --purge to command section in --help text where it belongs e760157389 tmpfiles: insist on at least one configuration file being specified on --purge 90ec026570 tmpfiles: honour --dry-run when removing directories c26e56d08f install: allow removing symlinks even for units that are gone a776dcf7af NEWS: fix typo d89c99c7ad mkosi: bump to latest b455006ae1 CI: disable secure boot in mkosi GHA runs 4cc6da9a5d test-network: mention that the captive portal option is supported since v2.20 f7d55cc801 core/service: fix accept-socket deserialization 7d65709901 test: use 'auto' instead of 'uefi' for automated fallback 6178aa4bbc test: support TEST_NO_QEMU in mkosi integration wrapper a36cb5660e test: support TEST_NO_KVM df1e7d9572 test: drop obsolete comment 51a2e7be5e test: drop unneeded firmware: uefi setting 50b53b8221 test: check the skip condition before installing additional files 9802a28b36 mkosi: install EFI packages only on EFI architectures 21feae324e mkosi: use ports.ubuntu.com for non-x86 backports 9f5f3c2f8b mkosi: enable unprivileged user ns for integration tests 1a0e6961cf man,units: drop "temporary" from description of systemd-tmpfiles aedeaf7450 man: add a bit of a warning to systemd-tmpfiles --purge 3706b5e8e9 fundamental: declare flex array updated for gcc15 and clang 19 51390a1f41 analyze: show pcrs also in sha384 bank a61a83a22b CODING_STYLE: document "reterr_" return parameters 2034de6157 shell-completion: only offer devices for completion 4ebcdcb136 NEWS: note that new stable releases will be in the main repo d316aed5d8 repart: Use CRYPT_ACTIVATE_PRIVATE 4a468387ac test: dump a simple summary at the end of TEST-02-UNITTEST 70f5fb2f7a repart: Use crypt_reencrypt_run() if available ba031f1fe8 resolved: permit dnssec rrtype questions when we aren't validating 30df42a927 tpm2-setup: Don't fail if we can't access the TPM due to authorization failure 514ef0f93b strbuf: use GREEDY_REALLOC to grow the buffer a3d94332a2 rules: Limit the number of device units generated for serial ttys 0d573787ea sd-dhcp-server: clear buffer before receive f2b5c1ff51 hostnamed: don't allow hostnamed to exit on idle if varlink connections are still ongoing d918804408 man/systemd: reorder content a bit 1c27c902ad Create CNAME Dropped merged patches: 0001-src-boot-efi-meson.build-ensure-VERSION_TAG-exists-i.patch 0003-meson-bpf-propagate-sysroot-for-cross-compilation.patch Changed git repo back to systemd main one since that is going to be used for v256-stable branch and newer releases instead of the systemd-stable git repo. (From OE-Core rev: ab6c94006c1e902d63cdd04d978ea3b74fe811b2) Signed-off-by: Mikko Rapeli <mikko.rapeli@linaro.org> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* Tiff: Security fix for CVE-2024-7006Siddharth Doshi2024-08-152-0/+66
| | | | | | | | | | | | | Upstream-Status: Backport from [https://gitlab.com/libtiff/libtiff/-/commit/818fb8ce881cf839fbc710f6690aadb992aa0f9e] CVE's Fixed: CVE-2024-7006 libtiff: NULL pointer dereference in tif_dirinfo.c (From OE-Core rev: 5313b4b233a486e8a1483757ad9c9aed3a213aae) Signed-off-by: Siddharth Doshi <sdoshi@mvista.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* python3-cython: fix upstream check againAlexander Kanavin2024-08-151-0/+1
| | | | | | | | (From OE-Core rev: f729b7717ff39347ecc11ace884d6a44d96e2112) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* python3-zipp: upgrade 3.19.2 -> 3.20.0Tim Orling2024-08-151-1/+1
| | | | | | | | | | | | | | | | | | | | | https://github.com/jaraco/zipp/compare/v3.19.1...v3.20.0 v3.20.0 * Features - Made the zipfile compatibility overlay available as zipp.compat.overlay. v3.19.3 * Bugfixes - Also match directories in Path.glob. (#121) v3.19.2 - No significant changes. (From OE-Core rev: 85d86591886d17b507cb9cc76ebfc8d3322aa86a) Signed-off-by: Tim Orling <tim.orling@konsulko.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* python3-wheel: upgrade 0.43.0 -> 0.44.0Tim Orling2024-08-151-1/+1
| | | | | | | | | | | | | | | https://wheel.readthedocs.io/en/stable/news.html 0.44.0 (2024-08-04) * Canonicalized requirements in METADATA file (PR by Wim Jeantine-Glenn) * Deprecated the bdist_wheel module, as the code was migrated to setuptools itself (From OE-Core rev: 642d2891c494c2e22553885ec8437c17e98d3171) Signed-off-by: Tim Orling <tim.orling@konsulko.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* python3-more-itertools: upgrade 10.3.0 -> 10.4.0Tim Orling2024-08-151-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | v10.4.0 * What's Changed - Issue 854: sample improvements by @bbayles in #855 - Issue 858: Use chain and starmap in run_length.decode by @bbayles in #861 - Issue 859: Update totient recipe by @bbayles in #860 - Distinct permutations of incomparable items by @JamesParrott in #834 - Clarify seekable.relative_seek behavior by @bbayles in #863 - Issue 864: Improve _sample_unweighted by @bbayles in #865 - Use log1p for _sample_unweighted by @bbayles in #868 - Issue 862: change relative_seek() behaviour by @dkrikun in #866 - Issue 876: is_sorted clarifications by @bbayles in #877 - Issue 870: counts parameter for sample by @bbayles in #875 - Issue 869: Add a steps argument to circular_shifts by @bbayles in #874 - Issue 871: Add a fast path for sliding_window by @bbayles in #873 - type annotation of windowed_complete corrected by @m472 in #881 - [Docs] Fix strictly_n missing the n parameter by @fakuivan in #886 - Standardize type hints for isinstance's second argument by @jbosboom in #887 - Issue 883: change type hint by @akisatoon1 in #884 - Add type overloads for zip_broadcast by @Pandede in #888 - Issue 889: Optimize triplewise by @bbayles in #891 - Add option strict to sort_together by @Pandede in #892 - Updates for version 10.4.0 by @bbayles in #893 (From OE-Core rev: 484401a7608c1467d17f82d8056234bb39e9b0b5) Signed-off-by: Tim Orling <tim.orling@konsulko.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* python3-cffi: upgrade 1.16.0 -> 1.17.0Tim Orling2024-08-151-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | https://github.com/python-cffi/cffi/compare/v1.17.0...v1.16.0 https://cffi.readthedocs.io/en/latest/whatsnew.html#v1-17 v1.17 * In API mode, when you get a function from a C library by writing fn = lib.myfunc, you get an object of a special type for performance reasons, instead of a <cdata ‘C-function-type’>. Before version 1.17 you could only call such objects. You could write ffi.addressof(lib, “myfunc”) in order to get a real <cdata> object, based on the idea that in these cases in C you’d usually write &myfunc instead of myfunc. In version 1.17, the special object lib.myfunc can now be passed in many places where CFFI expects a regular <cdata> object. For example, you can now pass it as a callback to a C function call, or write it inside a C structure field of the correct pointer-to-function type, or use ffi.cast() or ffi.typeof() on it. (From OE-Core rev: 375e59bfb4d610f89dd04c93f912d5847a5fac4f) Signed-off-by: Tim Orling <tim.orling@konsulko.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* python3-alabaster: upgrade 0.7.16 -> 1.0.0Tim Orling2024-08-151-1/+1
| | | | | | | | | | | | | | | | | | | | | https://alabaster.readthedocs.io/en/latest/changelog.html 1.0.0 – 2024-07-26 * Dropped support for Python 3.9 and earlier. * Dropped support for Sphinx 6.1 and earlier. * Use a new SVG image for the GitHub banner. * #217 Use the new searchfield component for the search box. Patch by Tim Hoffmann. * #104 Allow translating strings in relations.html. * #125 Do not underline linked images. Patch by Joshua Bronson. * #169 Do not ignore the Pygments background colour. Patch by Matthias Geier. * #174 Fix clipping caused by incorrect CSS breakpoints. (From OE-Core rev: 0a23a085ed83994a606a13ada8992ad9c4b935f6) Signed-off-by: Tim Orling <tim.orling@konsulko.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* python3-rpds-py: upgrade 0.18.1 -> 0.20.0Tim Orling2024-08-152-65/+39
| | | | | | | | | | | | | | | | | | | | https://github.com/crate-py/rpds/compare/v0.20.0...v0.18.1 v0.20.0 * Implements __hash__ for collections by @FlickerSoul in #81 v0.19.1 * Make Python versions in GitHub Actions consistent by @rominf in #80 v0.19.0 * deps: bump libc from 0.2.147 to 0.2.155 by @wxpppp in #74 * Make Python 3.13 Compatible by @FlickerSoul in #79 (From OE-Core rev: ec08c14aa4b752abd1a41cbee328dcb19056ee7f) Signed-off-by: Tim Orling <tim.orling@konsulko.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* gnupg: Document CVE-2022-3219 and mark wontfixKhem Raj2024-08-151-0/+1
| | | | | | | | (From OE-Core rev: f10f9c3a8d2c17d5a6c3f0b00749e5b34a66e090) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* linux-yocto/6.6: fix genericarm64 config warningBruce Ashfield2024-08-143-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Integrating the following commit(s) to linux-yocto/.: 1/1 [ Author: Bruce Ashfield Email: bruce.ashfield@gmail.com Subject: genericarm64: drop CONFIG_MTD_NAND_FSL_IFC Date: Tue, 13 Aug 2024 15:17:10 -0400 We are getting the following warning in recent 6.6+ kernels: WARNING: linux-yocto-6.6.45+git-r0 do_kernel_configcheck: [kernel config]: specified values did not make it into the kernel's final configuration: [NOTE]: 'CONFIG_MTD_NAND_FSL_IFC' last val (y) and .config val (n) do not match [INFO]: CONFIG_MTD_NAND_FSL_IFC : n [INFO]: raw config text: config MTD_NAND_FSL_IFC tristate "Freescale IFC NAND controller" depends on (FSL_SOC || ARCH_LAYERSCAPE || SOC_LS1021A || COMPILE_TEST) && HAS_IOMEM && FSL_IFC && MTD_RAW_NAND && MTD help Various Freescale chips e.g P1010, include a NAND Flash machine with built-in hardware ECC capabilities. Enabling this option will enable you to use this to control external NAND devices. Config 'MTD_NAND_FSL_IFC' has the following Direct dependencies (MTD_NAND_FSL_IFC=n): FSL_SOC(undefined/n) || ARCH_LAYERSCAPE(=y) || SOC_LS1021A(undefined/n) || COMPILE_TEST(=n) (=y) && HAS_IOMEM(=y) && FSL_IFC(=n) && MTD_RAW_NAND(=y) && MTD(=y) Parent dependencies are: SOC_LS1021A [SOC_LS1021A] MTD [y] ARCH_LAYERSCAPE [y] HAS_IOMEM [y] FSL_SOC [FSL_SOC] COMPILE_TEST [n] MTD_RAW_NAND [y] FSL_IFC [n] [INFO]: config 'CONFIG_MTD_NAND_FSL_IFC' was set, but it wasn't assignable, check (parent) dependencies The most significant missing option that is disabling this config value is FSL_SOC, which is only defined in arch/powerpc. As such, there's no sense keeping this option in the genericarm64 config as it is only enabled via arch/powerpc. Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> ] (From OE-Core rev: 3809e8255e65c0013bf2012559b825be6c1221d0) Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* linux-yocto/6.6: update to v6.6.45Bruce Ashfield2024-08-143-20/+20
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Updating linux-yocto/6.6 to the latest korg -stable release that comprises the following commits: 878fbff41def Linux 6.6.45 ee3c845787b6 mptcp: prevent BPF accessing lowat from a subflow socket. 6f2b21806e9a selftests: mptcp: join: check backup support in signal endp 8213b98e55ce selftests: mptcp: join: validate backup in MPJ ffe8c864c89f selftests: mptcp: always close input's FD if opened bf39cfc0236f mptcp: fix duplicate data handling bd1d1fc4bc61 mptcp: pm: only set request_bkup flag when sending MP_PRIO 19bf32929bc0 mptcp: fix bad RCVPRUNED mib accounting 6721cbaa04e5 mptcp: mib: count MPJ with backup flag e680e635ed06 mptcp: fix NL PM announced address accounting 8ed3e34c766e mptcp: distinguish rcv vs sent backup flag in requests 201b76f62453 mptcp: fix user-space PM announced address accounting 7e927022495a r8169: don't increment tx_dropped in case of NETDEV_TX_BUSY f2b5be33a3b5 net: usb: sr9700: fix uninitialized variable use in sr_mdio_read 6c0473c9ac50 drm/i915: Fix possible int overflow in skl_ddi_calculate_wrpll() a62c98142ca1 drm/virtio: Fix type of dma-fence context variable a8943969f9ea drm/vmwgfx: Fix a deadlock in dma buf fence polling f5043e69aeb2 Revert "ALSA: firewire-lib: operate for period elapse event in process context" 5f8a5a1dd269 Revert "ALSA: firewire-lib: obsolete workqueue for period update" 8dd4a10fdc00 ALSA: seq: ump: Optimize conversions from SysEx to UMP 79d3823e1f7d ALSA: hda/realtek: Add quirk for Acer Aspire E5-574G b4dd36f912f2 ALSA: usb-audio: Correct surround channels in UAC1 channel map add243b7f6ce mptcp: sched: check both directions for backup da72e783afd2 protect the fetch of ->fd[fd] in do_dup2() from mispredictions 0caf15bee7b1 btrfs: do not subtract delalloc from avail bytes ae29e6f764f6 btrfs: zoned: fix zone_unusable accounting on making block group read-write again 92566c0fd72b HID: wacom: Modify pen IDs b8774d3137e5 platform/chrome: cros_ec_proto: Lock device when updating MKBP version 5e5a29bd54a2 rust: SHADOW_CALL_STACK is incompatible with Rust dd0aaa9ac450 arm64: jump_label: Ensure patched jump_labels are visible to all CPUs 40208cdbb2a7 riscv: Fix linear mapping checks for non-contiguous memory regions 917f598209f3 riscv/mm: Add handling for VM_FAULT_SIGSEGV in mm_fault_error() fa12277fa218 perf: riscv: Fix selecting counters in legacy mode 10b26868bfb2 riscv: remove unused functions in traps_misaligned.c 93e2beae841b ipv6: fix ndisc_is_useropt() handling for PIO 5635301ed5bc igc: Fix double reset adapter triggered from a single taprio cmd 82b9a3804a8b net/mlx5e: Add a check for the return value from mlx5_port_set_eth_ptys daab2cc17b6b net/mlx5e: Fix CT entry update leaks of modify header context db4ba08c2371 net/mlx5e: Require mlx5 tc classifier action support for IPsec prio capability 98884e89c90d net/mlx5: Fix missing lock on sync reset reload f6f846005d2b net/mlx5: Lag, don't use the hardcoded value of the first port 315d00c7bc92 net/mlx5: Fix error handling in irq_pool_request_irq 6b6c2ebd83f2 net/mlx5: Always drain health in shutdown callback e85b9b6a87be netfilter: iptables: Fix potential null-ptr-deref in ip6table_nat_table_init(). 70014b73d753 netfilter: iptables: Fix null-ptr-deref in iptable_nat_table_init(). 2c2868a76667 ALSA: hda: Conditionally use snooping for AMD HDMI 2094996159b4 net: phy: micrel: Fix the KSZ9131 MDI-X status issue eb2926cad1cf net: mvpp2: Don't re-use loop iterator 9541f99b2651 drm/i915/hdcp: Fix HDCP2_STREAM_STATUS macro 01437282fd39 net/iucv: fix use after free in iucv_sock_close() 9ac083de42b4 ice: add missing WRITE_ONCE when clearing ice_rx_ring::xdp_prog ac2a3c759d3a ice: replace synchronize_rcu with synchronize_net 9016d17f4ff6 ice: don't busy wait for Rx queue disable in ice_qp_dis() 77292f935d7e ice: respect netif readiness in AF_XDP ZC related ndo's 582b6c7dd019 i915/perf: Remove code to update PWR_CLK_STATE for gen12 0db00726578c rtnetlink: Don't ignore IFLA_TARGET_NETNSID when ifname is specified in rtnl_dellink(). 4ea83a051838 net: axienet: start napi before enabling Rx/Tx 1cfdc250b3d2 tcp: Adjust clamping window for applications specifying SO_RCVBUF f9fef23a81db tcp: annotate data-races around tp->window_clamp 124a4885b55f mptcp: give rcvlowat some love ae8853d0a382 Bluetooth: hci_sync: Fix suspending with wrong filter policy b0c470d67b7d Bluetooth: btintel: Fail setup on error bc7734418c08 ALSA: hda: conexant: Fix headset auto detect fail in the polling mode b45cbfa204b2 net: phy: realtek: add support for RTL8366S Gigabit PHY fcfb8ceafba4 wifi: cfg80211: fix reporting failed MLO links status with cfg80211_connect_done d7cc186d0973 sched: act_ct: take care of padding in struct zones_ht_key c98d6c23fbb5 drm/vmwgfx: Trigger a modeset when the screen moves b67643bffe2e drm/vmwgfx: Fix overlay when using Screen Targets f23cd66933fe drm/nouveau: prime: fix refcount underflow 1b46b23561d8 perf tool: fix dereferencing NULL al->maps 0a5ca73babec HID: amd_sfh: Move sensor discovery before HID device initialization 181f9b56193d ARM: 9406/1: Fix callchain_trace() return value f4675c8ee758 MIPS: dts: loongson: Fix ls2k1000-rtc interrupt 3544efb889c1 MIPS: dts: loongson: Fix liointc IRQ polarity fcf20dc29320 MIPS: Loongson64: DTS: Fix PCIe port nodes for ls7a 0bcd599a0f61 perf: imx_perf: fix counter start and config sequence c91c8d3830fa dmaengine: fsl-edma: change the memory access from local into remote mode in i.MX 8QM 417b64e4c823 dmaengine: fsl-edma: clean up unused "fsl,imx8qm-adma" compatible string ba20b7f28e54 dmaengine: fsl-edma: add i.MX8ULP edma support 5f8de773d43c dmaengine: fsl-edma: add address for channel mux register in fsl_edma_chan 4239571c5db4 f2fs: assign CURSEG_ALL_DATA_ATGC if blkaddr is valid f911be1165d6 f2fs: fix to avoid use SSR allocate when do defragment 00fbc7ba4943 mm/page_alloc: fix pcp->count race between drain_pages_zone() vs __rmqueue_pcplist() 4abfa277c242 mm: page_alloc: control latency caused by zone PCP draining dde5e5343d2b mm: restrict the pcp batch scale factor to avoid too long latency 340bbe90cc7d fbdev: vesafb: Detect VGA compatibility from screen info's VESA attributes a168da3182f8 firmware/sysfb: Update screen_info for relocated EFI framebuffers f5dce77f3f7d video: Provide screen_info_get_pci_dev() to find screen_info's PCI device 5b4d995dfdd0 video: Add helpers for decoding screen_info bab0a828543a fbdev/vesafb: Replace references to global screen_info by local pointer ccab04dc573e PCI: Add pci_get_base_class() helper 43e73206cf46 KVM: nVMX: Check for pending posted interrupts when looking for nested events 459403bc66a9 KVM: nVMX: Add a helper to get highest pending from Posted Interrupt vector 65b2514e0392 KVM: VMX: Move posted interrupt descriptor out of VMX code ebfed7bebd9e KVM: VMX: Split off vmx_onhyperv.{ch} from hyperv.{ch} 93ac74cd6fef leds: triggers: Flush pending brightness before activating trigger 9ce3c14f0d3c leds: trigger: Call synchronize_rcu() before calling trig->activate() 587cf9c0f76e leds: trigger: Store brightness set by led_trigger_event() 73a26eada593 leds: trigger: Remove unused function led_trigger_rename_static() e3fd01a81053 cpufreq: qcom-nvmem: fix memory leaks in probe error paths 51a45209a8bf cpufreq: qcom-nvmem: Simplify driver data allocation df7363307ead ext4: check the extent status again before inserting delalloc block f12fbb9599e2 ext4: factor out a common helper to query extent map c6cba59072c6 ext4: convert to exclusive lock while inserting delalloc extents 7849e9b5ba87 ext4: refactor ext4_da_map_blocks() ffde3af4b29b sysctl: always initialize i_uid/i_gid 96f1d909cdd7 sysctl: treewide: drop unused argument ctl_table_root::set_ownership(table) 13886221ad7c sysctl: allow to change limits for posix messages queues 8d5b1a9ff844 sysctl: allow change system v ipc sysctls inside ipc namespace 34e788045d0c thermal/drivers/broadcom: Fix race between removal and clock disable 103881e6363c thermal: bcm2835: Convert to platform remove callback returning void 0b4e4da51e28 arm64: dts: qcom: sdm845: Disable SS instance in Parkmode for USB a27753e685e5 arm64: dts: qcom: sdm845: switch USB QMP PHY to new style of bindings affc4de9451e arm64: dts: qcom: sdm845: switch USB+DP QMP PHY to new style of bindings 1a0bff67f491 arm64: dts: qcom: ipq8074: Disable SS instance in Parkmode for USB cd4f3ad55bfb arm64: dts: qcom: msm8998: Disable SS instance in Parkmode for USB 267a485c1573 arm64: dts: qcom: msm8998: switch USB QMP PHY to new style of bindings 5bf33793d18a arm64: dts: qcom: sc7280: Disable SuperSpeed instances in park mode f879a830862f arm64: dts: qcom: sc7280: switch USB+DP QMP PHY to new style of bindings fde04340358d arm64: dts: qcom: sc7180: Disable SuperSpeed instances in park mode 2359355ddfaf arm64: dts: qcom: sc7180: switch USB+DP QMP PHY to new style of bindings 43ea1c5e6eb3 lib/build_OID_registry: take -stable reproducibility changes 35046aea43c8 bpftool: Fix undefined bpf macro for unix socket 9a558d4b8621 tools/resolve_btfids: Fix comparison of distinct pointer types warning in resolve_btfids 42b2eec2e503 bpftool: Query only cgroup-related attach types f71bb11887ba cpu/amd: inhibit SMP check for qemux86 c31365597a17 powerpc/uaccess: Fix build errors seen with GCC 13/14 64ebf485c56b usb: dwc3: core: remove lock of otg mode during gadget suspend/resume to avoid deadlock 7c76aad68f6d kselftest: Add a ksft_perror() helper 06644f0d7193 drm/tilcdc: Set preferred depth ff7ae7b32324 crypto: jitter - add RCT/APT support for different OSRs 50cd24ddb6f0 arm64: defconfig: remove CONFIG_IPQ_APSS_5018 58e5c91d6701 x86/alternatives: Disable interrupts and sync when optimizing NOPs in place c878fd2d4c79 x86/alternatives: Sync core before enabling interrupts c2d64b9f52b6 qemux86: add configuration symbol to select values 630c33229e6d sched/isolation: really align nohz_full with rcu_nocbs 0e5e0f68e2e6 clear_warn_once: add a clear_warn_once= boot parameter 46934791b902 clear_warn_once: bind a timer to written reset value cdee9e38ff32 clear_warn_once: expand debugfs to include read support 82b562b81841 tools: Remove some options from CLANG_CROSS_FLAGS 36dc380b776b libbpf: Fix build warning on ref_ctr_off 9e3e1fe20982 perf: perf can not parser the backtrace of app in the 32bit system and 64bit kernel. e497a4a5da65 perf: x86-32: explicitly include <errno.h> 7b57ddd89565 perf: mips64: Convert __u64 to unsigned long long 1cfc19423dc7 perf: fix bench numa compilation 98bc2815fade perf: add SLANG_INC for slang.h 17209a70b9b3 perf: add sgidefs.h to for mips builds 9cd4258d910a perf: change --root to --prefix for python install 8110a4f26628 perf: add 'libperl not found' warning bc89d5e08f77 perf: force include of <stdbool.h> 4f6c760cc876 fat: Replace prandom_u32() with get_random_u32() bc53117b12b2 fat: don't use obsolete random32 call in namei_vfat 30b2236ab378 FAT: Added FAT_NO_83NAME cef98d22b4ed FAT: Add CONFIG_VFAT_NO_CREATE_WITH_LONGNAMES option 0bbd7daba9e1 FAT: Add CONFIG_VFAT_FS_NO_DUALNAMES option 5883fc340084 aufs6: adapt to v6.6 i_op->ctime changes c4342d979bf2 aufs6: fix magic.mk include path 35266bc2dc81 aufs6: adapt to v6.6 8edede4e98be aufs6: core 712248233ebe aufs6: standalone 3b71a8a848d8 aufs6: mmap 3e2924871f37 aufs6: base 7f4907a93101 aufs6: kbuild d2f7b03e4aa7 yaffs2: update VFS ctime operations to 6.6+ bcd6cfcd1aa0 yaffs2: v6.5 fixups cc615704b5f5 yaffs2: Fix miscalculation of devname buffer length 8ef2e22dcf91 yaffs2: convert user_namespace to mnt_idmap c9c749f9f7d3 yaffs2: replace bdevname call with sprintf 395b01cdc39d yaffs2: convert read_page -> readfolio d98b07e43ba6 yaffs: replace IS_ERR with IS_ERR_OR_NULL to check both ERR and NULL 613c6d50fdbe yaffs: fix -Wstringop-overread compile warning in yaffs_fix_null_name 622c4648936f yaffs2: v5.12+ build fixups (not runtime tested) 7562133d4090 yaffs: include blkdev.h dbd44252cd59 yaffs: fix misplaced variable declaration c223a10b1ac0 yaffs2: v5.6 build fixups 90f6007cfbf4 yaffs2: fix memory leak when /proc/yaffs is read 37ee169c5ea1 yaffs: add strict check when call yaffs_internal_read_super b6e007b8abb6 yaffs: repair yaffs_get_mtd_device fb98f65a466a yaffs: Fix build failure by handling inode i_version with proper atomic API 51e0aac75ea2 yaffs2: fix memory leak in mount/umount 2b74a0cae7b0 yaffs: Avoid setting any ACL releated xattr ff4130a9c376 Yaffs:check oob size before auto selecting Yaffs1 ba95b409c67c fs: yaffs2: replace CURRENT_TIME by other appropriate apis 8fa35eba9056 yaffs2: adjust to proper location of MS_RDONLY 1eb5deaad8c4 yaffs2: import git revision b4ce1bb (jan, 2020) 4dce67c1e8c8 initramfs: allow an optional wrapper script around initramfs generation 2f603d83fcc4 pnmtologo: use relocatable file name 664a6a0a484b tools: use basename to identify file in gen-mach-types 9de64bc0c185 lib/build_OID_registry: fix reproducibility issues ae9b80797295 vt/conmakehash: improve reproducibility a972323151bd iwlwifi: select MAC80211_LEDS conditionally 15d2adcc0198 net/dccp: make it depend on CONFIG_BROKEN (CVE-2020-16119) 5556a6c04b19 arm64/perf: Fix wrong cast that may cause wrong truncation 5552dc768ffc defconfigs: drop obselete options 00fe4152df31 arm64/perf: fix backtrace for AAPCS with FP enabled 3888d0652edf linux-yocto: Handle /bin/awk issues 3d55d299f23a uvesafb: provide option to specify timeout for task completion 23c068c080be uvesafb: print error message when task timeout occurs edbfc939266e compiler.h: Undef before redefining __attribute_const__ c99ae7e2a19a vmware: include jiffies.h 572d84d928c8 Resolve jiffies wrapping about arp fdcd47cac843 nfs: Allow default io size to be configured. 927d48801098 check console device file on fs when booting 57cc27f821dd mount_root: clarify error messages for when no rootfs found 1b53d82a8152 mconf: fix output of cflags and libraries 1811da09f42c menuconfig,mconf-cfg: Allow specification of ncurses location 83c2e0c6eb1f modpost: mask trivial warnings 6de673039484 kbuild: exclude meta directory from distclean processing 6decd32815f5 powerpc: serialize image targets f6b683b38318 arm: serialize build targets e798b09ebf57 mtd_blkdevs: add mtd_table_mutex lock back to blktrans_{open, release} to avoid race condition dc8a1e5a88f8 x86_64_defconfig: Fix warnings 68491e5f72b6 powerpc/ptrace: Disable array-bounds warning with gcc8 d71ebfce3004 powerpc: Disable attribute-alias warnings from gcc8 62f50884b8b1 powerpc: kexec fix for powerpc64 da6871c62c37 powerpc: Add unwind information for SPE registers of E500 core f161c880c11d mips: make current_cpu_data preempt safe 5e94a8247ce7 mips: vdso: fix 'jalr $t9' crash in vdso code 19e36714b1c7 mips: Kconfig: add QEMUMIPS64 option e2e537db3cbd 4kc cache tlb hazard: tlbp cache coherency aee9870611e5 malta uhci quirks: make allowance for slow 4k(e)c 881948cd1517 drm/fb-helper: move zeroing code to drm_fb_helper_fill_var 98ec1963fcb7 arm64: defconfig: cleanup config options f1727c537ba8 vexpress: Pass LOADADDR to Makefile 4474c32dc24a arm: ARM EABI socketcall 75e31a2b70fd ARM: LPAE: Invalidate the TLB for module addresses during translation fault (From OE-Core rev: 00878005c6a398db70efc29b46424d9b8233024c) Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* poky/poky-tiny: bump preferred version to 6.10Bruce Ashfield2024-08-132-3/+3
| | | | | | | | | | | Make 6.10 the preferred kernel for these two distro configurations. We leave -altcfg on 6.6 for LTS kernel coverage and testing. (From meta-yocto rev: 05c15cea09dc398ab0f027e738cdb3efa932c137) Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* bitbake: build: Ensure addtask before/after tasknames have prefix appliedRichard Purdie2024-08-132-5/+14
| | | | | | | | | | | | | "addtask do_XXX before YYY after ZZZ " where YYY or ZZZ is missing the "do_" prefix don't work as expected. Ajust the code so that it doesn't just silently do the wrong thing but works as expected. Expand a test case to cover this. (Bitbake rev: 21670b9bb8936ec44aedff26163948bbc2ceb44a) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* bitbake: BBHandler/ast: Improve addtask handlingRichard Purdie2024-08-133-44/+38
| | | | | | | | | | | | | | | | | | The recent addtask improvement to handle comments complicated the regex significantly and there are already a number of corner cases in that code which aren't handled well. Instead of trying to complicate the regex further, switch to code logic instead. This means the following cases are now handled: * addtask with multiple task names * addtask with multiple before constraints * addtask with multiple after constraints The testcase is updated to match the improvements. (Bitbake rev: 417016b83c21fca7616b2ee768d5d08e1edd1e06) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* bitbake: cookerdata: Separate out data_hash and hook to tinfoilRichard Purdie2024-08-132-7/+16
| | | | | | | | | | | | | | | | | Within tinfoil, the user can write to the configuration data but it won't cause the data_hash checksum to be re-written, meaning cached parsing data can be reused when it would now be incorrect. Abstract out the data_hash code and add it to the invalidateCaches command, called by tinfoil.modified_files() meaning that tinfoil can instruct bitbake to update the caches and re-parse if necessary. Also move the data_hash entirely into databuilder and drop the copy in cooker as obsolete and not needed. (Bitbake rev: d9ee77829f693ce75348fa64f406fcecfe4989aa) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* bitbake: cache: Drop unused functionRichard Purdie2024-08-131-19/+0
| | | | | | | | | I can't spot any users of this function and it is poking at variables inside cooker that could and are about to change so drop it. (Bitbake rev: 52491808706e9e58b5e6b59d2d792353d77c8b66) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* bitbake: BBHandler: Handle comments in addtask/deltaskRichard Purdie2024-08-132-2/+12
| | | | | | | | | | | | | | | Technically our syntax would allow for comments after an addtask/deltask. Currently these get silently processed in various ways by the code which is bad. Tweak the regex to drop any comments and add test cases to ensure this continues to work in the future. [YOCTO #15250] (Bitbake rev: 64f8796e55a8826ffec0d76b993c8256713f67a3) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* oeqa/postactions: do not uncompress retrieved archive on hostAlexis Lothoré2024-08-131-1/+2
| | | | | | | | | | | | | | | | | | | | | | | Current postaction module executes a remote tar command, pipe it in a SSH connection, and uncompress the raw stream with another tar command. With this command, the whole artifacts tree is directly available on the host executing the test, but it is not very convenient if we want to download the whole retrieved ptests directory. Stop uncompressing the retrieved ptests archive onto host, just save the archive as it is. The new output then looks like the following: tmp/log/oeqa-artefacts └── oeqa-target-artefacts-20240812-juzqdb80 ├── host_disk_usage.txt ├── target_disk_usage.txt └── tests_artifacts.tar.gz Suggested-By: Alexandre Belloni <alexandre.belloni@bootlin.com> (From OE-Core rev: f90894d996c8a8f980e46c87b7968b176793b3fe) Signed-off-by: Alexis Lothoré <alexis.lothore@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* oeqa/postactions: fix exception handlingAlexis Lothoré2024-08-131-1/+1
| | | | | | | | | | | | | | | The current exception handler in list_and_fetch_failed_tests_artifacts expects a non-exisiting variable and then fail to display the original exception message since it raises a new one. The issue has been introduced with commit 6e80b2ab660e ("oeqa/utils/postactions: transfer whole archive over ssh instead of doing individual copies"). Now that tests artifacts are now handled individually, there's no point of trying to print individual names in the exception. (From OE-Core rev: a50e72bb64fb8b0d14c23164eaeeabd9c271ac19) Signed-off-by: Alexis Lothoré <alexis.lothore@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* image_types.bbclass: Use --force also with lz4,lzopNiko Mauno2024-08-131-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | Several conversion commands already make use of 'force' option in the compression, which enables overwriting existing files without prompting. Since occasionally an existing residual destination file from a previously aborted or failed task can prevent the re-execution of the conversion command task, by enabling the 'force' option also for lz4 and lzop compression commands we can avoid following kind of BitBake failures with these compressors: | DEBUG: Executing shell function do_image_cpio | 117685 blocks | 2 blocks | example-image.cpio.lz4 already exists; do you want to overwrite (y/N) ? not overwritten | Error 20 : example-image.cpio : open file error | WARNING: exit code 20 from a shell command. ERROR: Task (.../recipes-core/images/example-image.bb:do_image_cpio) failed with exit code '1' (From OE-Core rev: 623ab22434909f10aaf613cd3032cc2a2c6e3ff9) Signed-off-by: Niko Mauno <niko.mauno@vaisala.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* python3-babel: drop custom PYPI settingsAlexander Kanavin2024-08-131-4/+0
| | | | | | | | | | Upstream simply redirects Babel to babel nowadays. This also fixes upstream version check. (From OE-Core rev: 2ae3f53800c97a8f8d74eb30528c4c1ba76d529e) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* json-c: use upstream texts for SUMMARY and DESCRIPTIONChen Qi2024-08-131-2/+4
| | | | | | | | | | Change SUMMARY and DESCRIPTION according to json-c's homepage https://github.com/json-c/json-c/wiki. (From OE-Core rev: b5b203457fdb6825abc7c430876bd5b7c8b3f882) Signed-off-by: Chen Qi <Qi.Chen@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* apt-native: don't let dpkg overwrite files by defaultChangqing Li2024-08-131-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | With --force-overwrite (implied by --force-all), dpkg will not abort when a package overwrites files from different packages. As this can also lead to "The following package disappeared from your system as all files have been overwritten by other packages: <package>" and subsequently broken dependencies, this makes the simple case of conflicting files hard to debug. Instead of finding all possibly required force options, only disable overwrite for now. (From OE-Core rev: 30cc69f094729e3d11dc6021daf77f5038c4de61) (From OE-Core rev: cb95ba079960411775c57ab864d266e15a6292d1) Signed-off-by: Jan Luebbe <jlu@pengutronix.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Take back from https://git.openembedded.org/openembedded-core/commit/?id=4292387ef6c4e80428bad6a07c844a288b27d9a1 Signed-off-by: Changqing Li <changqing.li@windriver.com> Signed-off-by: Steve Sakoman <steve@sakoman.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* bitbake.conf: Include cve-check-map earlier, before distroRichard Purdie2024-08-131-1/+1
| | | | | | | | | | It makes sense for the distro to be able to override "policy" from cve-check-map which is intented to provide defaults. Tweak the ordering to allow for this, ensuring it is included before the distro includes. (From OE-Core rev: fb22a7e7ee38a0e923e86a68d0e9b86d479f264d) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* python3-cython: upgrade 3.0.10 -> 3.0.11Trevor Gamblin2024-08-131-3/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The upstream package changed from uppercase to lowercase in "Cython", so adjust PYPI_PACKAGE and the sed call in cython_fix_sources to match. Changelog (https://github.com/cython/cython/releases/tag/3.0.11-1): Features added -------------- * The C++11 ``emplace*`` methods were added to ``libcpp.deque``. Patch by Somin An. (Github issue :issue:`6159`) Bugs fixed ---------- * The exception check value of functions declared in pxd files was not always applied in 3.0.10. (Github issue :issue:`6122`) * A crash on exception deallocations was fixed. (Github issue :issue:`6022`) * A crash was fixed when assigning a zero-length slice to a memoryview. Patch by Michael Man. (Github issue :issue:`6227`) * ``libcpp.optional.value()`` could crash if it raised a C++ exception. Patch by Alexander Condello. (Github issue :issue:`6190`) * The return type of ``str()`` was mishandled, leading to crashes with ``language_level=3``. (Github issue :issue:`6166`) * ``bytes.startswith/endswith()`` failed for non-bytes substrings (e.g. ``bytearray``). (Github issue :issue:`6168`) * Fused ctuples crashed Cython. (Github issue :issue:`6068`) * A compiler crash was fixed when using extension types in fused types. (Github issue :issue:`6204`) * The module cleanup code was incorrect for globally defined memory view slices. (Github issue :issue:`6276`) * Some adaptations were made to enable compilation in Python 3.13. (Github issues :issue:`5997`, :issue:`6182`, :issue:`6251`) (From OE-Core rev: a505dfa0489de57bc07ffec2b7fa8c5486013393) Signed-off-by: Trevor Gamblin <tgamblin@baylibre.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* python3-hypothesis: upgrade 6.108.10 -> 6.110.1Trevor Gamblin2024-08-131-1/+1
| | | | | | | | | | | | | | | | | | | | | Changelog (https://hypothesis.readthedocs.io/en/latest/changes.html): 6.110.1 - 2024-08-08 - Add better error message for ~python:typing.TypeIs types in from_type(). 6.110.0 - 2024-08-07 - Support LiteralString in from_type(). 6.109.1 - 2024-08-07 - This patch makes progress towards adding type hints to our internal conjecture engine (issue #3074). 6.109.0 - 2024-08-07 - This release allows using Annotated and ReadOnly types for TypedDict value types with from_type(). (From OE-Core rev: 20432c7463ff6daab3ea8fc8ceea9c6e7916209c) Signed-off-by: Trevor Gamblin <tgamblin@baylibre.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* python3-setuptools: upgrade 71.1.0 -> 72.1.0Trevor Gamblin2024-08-131-1/+1
| | | | | | | | | | | | Changelog (https://github.com/pypa/setuptools/blob/main/NEWS.rst#v7210): Features - Restore the tests command and deprecate access to the module. (#4519) (#4520) (From OE-Core rev: 8760d37e4b6275016a8dcdabc04dfb85185649b7) Signed-off-by: Trevor Gamblin <tgamblin@baylibre.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* linux-yocto/6.6: update to v6.6.44Bruce Ashfield2024-08-133-20/+20
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Updating linux-yocto/6.6 to the latest korg -stable release that comprises the following commits: 43ea1c5e6eb3c lib/build_OID_registry: take -stable reproducibility changes 7213910600667 Linux 6.6.44 acbd66c10d7bc fs: don't allow non-init s_user_ns for filesystems without FS_USERNS_MOUNT 77848b379e9f8 nvme-pci: add missing condition check for existence of mapped data 766b0e807e1d5 io_uring: fix io_match_task must_hold b62841e49a2b7 iommu: sprd: Avoid NULL deref in sprd_iommu_hw_en 97dfb89415fd7 s390/cpum_cf: Fix endless loop in CF_DIAG event stop b4d781ddaee39 s390/pci: Allow allocation of more than 1 MSI interrupt 3eab85f45ff12 s390/pci: Refactor arch_setup_msi_irqs() da0a3ebf9a96f ceph: fix incorrect kmalloc size of pagevec mempool 6d98741dbd130 ASoC: TAS2781: Fix tasdev_load_calibrated_data() be6d86df474df ASoC: Intel: use soc_intel_is_byt_cr() only when IOSF_MBI is reachable af1125de16725 spi: spidev: add correct compatible for Rohm BH2228FV 6443a4028539c ASoC: sof: amd: fix for firmware reload failure in Vangogh platform 8772be96705a9 nvme-pci: Fix the instructions for disabling power management 3feda3677e8bb spi: microchip-core: ensure TX and RX FIFOs are empty at start of a transfer 783f42b77d33d spi: microchip-core: fix init function not setting the master and motorola modes 0b0b75928852d spi: microchip-core: switch to use modern name c41d2178d61b9 spi: microchip-core: only disable SPI controller when register value change requires it 1dc6d9fd4828f spi: microchip-core: defer asserting chip select until just before write to TX FIFO 11e0f3c888b2e spi: microchip-core: fix the issues in the isr 0e51f66977e33 ASoC: SOF: imx8m: Fix DSP control regmap retrieval 64dc362dee403 auxdisplay: ht16k33: Drop reference after LED registration f4c6ebb053cc9 lirc: rc_dev_get_from_fd(): fix file leak 4f79a18af9d6e powerpc: fix a file leak in kvm_vcpu_ioctl_enable_cap() 6c920754f62ce apparmor: Fix null pointer deref when receiving skb during sock creation ddc79556641ee mISDN: Fix a use after free in hfcmulti_tx() c3496314c53e7 bpf: Fix a segment issue when downgrading gso_size 7704460acd7f5 net: nexthop: Initialize all fields in dumped nexthops 4384135d22174 net: stmmac: Correct byte order of perfect_match 76ddf84a52f0d tipc: Return non-zero value from tipc_udp_addr2str() on error 5c82010cef30c netfilter: nft_set_pipapo_avx2: disable softinterrupts b6426eabb4f71 ice: Fix recipe read procedure d9f01090912b4 net: bonding: correctly annotate RCU in bond_should_notify_peers() 42f493bd6cb8f ipv4: Fix incorrect source address in Record Route option 1f07fab9e0864 MIPS: SMP-CPS: Fix address for GCR_ACCESS register for CM3 and later 9c79502ab7eb1 tools/resolve_btfids: Fix comparison of distinct pointer types warning in resolve_btfids ba709e7807f78 bpf, events: Use prog to emit ksymbol event for main program 1fe97f68fce1b dma: fix call order in dmam_free_coherent 772f9c31bfde0 af_unix: Disable MSG_OOB handling for sockets in sockmap/sockhash 297a14fde2d3d libbpf: Fix no-args func prototype BTF dumping syntax 390c17cab13b5 selftests/bpf: fexit_sleep: Fix stack allocation for arm64 019167c74117d kbuild: avoid build error when single DTB is turned into composite DTB fbcd51e0d977a f2fs: fix to update user block counts in block_operations() 8aeab1af9d9bf watchdog: rzg2l_wdt: Check return status of pm_runtime_put() fb45265610cc7 watchdog: rzg2l_wdt: Use pm_runtime_resume_and_get() abde880b7920b f2fs: fix start segno of large section 0aa0284818d2c um: time-travel: fix signal blocking race/hang f66d436204e9f um: time-travel: fix time-travel-start option 7eaa06967b0fe phy: zynqmp: Enable reference clock correctly 1cffbf30f865a phy: cadence-torrent: Check return value on register read 0d820e1ca8efe dmaengine: ti: k3-udma: Fix BCHAN count with UHC and HC channels ff14eadc27866 jfs: Fix array-index-out-of-bounds in diFree 9e58df60f6ceb kdb: Use the passed prompt in kdb_position_cursor() 7b01bf24f391c kdb: address -Wformat-security warnings f44a25a8bfe0c f2fs: fix to truncate preallocated blocks in f2fs_file_open() 73a9260b7366d s390/mm: Fix VM_FAULT_HWPOISON handling in do_exception() 2cc8973bdc4d6 PCI/DPC: Fix use-after-free on concurrent DPC and hot-removal 9b6742dcdc597 PCI: Introduce cleanup helpers for device reference counts and locks 86e7bdc50bc6a wifi: mac80211: track capability/opmode NSS separately 4211d065ef5cd mm/mglru: fix ineffective protection calculation be56dfc9be060 nilfs2: handle inconsistent state in nilfs_btnode_create_block() 6c0cf6022aeec minmax: scsi: fix mis-use of 'clamp()' in sr.c 34e4dfe838f7a Bluetooth: btusb: Add Realtek RTL8852BE support ID 0x13d3:0x3591 499ca9ddd4e4f Bluetooth: btusb: Add RTL8852BE device 0489:e125 to device tables 3f83f52ae0822 video: logo: Drop full path of the input filename in generated file 32c3c30a97f93 lib/build_OID_registry: don't mention the full path of the script in output 7ca762dcf1fca rbd: don't assume RBD_LOCK_STATE_LOCKED for exclusive mappings 36913dedee7d0 rbd: rename RBD_LOCK_STATE_RELEASING and releasing_wait 1901f1cf7c2c3 drm/panfrost: Mark simple_ondemand governor as softdep 92d3ca3f465c8 drm/etnaviv: don't block scheduler when GPU is still active cf9b29f2d42cc MIPS: Loongson64: Test register availability before use 6c695c3ce76ae MIPS: Loongson64: reset: Prioritise firmware service 690d62d1ebb92 MIPS: Loongson64: Remove memory node for builtin-dtb f7097b5fda08d MIPS: Loongson64: env: Hook up Loongsson-2K 27479037e8c44 MIPS: dts: loongson: Fix GMAC phy node 97f099862aa4c MIPS: ip30: ip30-console: Add missing include f29119b301d59 MIPS: dts: loongson: Add ISA node 2de4d41862944 remoteproc: imx_rproc: Fix refcount mistake in imx_rproc_addr_init 6c9ea3547fad2 remoteproc: imx_rproc: Skip over memory region when node value is NULL 83ada7dfaf400 remoteproc: stm32_rproc: Fix mailbox interrupts queuing 9a2acb02c1eca rbd: don't assume rbd_is_lock_owner() for exclusive mappings dcb5620d2dedf dm-verity: fix dm_is_verity_target() when dm-verity is builtin 47e85f7121255 selftests/sigaltstack: Fix ppc64 GCC build ff5bbbdee0828 RDMA/iwcm: Fix a use-after-free related to destroying CM IDs aa9ccec6e215b platform: mips: cpu_hwmon: Disable driver on unsupported hardware bbaeff660657c watchdog/perf: properly initialize the turbo mode timestamp and rearm counter 0cff6d4953091 rtc: abx80x: Fix return value of nvmem callback on read 625fd91308467 rtc: isl1208: Fix return value of nvmem callbacks 12880cc086dee drm/i915/dp: Don't switch the LTTPR mode on an active link a90e900f71da2 drm/i915/dp: Reset intel_dp->link_trained before retraining the link e150f0171c0c0 drm/amd/amdgpu: Fix uninitialized variable warnings 3237905352379 drm/amdgpu: reset vm state machine after gpu reset(vram lost) e290feb8b749a drm/dp_mst: Fix all mstb marked as not probed after suspend/resume b29c910cfa242 drm/udl: Remove DRM_CONNECTOR_POLL_HPD 9d74e50098492 drm/amdgpu/sdma5.2: Update wptr registers as well as doorbell 05c0fb20ca3e0 drm/i915/gt: Do not consider preemption during execlists_dequeue for gen8 899857dd71e34 perf/x86/intel/pt: Fix a topa_entry base address calculation 8f5f3db3fa484 perf/x86/intel/pt: Fix topa_entry base length 344bb09f4f991 perf/x86/intel/ds: Fix non 0 retire latency on Raptorlake 76d4ab96bb235 perf/x86/intel/uncore: Fix the bits of the CHA extended umask for SPR 7d049cd1345c0 perf stat: Fix the hard-coded metrics calculation on the hybrid 104e258a00403 perf: Fix event leak upon exec and file release 05d3fd599594a perf: Fix event leak upon exit f6be298cc1042 scsi: qla2xxx: validate nvme_local_port correctly 314efe3f87949 scsi: qla2xxx: Complete command early within lock bf192b8be12ca scsi: qla2xxx: Fix flash read failure 3f43a7da1ef05 scsi: qla2xxx: Reduce fabric scan duplicate code 56c0f66f86232 scsi: qla2xxx: Use QP lock to search for bsg 571d7f2a08836 scsi: qla2xxx: Fix for possible memory corruption bc78c3f944dc1 scsi: qla2xxx: Unable to act on RSCN for port online 87c25fcb95aaf scsi: qla2xxx: During vport delete send async logout explicitly 45230f31f5529 scsi: lpfc: Allow DEVICE_RECOVERY mode after RSCN receipt if in PRLI_ISSUE state 13749b8d498e7 rtc: cmos: Fix return value of nvmem callbacks ab14e199b91ca mm/numa_balancing: teach mpol_to_str about the balancing mode 21bd3f9e7f924 irqchip/imx-irqsteer: Handle runtime power management correctly 8b0e8b33dc2ff irqdomain: Fixed unbalanced fwnode get and put b67552d7c61f5 devres: Fix memory leakage caused by driver API devm_free_percpu() 7a76022d53553 devres: Fix devm_krealloc() wasting memory d62389073a5b9 ice: Add a per-VF limit on number of FDIR filters d77250329dbb7 gve: Fix an edge case for TSO skb validity check 57fe01d3d0427 kobject_uevent: Fix OOB access within zap_modalias_env() f7150b2d5ec34 ASoC: amd: yc: Support mic on Lenovo Thinkpad E16 Gen 2 414f5028f149a ASoC: SOF: ipc4-topology: Preserve the DMA Link ID for ChainDMA on unprepare 70a9f00de77f3 kbuild: Fix '-S -c' in x86 stack protector scripts 75243c9b18f3a decompress_bunzip2: fix rare decompression failure 460016444ab25 mm: fix old/young bit handling in the faulting path 5a5625a83eac9 block: fix deadlock between sd_remove & sd_release 3aba1db19b380 ubi: eba: properly rollback inside self_check_eba 17c312eb11597 clk: davinci: da8xx-cfgchip: Initialize clk_init_data before use b82d43000b8f3 f2fs: use meta inode for GC of COW file 271fda62e8601 f2fs: use meta inode for GC of atomic file 077f0e24b27c4 f2fs: fix return value of f2fs_convert_inline_inode() e62ff092a42f4 f2fs: fix to don't dirty inode for readonly filesystem 1789db628bc50 f2fs: fix to force buffered IO on inline_data inode b4205dfcfe961 ASoC: fsl: fsl_qmc_audio: Check devm_kasprintf() returned value 5a33c922b2ad4 scsi: qla2xxx: Return ENOBUFS if sg_cnt is more than one for ELS cmds 2cac0df3324b5 fs/ntfs3: Update log->page_{mask,bits} if log->page_size changed f17cbe5545852 efi/libstub: Zero initialize heap allocated struct screen_info ea4f77946226d hostfs: fix dev_t handling b579ea3516c37 dev/parport: fix the array out-of-bounds risk a1d85fc6bd250 binder: fix hang of unregistered readers e22b88f234a1f PCI: loongson: Enable MSI in LS7A Root Complex a5b1cce14a49f PCI: rockchip: Use GPIOD_OUT_LOW flag while requesting ep_gpio a30211c670489 PCI: dw-rockchip: Fix initial PERST# GPIO value 09b15029a393d PCI: hv: Return zero, not garbage, when reading PCI_INTERRUPT_PIN 23837335c3c11 parisc: Fix warning at drivers/pci/msi/msi.h:121 e91173e375f75 hwrng: amd - Convert PCIBIOS_* return codes to errnos 8d70d6114610a tools/memory-model: Fix bug in lock.cat fe3a28bfeb54b ALSA: usb-audio: Add a quirk for Sonix HD USB Camera 3e81a7a91307f ALSA: usb-audio: Move HD Webcam quirk to the right place 923d326f3c515 ALSA: usb-audio: Fix microphone sound on HD webcam. 689e0780b2290 ALSA: ump: Force 1 Group for MIDI1 FBs ad4ab148a50f3 ALSA: ump: Don't update FB name for static blocks 647cbf2ac6ef0 KVM: nVMX: Request immediate exit iff pending nested event needs injection e06f46fdf039c KVM: VMX: Split out the non-virtualization part of vmx_interrupt_blocked() 5d104a5e99642 media: ivsc: csi: don't count privacy on as error b57b5c89d88ed media: uvcvideo: Fix integer overflow calculating timestamp 82b85a747abe0 jbd2: avoid infinite transaction commit loop b81c3758c1df0 jbd2: precompute number of transaction descriptor blocks 7a8532b537ca0 jbd2: make jbd2_journal_get_max_txn_bufs() internal 358bc85269d6a media: imx-pxp: Fix ERR_PTR dereference in pxp_probe() 787b7348ad349 media: ivsc: csi: add separate lock for v4l2 control handler 04a4668b087a5 leds: mt6360: Fix memory leak in mt6360_init_isnk_properties() 655cc01889fa9 md/md-bitmap: fix writing non bitmap pages f67774b763de8 leds: ss4200: Convert PCIBIOS_* return codes to errnos e44eb9d83dcd7 drivers: soc: xilinx: check return status of get_api_version() 4b060d11633d5 wifi: rtw88: usb: Fix disconnection after beacon loss c755c01b3f12f wifi: mwifiex: Fix interface type change 27be7ff9ffb4a selftests/landlock: Add cred_transfer test 6a74f52aabb11 trace/pid_list: Change gfp flags in pid_list_fill_irq() f1fd860bb2086 io_uring: tighten task exit cancellations c3893d9de8ee1 ext4: make sure the first directory block is not a hole 9d241b7a39af1 ext4: check dot and dotdot of dx_root before making dir indexed 8d04ddba51f9e m68k: amiga: Turn off Warp1260 interrupts during boot 57053b3bcf340 udf: Avoid using corrupted block bitmap buffer d3ea49fb4a661 task_work: Introduce task_work_cancel() again 0475bba01abcf task_work: s/task_work_cancel()/task_work_cancel_func()/ f2d6c5b8ef116 cifs: mount with "unix" mount option for SMB1 incorrectly handled 31553d20b4220 cifs: fix reconnect with SMB1 UNIX Extensions 160235efb4f9b cifs: fix potential null pointer use in destroy_workqueue in init_cifs error path 691aada75653d apparmor: use kvfree_sensitive to free data->data 4ccd37085976e drm/amd/display: Check for NULL pointer bf0ac89faf642 scsi: qla2xxx: Fix optrom version displayed in FDMI 46d2ef2729578 drm/gma500: fix null pointer dereference in psb_intel_lvds_get_modes 2d209b2f862f6 drm/gma500: fix null pointer dereference in cdv_intel_lvds_get_modes 8d01e63faac11 io_uring/io-wq: limit retrying worker initialisation 8a31e8ff48096 ext2: Verify bitmap and itable block numbers before using them 9c4e40b9b7312 hfs: fix to initialize fields of hfs_inode_info after hfs_alloc_inode() 2c59cc6147808 ata: libata-scsi: Honor the D_SENSE bit for CK_COND=1 and no error ce477199c53e3 ata: libata-scsi: Do not overwrite valid sense data when CK_COND=1 66fa52edd32cd media: venus: fix use after free in vdec_close 2b1aec0e6c1b9 char: tpm: Fix possible memory leak in tpm_bios_measurements_open() 5a7c16a8b393b ata: libata-scsi: Fix offsets for the fixed format sense data fcebdc0d49d27 fuse: verify {g,u}id mount options correctly 7ca529748b2df sched/fair: set_load_weight() must also call reweight_task() for SCHED_IDLE tasks b047898a9f4b6 NFSD: Support write delegations in LAYOUTGET 46cb65e5b19ab ipv6: take care of scope when choosing the src addr 0aa47c27f8a2a ipv4: fix source address selection with route leak 5c07084001e15 kernel: rerun task_work while freezing in get_signal() c205565e0f2f4 btrfs: fix extent map use-after-free when adding pages to compressed bio 5a041d25b6704 af_packet: Handle outgoing VLAN packets without hardware offloading 9e541c2d60baa net: netconsole: Disable target before netpoll cleanup 3a58c590f6bd1 tick/broadcast: Make takeover of broadcast hrtimer reliable a0495607c1f6f dt-bindings: thermal: correct thermal zone node name limit a7ac198f8dba7 exfat: fix potential deadlock on __exfat_get_dentry_set d849da88f7dad x86/efistub: Revert to heap allocated boot_params for PE entrypoint c12db5aa54152 x86/efistub: Avoid returning EFI_SUCCESS on error 3e1e4763618d7 mm/mglru: fix overshooting shrinker memory 0038abf9ddec9 mm: mmap_lock: replace get_memcg_path_buf() with on-stack buffer d6510f234c7d1 mm/mglru: fix div-by-zero in vmpressure_calc_level() 99a49b670ede4 mm/hugetlb: fix possible recursive locking detected warning c311d65129ba1 hugetlb: force allocating surplus hugepages on mempolicy allowed nodes 16896914bace8 landlock: Don't lose track of restrictions on cred_transfer cc3368064c68a LoongArch: Check TIF_LOAD_WATCH to enable user space watchpoint 8fe6e8cb5fba5 sbitmap: fix io hung due to race on sbitmap_word::cleared a3e4c8f8da2c8 sbitmap: use READ_ONCE to access map->word e511167e65d33 s390/dasd: fix error checks in dasd_copy_pair_store() 145bc12827186 powerpc/8xx: fix size given to set_huge_pte_at() acb2835abe41d fs/ntfs3: Keep runs for $MFT::$ATTR_DATA and $MFT::$ATTR_BITMAP f8599ff1a0b99 fs/ntfs3: Missed error return 58ebd50d22529 fs/ntfs3: Fix the format of the "nocase" mount option 99eb4449cf0f5 rtc: interface: Add RTC offset to alarm after fix-up a3fd1a14ddfd4 nilfs2: avoid undefined behavior in nilfs_cnt32_ge macro 8acbcc5067acb fs/proc/task_mmu: properly detect PM_MMAP_EXCLUSIVE per page of PMD-mapped THPs cdeba6d1cfb10 fs/proc/task_mmu: don't indicate PM_MMAP_EXCLUSIVE without PM_PRESENT 92e8bd49ab486 fs/proc/task_mmu.c: add_to_pagemap: remove useless parameter addr 3aa4d9163ae18 fs/proc/task_mmu: indicate PM_FILE for PMD-mapped file THP 09c5a17293e76 pinctrl: renesas: r8a779g0: Fix TPU suffixes 798a182fb3946 pinctrl: renesas: r8a779g0: Fix TCLK suffixes 6b8ba65b09285 pinctrl: renesas: r8a779g0: FIX PWM suffixes 637cb96dc70c2 pinctrl: renesas: r8a779g0: Fix IRQ suffixes 37198b25defcd pinctrl: renesas: r8a779g0: Fix (H)SCIF3 suffixes 70b7259e6f8cc pinctrl: renesas: r8a779g0: Fix (H)SCIF1 suffixes e59258c5649c5 pinctrl: renesas: r8a779g0: Fix FXR_TXEN[AB] suffixes 8cdbe6ebfd176 pinctrl: renesas: r8a779g0: Fix CANFD5 suffix a0bfea5e7e8b9 fs/ntfs3: Fix field-spanning write in INDEX_HDR ab09df593db51 fs/ntfs3: Drop stray '\' (backslash) in formatting string d0c3ba56fb642 fs/ntfs3: Correct undo if ntfs_create_inode failed 53173e3865acb fs/ntfs3: Replace inode_trylock with inode_lock e0ed0ea337fd2 pinctrl: freescale: mxs: Fix refcount of child a9b717514070e pinctrl: ti: ti-iodelay: fix possible memory leak when pinctrl_enable() fails cbcdfab9b9417 pinctrl: ti: ti-iodelay: Drop if block with always false condition 197c5c80353be pinctrl: single: fix possible memory leak when pinctrl_enable() fails 99ae0689ab567 pinctrl: core: fix possible memory leak when pinctrl_enable() fails d51dc9f949c37 pinctrl: rockchip: update rk3308 iomux routes bcd4e15e7e481 fs/ntfs3: Add missing .dirty_folio in address_space_operations 055f22654ae3c fs/ntfs3: Fix getting file type 2f4ddb5a17739 fs/ntfs3: Missed NI_FLAG_UPDATE_PARENT setting 645da4f92c782 fs/ntfs3: Deny getting attr data block in compressed frame c4df2d482137b fs/ntfs3: Fix transform resident to nonresident for compressed files f37b756a2350d fs/ntfs3: Merge synonym COMPRESSION_UNIT and NTFS_LZNT_CUNIT 967879893cfe4 net: dsa: b53: Limit chip-wide jumbo frame config to CPU ports 50816049b1dc4 net: dsa: mv88e6xxx: Limit chip-wide frame size config to CPU ports 935dec4e42773 ipv4: Fix incorrect TOS in fibmatch route get reply 015d29dbe450e ipv4: Fix incorrect TOS in route get reply 4afbac11f2f62 net: flow_dissector: use DEBUG_NET_WARN_ON_ONCE 9b66bb1c586cc gve: Fix XDP TX completion handling when counters overflow 3dd428039e06e ipvs: properly dereference pe in ip_vs_add_service 69b6a67f70529 netfilter: nf_set_pipapo: fix initial map fill 744bd92e0b902 netfilter: nft_set_pipapo: constify lookup fn args where possible 27662b46f2ada netfilter: ctnetlink: use helper function to calculate expect ID 08e4d9209a033 bnxt_re: Fix imm_data endianness ac45a09a19ca9 RDMA: Fix netdev tracker in ib_device_set_netdev 60708cb279f34 RDMA/core: Remove NULL check before dev_{put, hold} ddeff5d66e120 iommu/vt-d: Fix identity map bounds in si_domain_init() e22ea60d2cabd RDMA/hns: Fix insufficient extend DB for VFs. 7bf1e00d95168 RDMA/hns: Fix undifined behavior caused by invalid max_sge b47c078787d9e RDMA/hns: Fix shift-out-bounds when max_inline_data is 0 4d480e45cb7ff RDMA/hns: Fix missing pagesize and alignment check in FRMR f098ad96ebb0f RDMA/hns: Fix unmatch exception handling when init eq table fails 72bbfe07f7ea4 RDMA/hns: Check atomic wr length a60111f96ef49 macintosh/therm_windtunnel: fix module unload. 4af273068f0d1 powerpc/xmon: Fix disassembly CPU feature checks 924464999a7c3 PCI: dwc: Fix index 0 incorrectly being interpreted as a free ATU slot 6c1a7c00baacf PCI: qcom-ep: Disable resources unconditionally during PERST# assert f59ae465b28a1 MIPS: Octeron: remove source file executable bit aa8cc8b237d96 clk: en7523: fix rate divider for slic and spi clocks 56a118f5c7d54 clk: qcom: Park shared RCGs upon registration 7e8e9d3d4ecfd clk: qcom: kpss-xcc: Return of_clk_add_hw_provider to transfer the error adbaa8f99c9a1 crypto: qat - extend scope of lock in adf_cfg_add_key_value_param() 846ee3b60abf4 nvmem: rockchip-otp: set add_legacy_fixed_of_cells config option 90d41ebe0cd46 net: missing check virtio 30bd459366944 vhost/vsock: always initialize seqpacket_allow 3750e92cccf09 PCI: endpoint: Fix error handling in epf_ntb_epc_cleanup() 0e27e2e8697b8 PCI: endpoint: Clean up error handling in vpci_scan_bus() 99b642dac24f6 ASoC: amd: Adjust error handling in case of absent codec device 3dbfcd4d68f54 Input: elan_i2c - do not leave interrupt disabled on suspend failure 480d281743ded RDMA/device: Return error earlier if port in not valid 52cfbd6d9a1e9 mtd: make mtd_test.c a separate module 5e1659d71c099 ASoC: max98088: Check for clk_prepare_enable() error 6e891b0406b24 powerpc/prom: Add CPU info to hardware description string later e977bf4c61c6b hwrng: core - Fix wrong quality calculation at hw rng registration 57600a7dd2b52 scsi: lpfc: Fix a possible null pointer dereference b32e36e398e28 ASoC: qcom: Adjust issues in case of DT error in asoc_qcom_lpass_cpu_platform_probe() 9fbfef061f3f6 RDMA/rxe: Don't set BTH_ACK_MASK for UC or UD QPs f79ae071ba348 RDMA/mlx5: Use sq timestamp as QP timestamp when RoCE is disabled 36812619d2b47 RDMA/mlx4: Fix truncated output warning in alias_GUID.c f0583d6dea6c8 RDMA/mlx4: Fix truncated output warning in mad.c 8f8b4da72f1bd Input: qt1050 - handle CHIP_ID reading error 48eecce940eff interconnect: qcom: qcm2290: Fix mas_snoc_bimc RPM master ID e2c0cc7976174 clk: qcom: gpucc-sa8775p: Update wait_val fields for GPU GDSC's 9d6cff2b3734b clk: qcom: gpucc-sa8775p: Park RCG's clk source at XO during disable 5d7c8436e3f90 clk: qcom: gpucc-sa8775p: Remove the CLK_IS_CRITICAL and ALWAYS_ON flags e37d8e79ce115 clk: qcom: gcc-sa8775p: Update the GDSC wait_val fields and flags 48de26f358ae6 clk: qcom: gpucc-sm8350: Park RCG's clk source at XO during disable 77765f8fc08a1 RDMA/cache: Release GID table even if leak is detected 9cc5d640d20d4 usb: typec-mux: nb7vpq904m: unregister typec switch on probe error and remove 5f7b12db1fa44 ASoC: cs35l56: Accept values greater than 0 as IRQ numbers 417fb74fa7920 ASoc: tas2781: Enable RCA-based playback without DSP firmware download 93090f08cf7a5 RDMA/mlx5: Set mkeys for dmabuf at PAGE_SIZE 0b6bef6202963 coresight: Fix ref leak when of_coresight_parse_endpoint() fails b8bdda6811778 KVM: PPC: Book3S HV: Fix the get_one_reg of SDAR 74e308be5b496 KVM: PPC: Book3S HV: Fix the set_one_reg for MMCR3 d115e1759d189 iio: frequency: adrf6780: rm clk provider include b6f7aac2b1bb0 clk: qcom: camcc-sc7280: Add parent dependency to all camera GDSCs 698f30703f53f clk: qcom: gcc-sc7280: Update force mem core bit for UFS ICE clock 993cace4f39f6 scsi: ufs: mcq: Fix missing argument 'hba' in MCQ_OPR_OFFSET_n 526a877c6273d PCI: rcar: Demote WARN() to dev_warn_ratelimited() in rcar_pcie_wakeup() 0a6f1b5fe8ef8 PCI: keystone: Fix NULL pointer dereference in case of DT error in ks_pcie_setup_rc_app_regs() 24e2490c58454 PCI: keystone: Don't enable BAR 0 for AM654x 764d75ce552b6 PCI: keystone: Relocate ks_pcie_set/clear_dbi_mode() 4cd2eca07fa32 PCI: Fix resource double counting on remove & rescan 31ff8464ef540 iio: Fix the sorting functionality in iio_gts_build_avail_time_table 0cd55c6e6d90c SUNRPC: Fixup gss_status tracepoint error output c7e94ab3ae78e sparc64: Fix incorrect function signature and add prototype for prom_cif_init 051a246bae056 leds: flash: leds-qcom-flash: Test the correct variable in init 1e81d6c383da1 ext4: avoid writing unitialized memory to disk in EA inodes 6b18e4eff352a ext4: don't track ranges in fast_commit if inode has inlined data 5d52f871c7f00 NFSv4.1 another fix for EXCHGID4_FLAG_USE_PNFS_DS for DS server 3b45d190eb7a2 SUNRPC: avoid soft lockup when transmitting UDP to reachable server. 83e025da9f427 xprtrdma: Fix rpcrdma_reqs_reset() 5b042b7b3fee6 mfd: omap-usb-tll: Use struct_size to allocate tll 05e4efd12fca6 mfd: rsmu: Split core code into separate module 3fc173fb4f3d1 perf intel-pt: Fix exclude_guest setting f24f95be74dde perf intel-pt: Fix aux_watermark calculation for 64-bit size 645753ce91cd5 media: venus: flush all buffers in output plane streamoff 844801d980561 drm/mediatek/dp: Fix spurious kfree() 8f0d32c78732f drm/mediatek/dp: switch to ->edid_read callback c6e67df64783e ext4: fix infinite loop when replaying fast_commit 016accce9da6d drm/mediatek: Remove less-than-zero comparison of an unsigned value c327a4fafe139 Revert "leds: led-core: Fix refcount leak in of_led_get()" 4b1f303bdecea drm/qxl: Add check for drm_cvt_mode 6b723caa4ec2f drm/etnaviv: fix DMA direction handling for cached RW buffers 7678d9b3487ee perf report: Fix condition in sort__sym_cmp() 6b3b9c234ce05 perf pmus: Fixes always false when compare duplicates aliases fa423fe6d9ca5 perf test: Make test_arm_callgraph_fp.sh more robust 98c14a4d37f75 drm/msm/dpu: drop validity checks for clear_pending_flush() ctl op 724ec08c6e0df drm/msm/dsi: set VIDEO_COMPRESSION_MODE_CTRL_WC cb8aa9d2a4c8a leds: trigger: Unregister sysfs attributes before calling deactivate() be50a293ebc61 media: imx-jpeg: Drop initial source change event if capture has been setup 176509258f77c drm/mediatek: Add OVL compatible name for MT8195 5dbb98e7fa42b drm/mediatek: Turn off the layers with zero width or height 7445f2ab56da5 drm/mediatek: Fix destination alpha error in OVL 7b59d750d43dd drm/mediatek: Fix XRGB setting error in Mixer 35447af296ae1 drm/mediatek: Fix XRGB setting error in OVL 232c04216cbf0 drm/mediatek: Use 8-bit alpha in ETHDR df55acaac4bb7 drm/mediatek: Add missing plane settings when async update 74e622f30737e media: renesas: vsp1: Store RPF partition configuration per RPF instance fe2025b8f977e media: renesas: vsp1: Fix _irqsave and _irq mix c276c2bfd785b media: rcar-csi2: Cleanup subdevice in remove() 3b6d4821dd076 media: rcar-csi2: Disable runtime_pm in probe error ea4f6c74d41f8 media: rcar-vin: Fix YUYV8_1X16 handling for CSI-2 c6ad6096f9ce5 drm: zynqmp_kms: Fix AUX bus not getting unregistered b2f9bfe76d460 drm: zynqmp_dpsub: Fix an error handling path in zynqmp_dpsub_probe() afb83918e1a95 media: uvcvideo: Override default flags 6dbe1b7697920 media: uvcvideo: Add quirk for invalid dev_sof in Logitech C920 7b0155fe8f7e8 media: uvcvideo: Quirk for invalid dev_sof in Logitech C922 991df39499e55 media: uvcvideo: Disable autosuspend for Insta360 Link 6377b078e5593 media: i2c: imx219: fix msr access command sequence 6c1358bbdd5b3 saa7134: Unchecked i2c_transfer function result fixed fa6950e4dab8e ipmi: ssif_bmc: prevent integer overflow on 32bit systems 27465601abe1a x86/shstk: Make return uprobe work with shadow stack 1c109f23b271a media: mediatek: vcodec: Handle invalid decoder vsi 8736604ef5335 s390/uv: Don't call folio_wait_writeback() without a folio reference 79bcb67ed9bb6 s390/mm: Convert gmap_make_secure to use a folio 098ca9219c496 s390/mm: Convert make_page_secure to use a folio 249212ceb4187 media: v4l: async: Fix NULL pointer dereference in adding ancillary links 88a45f9dc1845 media: i2c: Fix imx412 exposure control ff64b8197203e media: imon: Fix race getting ictx->lock f543af2e0a6df media: dvb-usb: Fix unexpected infinite loop in dvb_usb_read_remote_control() 3d8fd92939e21 media: pci: ivtv: Add check for DMA map result 9414381fea73c drm/bridge: it6505: fix hibernate to resume no display issue 2918b50ad6a7f drm/bridge: Fixed a DP link training bug c9bec33bd4cf4 drm/panel: boe-tv101wum-nl6: Check for errors on the NOP in prepare() 93296c252789d drm/panel: boe-tv101wum-nl6: If prepare fails, disable GPIO before regulators 93486f4f4810d drm/panel: himax-hx8394: Handle errors from mipi_dsi_dcs_set_display_on() better 6d72626808325 drm/amdgpu: Remove GC HW IP 9.3.0 from noretry=1 67b4592a7d74e drm/amdgpu: Check if NBIO funcs are NULL in amdgpu_device_baco_exit ae1dd0a379e41 drm/amdgpu: Fix memory range calculation 0af2e5cb74514 drm/amd/pm: Fix aldebaran pcie speed reporting 8d869d02a10e5 drm/mipi-dsi: Fix theoretical int overflow in mipi_dsi_generic_write_seq() 4e9d95a132d0b drm/mipi-dsi: Fix theoretical int overflow in mipi_dsi_dcs_write_seq() cd1885ae4cbf1 drm/amdkfd: Fix CU Masking for GFX 9.4.3 5b78b88aa00a6 drm/arm/komeda: Fix komeda probe failing if there are no links in the secondary pipeline 86d201285a29e drm/rockchip: vop2: Fix the port mux of VP2 c43046d7e7a49 net: bridge: mst: Check vlan state for egress decision bf0ce5aa5f252 xdp: fix invalid wait context of page_pool_destroy() e8558b800ea1a Bluetooth: btnxpuart: Add handling for boot-signature timeout errors e19f7b046ac23 Bluetooth: btintel: Refactor btintel_set_ppag() 424b424fad37a Bluetooth: hci_bcm4377: Use correct unit for timeouts 7c1118588aa66 selftests: forwarding: devlink_lib: Wait for udev events after reloading 9d40fd516aeae bpf: Fix null pointer dereference in resolve_prog_type() for BPF_PROG_TYPE_EXT 33a1321fb9a93 bpf: Eliminate remaining "make W=1" warnings in kernel/bpf/btf.o b0ff0cd0847b0 bna: adjust 'name' buf size of bna_tcb and bna_ccb structures 5306d9a55492f bpf: annotate BTF show functions with __printf 67f4e66b34a4b selftests/resctrl: Fix closing IMC fds on error and open-code R+W instead of loops 384dc568e3b2f selftests/resctrl: Convert perror() to ksft_perror() or ksft_print_msg() ec204ab6c2a9e selftests/resctrl: Move run_benchmark() to a more fitting file a2cb20de7a21a selftests/bpf: Close obj in error path in xdp_adjust_tail 691ec7043122c selftests/bpf: Null checks for links in bpf_tcp_ca 2a789fc168614 selftests/bpf: Close fd in error path in drop_on_reuseport d179ebed94c73 locking/rwsem: Add __always_inline annotation to __down_write_common() and inlined callers 9a95e70726337 wifi: virt_wifi: don't use strlen() in const context 477163b7f58e2 gss_krb5: Fix the error handling path for crypto_sync_skcipher_setkey 36e92b5edc8e0 wifi: virt_wifi: avoid reporting connection success with wrong SSID 4b66e79650cf0 xfrm: call xfrm_dev_policy_delete when kill policy 0c92f090170a4 xfrm: fix netdev reference count imbalance 7a0edc3d83aff wifi: rtw89: Fix array index mistake in rtw89_sta_info_get_iter() ef49102bfa364 perf/x86/intel/cstate: Fix Alderlake/Raptorlake/Meteorlake 0c8a2ef120b81 perf: Fix default aux_watermark calculation 3e43ad7df75ab perf: Prevent passing zero nr_pages to rb_alloc_aux() 3d5fa18ea1612 perf: Fix perf_aux_size() for greater-than 32-bit size 69da07e53ce9b perf/x86/intel/pt: Fix pt_topa_entry_for_page() address calculation 77bf25dab8cee bpftool: Mount bpffs when pinmaps path not under the bpffs 878c90b54b839 xfrm: Export symbol xfrm_dev_state_delete. 0f6b8aed5d915 wifi: rtl8xxxu: 8188f: Limit TX power index 150b7f9a914a0 wifi: rtw89: 8852b: fix definition of KIP register number 802de757097bb netfilter: nf_tables: rise cap on SELinux secmark context fed3317b2d3f5 ipvs: Avoid unnecessary calls to skb_is_gso_sctp d5f53edd43daf xfrm: Fix unregister netdevice hang on hardware offload. c276044f2661d libbpf: Checking the btf_type kind when fixing variable offsets 16c5cb3280b8d net: fec: Fix FEC_ECR_EN1588 being cleared on link-down e6c691f6626aa net: fec: Refactor: #define magic constants fe2ead240c31e udf: Fix bogus checksum computation in udf_rename() 67b5f1054197e wifi: cfg80211: handle 2x996 RU allocation in cfg80211_calculate_bitrate_he() 0675037972d12 wifi: cfg80211: fix typo in cfg80211_calculate_bitrate_he() 51a8a235f2403 wifi: ath11k: fix wrong handling of CCMP256 and GCMP ciphers fc5cdbe1be31f jump_label: Fix concurrency issues in static_key_slow_dec() a1359e085d75d perf/x86: Serialize set_attr_rdpmc() f7c2f0e0cb5cb mlxsw: spectrum_acl: Fix ACL scale regression and firmware errors 0e59c2d228532 mlxsw: spectrum_acl_erp: Fix object nesting warning 1936fa05a1808 lib: objagg: Fix general protection fault e382588b8d149 udf: Fix lock ordering in udf_evict_inode() be953b4eb420c selftests/bpf: Check length of recv in test_sockmap a9e46f955409a net/smc: set rmb's SG_MAX_SINGLE_ALLOC limitation only when CONFIG_ARCH_NO_SG_CHAIN is defined 44aa1e461ccd1 tcp: fix races in tcp_v[46]_err() bc4f9c2ccd68a tcp: fix race in tcp_write_err() ecc6836d63513 tcp: add tcp_done_with_error() helper c42b268bee48f wifi: ath12k: fix wrong definition of CE ring's base address 3e779817167a2 wifi: ath11k: fix wrong definition of CE ring's base address 586c7fb1f5bed wifi: ath11k: Update Qualcomm Innovation Center, Inc. copyrights 0de96f9a82308 wifi: ath12k: fix firmware crash during reo reinject 8126f82dab7bd wifi: ath12k: fix invalid memory access while processing fragmented packets e99d9b16ff153 wifi: ath12k: change DMA direction while mapping reinjected packets 7797efc98e715 net: esp: cleanup esp_output_tail_tcp() in case of unsupported ESPINTCP d8ffeb5bd59ab selftests/bpf: Fix prog numbers in test_sockmap f3c9773d9c3dc bpftool: Un-const bpf_func_info to fix it for llvm 17 and newer 3d4e3a37cce4e wifi: ath12k: Fix tx completion ring (WBM2SW) setup failure cf484c84c69d5 wifi: ath12k: Correct 6 GHz frequency value in rx status 0c1c95850d870 wifi: brcmsmac: LCN PHY code is used for BCM4313 2G-only device d027ac4a08541 firmware: turris-mox-rwtm: Initialize completion before mailbox 6173dd13f65f3 firmware: turris-mox-rwtm: Fix checking return value of wait_for_completion_timeout() 2f4f8d171ecc5 firmware: turris-mox-rwtm: Do not complete if there are no waiters 9312a63da77c0 vmlinux.lds.h: catch .bss..L* sections into BSS") e6c9eca327e6a ARM: spitz: fix GPIO assignment for backlight b8cdefdaa555b m68k: cmpxchg: Fix return value for default case in __arch_xchg() 13a71384ae6a8 cpufreq/amd-pstate: Fix the scaling_max_freq setting on shared memory CPPC systems 72ff9d26964a3 arm64: dts: qcom: sm6350: Add missing qcom,non-secure-domain property c2e8bdc0d08ec arm64: dts: rockchip: fixes PHY reset for Lunzn Fastrhino R68S 78beab7a91293 arm64: dts: rockchip: disable display subsystem for Lunzn Fastrhino R6xS d1568659662cb arm64: dts: rockchip: remove unused usb2 nodes for Lunzn Fastrhino R6xS 215b1aaa73d85 arm64: dts: rockchip: fix pmu_io supply for Lunzn Fastrhino R6xS d523659f7abbc arm64: dts: rockchip: fix usb regulator for Lunzn Fastrhino R6xS bca0d0102fcde arm64: dts: rockchip: fix regulator name for Lunzn Fastrhino R6xS becbe98ceeb1f arm64: dts: rockchip: Add missing power-domains for rk356x vop_mmu da8ea49d00921 x86/xen: Convert comma to semicolon 2e67d5cdc3706 arm64: dts: imx8mp: Fix pgc vpu locations 713750aadbd0f arm64: dts: imx8mp: add HDMI power-domains 0150dbc01d266 arm64: dts: imx8mp: Fix pgc_mlmix location 1beddcda55d54 arm64: dts: imx8mp: Add NPU Node 1667b2756216e m68k: atari: Fix TT bootup freeze / unexpected (SCU) interrupt messages d5cfd8da7e353 arm64: dts: renesas: r9a07g054: Add missing hypervisor virtual timer IRQ fc46ee662496f arm64: dts: renesas: r9a07g044: Add missing hypervisor virtual timer IRQ 35dcc7e3bd258 arm64: dts: renesas: r9a07g043u: Add missing hypervisor virtual timer IRQ ad15922975042 arm64: dts: renesas: r8a779g0: Add missing hypervisor virtual timer IRQ 880c61a7cae2c arm64: dts: renesas: r8a779f0: Add missing hypervisor virtual timer IRQ 5baa02d5c07f2 arm64: dts: renesas: r8a779a0: Add missing hypervisor virtual timer IRQ 878177c7dd2da arm64: dts: rockchip: Fix mic-in-differential usage on rk3568-evb1-v10 e15757553b27f arm64: dts: rockchip: Fix mic-in-differential usage on rk3566-roc-pc 3f2f40a1d1959 arm64: dts: rockchip: Drop invalid mic-in-differential on rk3568-rock-3a 3f75eb9f99635 arm64: dts: amlogic: setup hdmi system clock fbb1f7ab0b15b arm64: dts: amlogic: add power domain to hdmitx b44836994a749 arm64: dts: amlogic: gx: correct hdmi clocks 3cfa05f9e1ab9 arm64: dts: mediatek: mt8183-kukui-jacuzzi: Add ports node for anx7625 0580ecfcafb79 arm64: dts: mediatek: mt8183-kukui: Fix the value of `dlg,jack-det-rate` mismatch db85bab1a46a2 arm64: dts: mediatek: mt7622: fix "emmc" pinctrl mux d014162a3e7ab arm64: dts: mediatek: mt8192-asurada: Add off-on-delay-us for pp3300_mipibrdg 94a6cd9f279cc arm64: dts: mediatek: mt8183-kukui: Drop bogus output-enable property 440a052ff9b89 arm64: dts: mediatek: mt8195: Fix GPU thermal zone name for SVS 80d8afcaecf3d ARM: dts: imx6qdl-kontron-samx6i: fix PCIe reset polarity 5b2db0b42fa71 ARM: dts: imx6qdl-kontron-samx6i: fix SPI0 chip selects e71469e2af115 ARM: dts: imx6qdl-kontron-samx6i: fix board reset 3b96e42127ab2 ARM: dts: imx6qdl-kontron-samx6i: fix PHY reset e139b742a7efb ARM: dts: imx6qdl-kontron-samx6i: fix phy-mode 7120acc1a1c66 arm64: dts: amlogic: sm1: fix spdif compatibles 665272557447f arm64: dts: rockchip: Increase VOP clk rate on RK3328 d48f3bb4314fa soc: qcom: pdr: fix parsing of domains lists 3e815626d73e0 soc: qcom: pdr: protect locator_addr with the main mutex aad41f4c169bc soc: qcom: icc-bwmon: Fix refcount imbalance seen during bwmon_remove fab4a7b23492e arm64: dts: qcom: qdu1000: Add secure qfprom node 7267936f3c115 arm64: dts: qcom: qdu1000-idp: drop unused LLCC multi-ch-bit-off 051ac32bedab2 arm64: dts: ti: k3-am62-verdin: Drop McASP AFIFOs 7eb34eae2463b arm64: dts: ti: k3-am625-beagleplay: Drop McASP AFIFOs 22646c52e42bb arm64: dts: ti: k3-am62x: Drop McASP AFIFOs c22649e217457 memory: fsl_ifc: Make FSL_IFC config visible and selectable 21dec02291f67 OPP: ti: Fix ti_opp_supply_probe wrong return values d94eb194aacb3 cpufreq: ti-cpufreq: Handle deferred probe with dev_err_probe() 4b493143662a8 arm64: dts: qcom: qrb4210-rb2: make L9A always-on b6271fb067bfb ARM: dts: stm32: Add arm,no-tick-in-suspend to STM32MP15xx STGEN timer 0fffc2e1bf40a ARM: dts: sunxi: remove duplicated entries in makefile a96e60a6ea681 soc: xilinx: rename cpu_number1 to dummy_cpu_number adc0b5c113ab9 arm64: dts: qcom: sa8775p: mark ethernet devices as DMA-coherent 33fb3e38c98c1 arm64: dts: qcom: msm8996: specify UFS core_clk frequencies a86a568567583 arm64: dts: rockchip: Update WIFi/BT related nodes on rk3308-rock-pi-s 0c4c1b7daf23b arm64: dts: rockchip: Add mdio and ethernet-phy nodes to rk3308-rock-pi-s 30ee9e5ecc5fd arm64: dts: rockchip: Add pinctrl for UART0 to rk3308-rock-pi-s 96155dc8c99e7 arm64: dts: rockchip: Add sdmmc related properties on rk3308-rock-pi-s 459f84f8ee8db soc: qcom: rpmh-rsc: Ensure irqs aren't disabled by rpmh_rsc_send_data() callers 762384e9cc656 soc: qcom: pmic_glink: Handle the return value of pmic_glink_init 4bf50c7dcd393 arm64: dts: qcom: msm8998: enable adreno_smmu by default 23e44279f23e6 arm64: dts: qcom: sdm850-lenovo-yoga-c630: fix IPA firmware path d74b0b6c67efc arm64: dts: qcom: msm8996-xiaomi-common: drop excton from the USB PHY 4d460ea917e75 arm64: dts: qcom: sm8450: add power-domain to UFS PHY bfe998470dc45 arm64: dts: qcom: sm8350: add power-domain to UFS PHY f43134d6188fd arm64: dts: qcom: sm8250: add power-domain to UFS PHY cf2ca135496ad arm64: dts: qcom: sm8250: switch UFS QMP PHY to new style of bindings 928691e768b17 arm64: dts: qcom: sm6350: add power-domain to UFS PHY 3832f6d4f4b11 arm64: dts: qcom: sm6115: add power-domain to UFS PHY 15a0aec207cec arm64: dts: qcom: sdm845: add power-domain to UFS PHY 23ce7878ed7ba arm64: dts: qcom: sc8180x: add power-domain to UFS PHY 9a39bcdaa6c84 arm64: dts: qcom: sc8180x: switch UFS QMP PHY to new style of bindings 72a9e5ffd4837 arm64: dts: qcom: sc8180x: Correct PCIe slave ports 5bf6767c13d20 hwmon: (max6697) Fix swapped temp{1,8} critical alarms feb57c9a4f8d5 hwmon: (max6697) Fix underflow when writing limit attributes 0804bd05f3354 pwm: atmel-tcb: Fix race condition and convert to guards 390645c5c1642 drm/meson: fix canvas release in bind function 908ce7f56847a nvmet-auth: fix nvmet_auth hash error handling 386171ae7fa8b pwm: stm32: Always do lazy disabling 00893662707a5 md: Don't wait for MD_RECOVERY_NEEDED for HOT_REMOVE_DISK ioctl 2a6849a2b6bea block/mq-deadline: Fix the tag reservation code b2c67e1f80deb block: Call .limit_depth() after .hctx has been set ff36cc0bc63a7 hwmon: (adt7475) Fix default duty on fan is disabled 96226fbed566f cgroup/cpuset: Prevent UAF in proc_cpuset_show() aea95c68b7459 kernfs: Convert kernfs_path_from_node_locked() from strlcpy() to strscpy() c8a36455a0fb7 x86/platform/iosf_mbi: Convert PCIBIOS_* return codes to errnos 56d4e76223aac x86/pci/xen: Fix PCIBIOS_* return code handling 12b24c1cee71d x86/pci/intel_mid_pci: Fix PCIBIOS_* return code handling f6c475c3dc440 x86/of: Return consistent error type from x86_of_pci_irq_enable() f04da10d2cbc1 hfsplus: fix to avoid false alarm of circular locking c8cae1c194268 x86/kconfig: Add as-instr64 macro to properly evaluate AS_WRUSS 23a19655fb56f block: initialize integrity buffer to zero before writing it to media 1cfdfb965e274 ubd: untagle discard vs write zeroes not support handling 3236c24532839 ubd: refactor the interrupt handler b37d68ab60c58 platform/chrome: cros_ec_debugfs: fix wrong EC message version 2d0738a8322bf md: fix deadlock between mddev_suspend and flush bio 43b75d54398ac rcu/tasks: Fix stale task snaphot for Tasks Trace c25ae63de6805 EDAC, i10nm: make skx_common.o a separate module 754b569bc801c spi: atmel-quadspi: Add missing check for clk_prepare df8e2a3eabcf9 spi: spi-microchip-core: Fix the number of chip selects supported 310377719c544 powerpc/configs: Update defconfig with now user-visible CONFIG_FSL_IFC 35046aea43c85 bpftool: Fix undefined bpf macro for unix socket 9a558d4b86219 tools/resolve_btfids: Fix comparison of distinct pointer types warning in resolve_btfids 42b2eec2e5039 bpftool: Query only cgroup-related attach types f71bb11887bae cpu/amd: inhibit SMP check for qemux86 c31365597a17b powerpc/uaccess: Fix build errors seen with GCC 13/14 64ebf485c56b5 usb: dwc3: core: remove lock of otg mode during gadget suspend/resume to avoid deadlock 7c76aad68f6d1 kselftest: Add a ksft_perror() helper 06644f0d7193d drm/tilcdc: Set preferred depth ff7ae7b323242 crypto: jitter - add RCT/APT support for different OSRs 50cd24ddb6f0b arm64: defconfig: remove CONFIG_IPQ_APSS_5018 58e5c91d6701f x86/alternatives: Disable interrupts and sync when optimizing NOPs in place c878fd2d4c793 x86/alternatives: Sync core before enabling interrupts c2d64b9f52b6e qemux86: add configuration symbol to select values 630c33229e6d5 sched/isolation: really align nohz_full with rcu_nocbs 0e5e0f68e2e6e clear_warn_once: add a clear_warn_once= boot parameter 46934791b9026 clear_warn_once: bind a timer to written reset value cdee9e38ff324 clear_warn_once: expand debugfs to include read support 82b562b818419 tools: Remove some options from CLANG_CROSS_FLAGS 36dc380b776b1 libbpf: Fix build warning on ref_ctr_off 9e3e1fe209827 perf: perf can not parser the backtrace of app in the 32bit system and 64bit kernel. e497a4a5da65b perf: x86-32: explicitly include <errno.h> 7b57ddd89565b perf: mips64: Convert __u64 to unsigned long long 1cfc19423dc7f perf: fix bench numa compilation 98bc2815fade4 perf: add SLANG_INC for slang.h 17209a70b9b39 perf: add sgidefs.h to for mips builds 9cd4258d910af perf: change --root to --prefix for python install 8110a4f266284 perf: add 'libperl not found' warning bc89d5e08f773 perf: force include of <stdbool.h> 4f6c760cc876a fat: Replace prandom_u32() with get_random_u32() bc53117b12b21 fat: don't use obsolete random32 call in namei_vfat 30b2236ab3786 FAT: Added FAT_NO_83NAME cef98d22b4edf FAT: Add CONFIG_VFAT_NO_CREATE_WITH_LONGNAMES option 0bbd7daba9e1b FAT: Add CONFIG_VFAT_FS_NO_DUALNAMES option 5883fc340084a aufs6: adapt to v6.6 i_op->ctime changes c4342d979bf21 aufs6: fix magic.mk include path 35266bc2dc81a aufs6: adapt to v6.6 8edede4e98be1 aufs6: core 712248233ebe1 aufs6: standalone 3b71a8a848d8b aufs6: mmap 3e2924871f371 aufs6: base 7f4907a931016 aufs6: kbuild d2f7b03e4aa77 yaffs2: update VFS ctime operations to 6.6+ bcd6cfcd1aa04 yaffs2: v6.5 fixups cc615704b5f54 yaffs2: Fix miscalculation of devname buffer length 8ef2e22dcf913 yaffs2: convert user_namespace to mnt_idmap c9c749f9f7d34 yaffs2: replace bdevname call with sprintf 395b01cdc39d1 yaffs2: convert read_page -> readfolio d98b07e43ba61 yaffs: replace IS_ERR with IS_ERR_OR_NULL to check both ERR and NULL 613c6d50fdbe8 yaffs: fix -Wstringop-overread compile warning in yaffs_fix_null_name 622c4648936f3 yaffs2: v5.12+ build fixups (not runtime tested) 7562133d4090b yaffs: include blkdev.h dbd44252cd592 yaffs: fix misplaced variable declaration c223a10b1ac08 yaffs2: v5.6 build fixups 90f6007cfbf41 yaffs2: fix memory leak when /proc/yaffs is read 37ee169c5ea10 yaffs: add strict check when call yaffs_internal_read_super b6e007b8abb6e yaffs: repair yaffs_get_mtd_device fb98f65a466a7 yaffs: Fix build failure by handling inode i_version with proper atomic API 51e0aac75ea27 yaffs2: fix memory leak in mount/umount 2b74a0cae7b0b yaffs: Avoid setting any ACL releated xattr ff4130a9c3766 Yaffs:check oob size before auto selecting Yaffs1 ba95b409c67cd fs: yaffs2: replace CURRENT_TIME by other appropriate apis 8fa35eba90565 yaffs2: adjust to proper location of MS_RDONLY 1eb5deaad8c4a yaffs2: import git revision b4ce1bb (jan, 2020) 4dce67c1e8c8b initramfs: allow an optional wrapper script around initramfs generation 2f603d83fcc4d pnmtologo: use relocatable file name 664a6a0a484ba tools: use basename to identify file in gen-mach-types 9de64bc0c1857 lib/build_OID_registry: fix reproducibility issues ae9b80797295a vt/conmakehash: improve reproducibility a972323151bdd iwlwifi: select MAC80211_LEDS conditionally 15d2adcc01984 net/dccp: make it depend on CONFIG_BROKEN (CVE-2020-16119) 5556a6c04b197 arm64/perf: Fix wrong cast that may cause wrong truncation 5552dc768ffcd defconfigs: drop obselete options 00fe4152df313 arm64/perf: fix backtrace for AAPCS with FP enabled 3888d0652edf1 linux-yocto: Handle /bin/awk issues 3d55d299f23a7 uvesafb: provide option to specify timeout for task completion 23c068c080bea uvesafb: print error message when task timeout occurs edbfc939266ec compiler.h: Undef before redefining __attribute_const__ c99ae7e2a19ab vmware: include jiffies.h 572d84d928c87 Resolve jiffies wrapping about arp fdcd47cac8435 nfs: Allow default io size to be configured. 927d488010984 check console device file on fs when booting 57cc27f821ddf mount_root: clarify error messages for when no rootfs found 1b53d82a81528 mconf: fix output of cflags and libraries 1811da09f42ca menuconfig,mconf-cfg: Allow specification of ncurses location 83c2e0c6eb1f3 modpost: mask trivial warnings 6de6730394846 kbuild: exclude meta directory from distclean processing 6decd32815f53 powerpc: serialize image targets f6b683b38318c arm: serialize build targets e798b09ebf572 mtd_blkdevs: add mtd_table_mutex lock back to blktrans_{open, release} to avoid race condition dc8a1e5a88f86 x86_64_defconfig: Fix warnings 68491e5f72b61 powerpc/ptrace: Disable array-bounds warning with gcc8 d71ebfce30048 powerpc: Disable attribute-alias warnings from gcc8 62f50884b8b18 powerpc: kexec fix for powerpc64 da6871c62c371 powerpc: Add unwind information for SPE registers of E500 core f161c880c11de mips: make current_cpu_data preempt safe 5e94a8247ce7f mips: vdso: fix 'jalr $t9' crash in vdso code 19e36714b1c7f mips: Kconfig: add QEMUMIPS64 option e2e537db3cbdc 4kc cache tlb hazard: tlbp cache coherency aee9870611e5d malta uhci quirks: make allowance for slow 4k(e)c 881948cd15176 drm/fb-helper: move zeroing code to drm_fb_helper_fill_var 98ec1963fcb7a arm64: defconfig: cleanup config options f1727c537ba8d vexpress: Pass LOADADDR to Makefile 4474c32dc24a4 arm: ARM EABI socketcall 75e31a2b70fd3 ARM: LPAE: Invalidate the TLB for module addresses during translation fault (From OE-Core rev: 92dd9b9f8f696018fa5176245a8db3e760fc7186) Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* oeqa/selftest/gcc: Fix host key verfication failureHarish Sadineni2024-08-132-2/+2
| | | | | | | | | | | | | | | | | | while runnig oe-selftest for gcc, testcases that need to be run on qemu are not running due to below failures. - Executing on ssh: mkdir -p /tmp/runtest.3549641 (timeout = 300) spawn [open ...] Host key verification failed. ERROR: Couldn't create remote directory /tmp/runtest.3549641 on ssh Host key verification failure is happening when ssh board config file name is defined as "ssh.exp" and there are multiple ssh.exp files generated during the build and a wrong ssh config was taken. To resolve this changed the board config file name to "linux-ssh.exp" which ensures correct ssh settings are used. (From OE-Core rev: d32ec0b4d242879ab8eaf96e1cb407e8f0bb9f3d) Signed-off-by: Harish Sadineni <Harish.Sadineni@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* gcc-runtime: enabling "network" task specific flagHarish Sadineni2024-08-131-0/+1
| | | | | | | | | | | | | | | Adding a "network" task specific flag which then triggers networking to be enabled for this task, it is otherwise disabled which will cause failures while running oe-selftest. Fixes the following issues while running oe-selftest for gcc: 1)ssh: connect to host X.X.X.X port 22: Network is unreachable. 2)Bad owner or permissions on /etc/ssh/ssh_config.d/50-redhat.conf. (From OE-Core rev: 35782416823fa863d26a338256f642f6bc480a96) Signed-off-by: Harish Sadineni <Harish.Sadineni@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* linux-yocto/6.10: cfg: disable nfsd legacy client trackingBruce Ashfield2024-08-123-3/+3
| | | | | | | | | | | | | | | | | | | | | | Integrating the following commit(s) to linux-yocto/.: 1/1 [ Author: Bruce Ashfield Email: bruce.ashfield@gmail.com Subject: nfsd: disable legacy client tracking Date: Thu, 8 Aug 2024 23:18:19 -0400 On v6.10.3+ this option can cause kernel traps. It is for functionality that we don't need, so disabling it is the best solution. Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> ] (From OE-Core rev: 2b345ebf20e3054e5a10b68ba995519e695ad98c) Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* linux-yocto-rt/6.10: update to -rt14Bruce Ashfield2024-08-121-1/+1
| | | | | | | | | | | | | | | | | | Integrating the following commit(s) to linux-yocto/6.10: c0094e55e84db rt: fix sigtrap merge issue a36d03a550e68 v6.10.2-rt14 c3413f2811925 drm/i915: Don't disable interrupts on PREEMPT_RT during atomic updates. cd3f2b6b09248 bpf: Remove tst_run from lwt_seg6local_prog_ops. 42137fe6d0b42 v6.10.2-rt13 49fdabfe4a53f tun: Add missing bpf_net_ctx_clear() in do_xdp_generic() 3838f16f95d85 task_work: make TWA_NMI_CURRENT handling conditional on IRQ_WORK 5e812508c93be v6.10.2-rt12 (From OE-Core rev: e953ba950ec42dadf74bda098a85285069b7294e) Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* linux-yocto-dev: bump to v6.11Bruce Ashfield2024-08-121-2/+2
| | | | | | | (From OE-Core rev: 2f7786e56e4e0a55f8aebe0ffbd37ca23708f4f4) Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* ffmpeg: fix build with binutils 2.43 on arm with commerical codecsRoss Burton2024-08-092-0/+53
| | | | | | | | | | | | binutils 2.43 is stricter with label names, so rename a label to stop assembler errors. [ YOCTO #15570 ] (From OE-Core rev: 06d29af58521b94518c924468db34d0eed1cb056) Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* archiver.bbclass: fix BB_GENERATE_MIRROR_TARBALLS checkingEnrico Jörns2024-08-091-1/+1
| | | | | | | | | | | | | | The variable 'have_mirror_tarballs' is used as a boolean while it is actually the result of 'd.getVar('BB_GENERATE_MIRROR_TARBALLS')' and thus a string. Fix this by converting it into a boolean before using i t. (From OE-Core rev: f6185d51b84d8d2eb578dbd322c1c61537efabf6) Signed-off-by: Enrico Jörns <ejo@pengutronix.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* libcap-ng: update SRC_URIChangqing Li2024-08-092-5/+7
| | | | | | | | | | | | Refer [1], people.redhat.com has certificate issue, so update SRC_URI to fix do_fetch warning [1] https://github.com/stevegrubb/libcap-ng/issues/56 (From OE-Core rev: 798aa15cb955f9801effbed44eba0f3f46ba8c54) Signed-off-by: Changqing Li <changqing.li@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* zlib: Add CVE_PRODUCT to exclude false positivesHet Patel2024-08-091-1/+3
| | | | | | | | | | | | To avoid false positives (such as CVE-2023-6992, cloudflare:zlib), add a CVE_PRODUCT to identify the vendors that have been used. Removing the present existing CVE_STATUS for CVE-2023-6992. (From OE-Core rev: 119b775b36dfd51286493763cffb6e965893b8fd) Signed-off-by: Het Patel <hetpat@cisco.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* go: upgrade 1.22.5 -> 1.22.6Jose Quaresma2024-08-097-4/+4
| | | | | | | | | | | | | | | | | | | | | | | | Upgrade to latest 1.22.x release [1]: $ git --no-pager log --oneline go1.22.5..go1.22.6 cb4eee693c (tag: go1.22.6, origin/release-branch.go1.22) [release-branch.go1.22] go1.22.6 8c8adffd53 [release-branch.go1.22] cmd/compile: add 0-sized-value simplification to copyelim 70a1aae67f [release-branch.go1.22] cmd/trace/v2: make the -pprof actually useful 2c88c1d599 [release-branch.go1.22] cmd/trace/v2: handle the -pprof flag 4c50f9162c [release-branch.go1.22] cmd/internal/cov: close counter data files eagerly 9e148a4150 [release-branch.go1.22] internal/bytealg: extend memchr result correctly on wasm 4b27560db9 [release-branch.go1.22] go/types: fix assertion failure when range over int is not permitted 4e548f2c8e [release-branch.go1.22] cmd/link: don't let dsymutil delete our temp directory 45f9ded1df [release-branch.go1.22] cmd/compile: don't elide zero extension on top of signed values 49906f9575 [release-branch.go1.22] cmd/go: fix build config before creating actions for 'go list -cover' ea96074191 [release-branch.go1.22] os/exec: only use cachedLookExtensions if Cmd.Path is unmodified [1] https://github.com/golang/go/compare/go1.22.5...go1.22.6 (From OE-Core rev: edaedfce685f13decad7608aefa36dece02665b0) Signed-off-by: Jose Quaresma <jose.quaresma@foundries.io> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* bitbake.conf: Add truncate to HOSTTOOLSRichard Purdie2024-08-091-1/+1
| | | | | | | | | | | | Some wic images need this command. Since it is part of coreutils, it doesn't really cost anything to have in HOSTTOOLS and it avoids signifiant build dependencies on coreutils-native. [YOCTO #15571] (From OE-Core rev: 522000ce5c4f0201cbe42d7826b6a8489ed10117) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* coreutils: Update merged patch to backport statusRichard Purdie2024-08-091-1/+2
| | | | | | (From OE-Core rev: 80b082dbb0e04d8d7af096046b3ac1e806d0a9d8) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* u-boot.inc: Refactor do_* steps into functions that can be overriddenRyan Eatmon2024-08-092-109/+208
| | | | | | | | | | | | | | | | | | | | | | The looping logic for handling (and not handling) UBOOT_CONFIG has led to the various do_* functions to be large and unwieldy. In order to modify one of the functional blocks inside of a loop (or in the else condition) means you either have to replace the function entirely, or append the function and undo something it did and then do what you need for your change. This refactor breaks out all of the inner loops and else clauses into new functions that themselves can be overridden without needing to worry about the bulk of the looping logic. It should not break any existing recipes doing prepends, appends, or overrides. None of the functional blocks were changed, just refactored out into new functions. (From OE-Core rev: 937bcc229502fcc154cc676b4fcc93c561873def) Signed-off-by: Ryan Eatmon <reatmon@ti.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* rust: Upgrade 1.77.1->1.77.2Yash Shinde2024-08-096-1/+1
| | | | | | | | | https://blog.rust-lang.org/2024/04/09/Rust-1.77.2.html (From OE-Core rev: c3a996c3b06b11a5e2b07dbf820f3e3eb1e28782) Signed-off-by: Yash Shinde <Yash.Shinde@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* rust: Upgrade 1.77.0->1.77.1Yash Shinde2024-08-096-1/+1
| | | | | | | | | https://blog.rust-lang.org/2024/03/28/Rust-1.77.1.html (From OE-Core rev: a7ca97ffbb23602ad79c3dc1819cfedd0b969075) Signed-off-by: Yash Shinde <Yash.Shinde@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>