This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master
in repository gcc.
from 1e2eee7b29e symtab: fix comment typo
new a2f4b4b76cd jit: set DECL_CONTEXT of RESULT_DECL [PR103562]
The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.
Summary of changes:
gcc/jit/jit-playback.c | 1 +
gcc/testsuite/jit.dg/all-non-failing-tests.h | 3 ++
gcc/testsuite/jit.dg/test-pr103562.c | 62 ++++++++++++++++++++++++++++
3 files changed, 66 insertions(+)
create mode 100644 gcc/testsuite/jit.dg/test-pr103562.c
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master
in repository linux.
from b8a98b6bf66a Merge tag 'pci-v5.16-fixes-2' of git://git.kernel.org/pub/ [...]
new 250552b925ce KVM: nVMX: Don't use Enlightened MSR Bitmap for L3
new ee3a4f666207 KVM: x86: selftests: svm_int_ctl_test: fix intercept calculation
new 1ebfaa11ebb5 KVM: x86: Wait for IPIs to be delivered when handling Hype [...]
new 3244867af8c0 KVM: x86: Ignore sparse banks size for an "all CPUs", non- [...]
new c8cc43c1eae2 selftests: KVM: avoid failures due to reserved HyperTransp [...]
new 777ab82d7ce0 KVM: X86: Raise #GP when clearing CR0_PG in 64 bit mode
new d07898eaf399 KVM: x86: Don't WARN if userspace mucks with RCX during st [...]
new 10e7a099bfd8 selftests: KVM: Add test to verify KVM doesn't explode on [...]
new b9172f9e8844 Merge tag 'for-linus' of git://git.kernel.org/pub/scm/virt [...]
new 42288cb44c4b wait: add wake_up_pollfree()
new a880b28a71e3 binder: use wake_up_pollfree()
new 9537bae0da1f signalfd: use wake_up_pollfree()
new 363bee27e258 aio: keep poll requests on waitqueue until completed
new 50252e4b5e98 aio: fix use-after-free due to missing POLLFREE handling
new 4b3749865374 aio: Fix incorrect usage of eventfd_signal_allowed()
new 0d21e6684779 Merge tag 'aio-poll-for-linus' of git://git.kernel.org/pub [...]
new ee7f3666995d tracefs: Have new files inherit the ownership of their parent
new 48b27b6b5191 tracefs: Set all files to the same group ownership as the [...]
new 7d5b7cad79da ftrace: Use direct_ops hash in unregister_ftrace_direct
new fea3ffa48c6d ftrace: Add cleanup to unregister_ftrace_direct_multi
new e1067a07cfbc ftrace/samples: Add module to test multi direct modify interface
new c24be24aed40 tracing: Fix possible memory leak in __create_synth_event( [...]
new 257dcf29232b Merge tag 'trace-v5.16-rc4' of git://git.kernel.org/pub/sc [...]
new 838322658325 hwmon: (corsair-psu) fix plain integer used as NULL pointer
new dbd3e6eaf3d8 hwmon: (dell-smm) Fix warning on /proc/i8k creation error
new 214f52525506 hwmon: (nct6775) mask out bank number in nct6775_wmi_read_value()
new 0e4190d762ef hwmon: (sht4x) Fix EREMOTEIO errors
new a2ca752055ed hwmon: (pwm-fan) Ensure the fan going on in .probe()
new 1e050cd539b8 Merge tag 'hwmon-for-v5.16-rc5' of git://git.kernel.org/pu [...]
new 444dd878e85f PM: runtime: Fix pm_runtime_active() kerneldoc comment
new d46bca632ca4 Merge tag 'pm-5.16-rc5' of git://git.kernel.org/pub/scm/li [...]
new 11f8cb8903ba ACPI: tools: Fix compilation when output directory is not present
new 9e65da135b39 Merge tag 'acpi-5.16-rc5' of git://git.kernel.org/pub/scm/ [...]
The 33 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.
Summary of changes:
arch/x86/include/asm/kvm_host.h | 2 +-
arch/x86/kvm/hyperv.c | 7 +-
arch/x86/kvm/vmx/vmx.c | 22 ++-
arch/x86/kvm/x86.c | 12 +-
drivers/android/binder.c | 21 +--
drivers/hwmon/corsair-psu.c | 2 +-
drivers/hwmon/dell-smm-hwmon.c | 7 +-
drivers/hwmon/nct6775.c | 2 +-
drivers/hwmon/pwm-fan.c | 2 -
drivers/hwmon/sht4x.c | 4 +-
fs/aio.c | 186 +++++++++++++++++----
fs/signalfd.c | 12 +-
fs/tracefs/inode.c | 76 +++++++++
include/linux/pm_runtime.h | 2 +-
include/linux/wait.h | 26 +++
include/uapi/asm-generic/poll.h | 2 +-
kernel/sched/wait.c | 7 +
kernel/trace/ftrace.c | 8 +-
kernel/trace/trace_events_synth.c | 11 +-
samples/ftrace/Makefile | 1 +
samples/ftrace/ftrace-direct-multi-modify.c | 152 +++++++++++++++++
tools/power/acpi/Makefile.config | 1 +
tools/power/acpi/Makefile.rules | 1 +
tools/testing/selftests/kvm/.gitignore | 1 +
tools/testing/selftests/kvm/Makefile | 1 +
tools/testing/selftests/kvm/include/kvm_util.h | 9 +
tools/testing/selftests/kvm/lib/kvm_util.c | 2 +-
tools/testing/selftests/kvm/lib/x86_64/processor.c | 68 ++++++++
.../selftests/kvm/x86_64/svm_int_ctl_test.c | 2 +-
.../selftests/kvm/x86_64/userspace_io_test.c | 114 +++++++++++++
30 files changed, 671 insertions(+), 92 deletions(-)
create mode 100644 samples/ftrace/ftrace-direct-multi-modify.c
create mode 100644 tools/testing/selftests/kvm/x86_64/userspace_io_test.c
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_kernel/gnu-master-aarch64-next-defconfig
in repository toolchain/ci/qemu.
from 7635eff971 Merge tag 'block-pull-request' of https://gitlab.com/stefanh [...]
adds b9537d5904 tcg/arm: Reduce vector alignment requirement for NEON
adds 92ac58e34c Merge tag 'pull-tcg-20211207' of https://gitlab.com/rth7680/ [...]
adds 2958e5150d gicv3: fix ICH_MISR's LRENP computation
adds a216e7cf11 Merge tag 'pull-target-arm-20211207' of https://git.linaro.o [...]
adds a3607def89 Update version for v6.2.0-rc4 release
No new revisions were added by this update.
Summary of changes:
VERSION | 2 +-
hw/intc/arm_gicv3_cpuif.c | 3 ++-
tcg/arm/tcg-target.c.inc | 13 +++++++++----
tcg/tcg.c | 8 +++++++-
4 files changed, 19 insertions(+), 7 deletions(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_kernel/gnu-master-aarch64-next-defconfig
in repository toolchain/ci/base-artifacts.
discards a0188d2f 0: update: binutils-gcc-linux-qemu: boot
new 81d16830 0: update: binutils-gcc-linux-qemu: boot
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version. This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:
* -- * -- B -- O -- O -- O (a0188d2f)
\
N -- N -- N refs/heads/linaro-local/ci/tcwg_kernel/gnu-master-aarch6 [...]
You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.
Any revisions marked "omits" are not gone; other references still
refer to them. Any revisions marked "discards" are gone forever.
The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.
Summary of changes:
01-reset_artifacts/console.log.xz | Bin 1576 -> 1568 bytes
02-prepare_abe/console.log.xz | Bin 2772 -> 2788 bytes
03-build_abe-binutils/console.log.xz | Bin 31856 -> 31352 bytes
04-build_abe-stage1/console.log.xz | Bin 72564 -> 70992 bytes
05-build_abe-qemu/console.log.xz | Bin 30048 -> 30236 bytes
06-build_linux/console.log.xz | Bin 4280 -> 4124 bytes
07-boot_linux/console.log.xz | Bin 6108 -> 6132 bytes
08-check_regression/console.log.xz | Bin 412 -> 412 bytes
09-update_baseline/console.log | 10 +++++-----
jenkins/manifest.sh | 22 +++++++++++-----------
results | 2 +-
11 files changed, 17 insertions(+), 17 deletions(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master
in repository glibc.
from f1eeef945d elf: Use errcode instead of (unset) errno in rtld_chain_load
new ea5814467a x86-64: Remove LD_PREFER_MAP_32BIT_EXEC support [BZ #28656]
The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.
Summary of changes:
NEWS | 4 ++
sysdeps/unix/sysv/linux/x86_64/64/dl-librecon.h | 45 ----------------------
sysdeps/unix/sysv/linux/x86_64/64/mmap_internal.h | 42 --------------------
sysdeps/x86/cpu-tunables.c | 7 ----
.../cpu-features-preferred_feature_index_1.def | 1 -
5 files changed, 4 insertions(+), 95 deletions(-)
delete mode 100644 sysdeps/unix/sysv/linux/x86_64/64/dl-librecon.h
delete mode 100644 sysdeps/unix/sysv/linux/x86_64/64/mmap_internal.h
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_kernel/llvm-release-aarch64-lts-allmodconfig
in repository toolchain/ci/qemu.
from 2f8eb08673 Merge tag 'mips-20211206' of https://github.com/philmd/qemu [...]
adds 5b807181c2 virtio-blk: Fix clean up of host notifiers for single MR tra [...]
adds 7635eff971 Merge tag 'block-pull-request' of https://gitlab.com/stefanh [...]
adds b9537d5904 tcg/arm: Reduce vector alignment requirement for NEON
adds 92ac58e34c Merge tag 'pull-tcg-20211207' of https://gitlab.com/rth7680/ [...]
adds 2958e5150d gicv3: fix ICH_MISR's LRENP computation
adds a216e7cf11 Merge tag 'pull-target-arm-20211207' of https://git.linaro.o [...]
adds a3607def89 Update version for v6.2.0-rc4 release
No new revisions were added by this update.
Summary of changes:
VERSION | 2 +-
hw/block/dataplane/virtio-blk.c | 2 +-
hw/intc/arm_gicv3_cpuif.c | 3 ++-
tcg/arm/tcg-target.c.inc | 13 +++++++++----
tcg/tcg.c | 8 +++++++-
5 files changed, 20 insertions(+), 8 deletions(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.