This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master
in repository gcc.
from c442a9b78bd c++, coroutines: Look through initial_await target exprs [P [...]
new ecc999b0224 modula2: Export all string to integral and fp number conver [...]
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/m2/gm2-libs/libc.def | 84 ++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 84 insertions(+)
--
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 gcc.
from 6303cd7e415 c++, coroutines: Separate the analysis, ramp and outlined f [...]
new 624fb5b4407 c++, coroutines: Separate allocator work from the ramp body build.
new efc99ab2d5f c++, coroutines: Fix handling of early exceptions [PR113773].
new a0b431033c3 c++, coroutines: Only allow void get_return_object if the r [...]
new f4915e6c4cd c++, coroutines: Allow convertible get_return_on_allocation [...]
new 68ee624bc52 c++, coroutines: Fix ordering of return object conversions [...]
new f0315f7a325 c++, coroutines: Rework handling of throwing_cleanups [PR102051].
new c442a9b78bd c++, coroutines: Look through initial_await target exprs [P [...]
The 7 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/cp/call.cc | 34 +-
gcc/cp/coroutines.cc | 718 ++++++++++-----------
gcc/cp/coroutines.h | 2 +-
gcc/cp/cp-tree.h | 3 +
.../coroutines/coro-bad-alloc-01-bad-op-del.C | 2 +-
.../coro-bad-gro-00-class-gro-scalar-return.C | 4 +-
.../coro-bad-gro-01-void-gro-non-class-coro.C | 4 +-
.../g++.dg/coroutines/coro-bad-grooaf-00-static.C | 6 +-
gcc/testsuite/g++.dg/coroutines/pr102051.C | 16 +
gcc/testsuite/g++.dg/coroutines/pr102489.C | 2 +-
gcc/testsuite/g++.dg/coroutines/pr103868.C | 2 +-
gcc/testsuite/g++.dg/coroutines/pr109682.C | 28 +
gcc/testsuite/g++.dg/coroutines/pr110635.C | 72 +++
gcc/testsuite/g++.dg/coroutines/pr115908.C | 75 +++
gcc/testsuite/g++.dg/coroutines/pr94879-folly-1.C | 3 +-
gcc/testsuite/g++.dg/coroutines/pr94883-folly-2.C | 39 +-
gcc/testsuite/g++.dg/coroutines/pr96749-2.C | 2 +-
gcc/testsuite/g++.dg/coroutines/ramp-return-b.C | 8 +-
gcc/testsuite/g++.dg/coroutines/torture/pr113773.C | 66 ++
19 files changed, 670 insertions(+), 416 deletions(-)
create mode 100644 gcc/testsuite/g++.dg/coroutines/pr102051.C
create mode 100644 gcc/testsuite/g++.dg/coroutines/pr109682.C
create mode 100644 gcc/testsuite/g++.dg/coroutines/pr110635.C
create mode 100644 gcc/testsuite/g++.dg/coroutines/pr115908.C
create mode 100644 gcc/testsuite/g++.dg/coroutines/torture/pr113773.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 gcc.
from d5da5f00d91 c++, coroutines: Split the ramp build into a separate function.
new 6303cd7e415 c++, coroutines: Separate the analysis, ramp and outlined f [...]
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/cp/coroutines.cc | 647 ++++++++++++++++++++++-----------------------------
gcc/cp/coroutines.h | 132 +++++++++++
gcc/cp/cp-tree.h | 1 -
gcc/cp/decl.cc | 80 +++----
4 files changed, 446 insertions(+), 414 deletions(-)
create mode 100644 gcc/cp/coroutines.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.
unknown user pushed a change to branch master
in repository gcc.
from 1d09ccc4a5f c++: Add testcase for (now fixed) regression [PR113746]
new 47dbd69b1b3 c++, coroutines: Tidy up awaiter variable checks.
new d5da5f00d91 c++, coroutines: Split the ramp build into a separate function.
The 2 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/cp/coroutines.cc | 443 ++++++++++++++++++++++++---------------------------
1 file changed, 212 insertions(+), 231 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 gcc.
from ac826d2f5b1 testsuite: Add dg-require-effective-target scheduling for s [...]
new 1d09ccc4a5f c++: Add testcase for (now fixed) regression [PR113746]
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/testsuite/g++.dg/parse/crash76.C | 6 ++++++
1 file changed, 6 insertions(+)
create mode 100644 gcc/testsuite/g++.dg/parse/crash76.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 gcc.
from 3ff1b91e772 Daily bump.
new ac826d2f5b1 testsuite: Add dg-require-effective-target scheduling for s [...]
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/testsuite/gcc.dg/torture/pr115929-2.c | 1 +
gcc/testsuite/gcc.dg/torture/pr116343.c | 1 +
2 files changed, 2 insertions(+)
--
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 tested
in repository toolchain/jenkins-scripts.
from 418e99a3 jenkins-helpers.sh,round-robin.sh: Add function to check if a [...]
adds 74adcd2a tcwg-update-lnt-results.sh: Avoid pushing corrupted json report
adds de558eb1 jenkins-helpers.sh: Never follow a non valid component
adds 8f8649ba tcwg-update-lnt-results.sh: Fix incremental push
adds ed4bbb3b jenkins-helpers.sh: Fix chromium when component dir does not exist
No new revisions were added by this update.
Summary of changes:
jenkins-helpers.sh | 102 +++++++++++++++++++++++++++++----------------
tcwg-update-lnt-results.sh | 38 +++++++++++++----
2 files changed, 96 insertions(+), 44 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 linux.
from 5bd6cf007407 Merge tag 'mips-fixes_6.11_1' of git://git.kernel.org/pub/ [...]
new 44732f1dad20 workqueue: doc: Fix function name, remove markers
new 38f7e14519d3 workqueue: Fix UBSAN 'subtraction overflow' error in shift [...]
new 98cc1730c894 workqueue: Remove incorrect "WARN_ON_ONCE(!list_empty(&wor [...]
new 8bc35475ef1a workqueue: Fix spruious data race in __flush_work()
new c4c8f369b6a6 workqueue: Correct declaration of cpu_pwq in struct workqu [...]
new cb2c84b38082 Merge tag 'wq-for-6.11-rc4-fixes' of git://git.kernel.org/ [...]
new 959ab6350add cgroup/cpuset: fix panic caused by partcmd_update
new 311a1bdc44a8 cgroup/cpuset: Clear effective_xcpus on cpus_allowed clear [...]
new ff0ce721ec21 cgroup/cpuset: Eliminate unncessary sched domains rebuilds [...]
new d2bafcf224f3 Merge tag 'cgroup-for-6.11-rc4-fixes' of git://git.kernel. [...]
The 10 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:
Documentation/core-api/workqueue.rst | 2 +-
kernel/cgroup/cpuset.c | 38 +++++++++++++++------------
kernel/workqueue.c | 50 +++++++++++++++++++-----------------
3 files changed, 49 insertions(+), 41 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 linux.
from 60f0560f53e3 Merge tag 'nfs-for-6.11-2' of git://git.linux-nfs.org/proj [...]
new 2240a50e6294 KVM: arm64: vgic-debug: Don't put unmarked LPIs
new f616506754d3 KVM: arm64: vgic: Don't hold config_lock while unregisteri [...]
new 1d8c3c23a6bc KVM: arm64: Ensure canonical IPA is hugepage-aligned when [...]
new 3e6245ebe7ef KVM: arm64: Make ICC_*SGI*_EL1 undef in the absence of a vGICv3
new 75c8f387dd16 Merge tag 'kvmarm-fixes-6.11-2' of git://git.kernel.org/pu [...]
new a8a8dcbd679e Merge tag 'arm64-fixes' of git://git.kernel.org/pub/scm/li [...]
new 1cb6ab446424 MIPS: Loongson64: Set timer mode in cpu-probe
new 50f2b98dc83d MIPS: cevt-r4k: Don't call get_c0_compare_int if timer irq [...]
new 5bd6cf007407 Merge tag 'mips-fixes_6.11_1' of git://git.kernel.org/pub/ [...]
The 9 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/arm64/kvm/mmu.c | 9 ++++++++-
arch/arm64/kvm/sys_regs.c | 6 ++++++
arch/arm64/kvm/vgic/vgic-debug.c | 2 +-
arch/arm64/kvm/vgic/vgic-init.c | 9 ++++++---
arch/arm64/kvm/vgic/vgic.c | 5 +++++
arch/arm64/kvm/vgic/vgic.h | 7 +++++++
arch/mips/kernel/cevt-r4k.c | 15 +++++++--------
arch/mips/kernel/cpu-probe.c | 4 ++++
8 files changed, 44 insertions(+), 13 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 linux.
from 7eb61cc674ee Merge tag 'input-for-v6.11-rc4' of git://git.kernel.org/pu [...]
new e4be320eeca8 smb3: fix broken cached reads when posix locks
new 15179cf2806f smb3: fix problem unloading module due to leaked refcount [...]
new ec686804117a smb: client: ignore unhandled reparse tags
new 5e51224d2afb smb/client: fix typo: GlobalMid_Sem -> GlobalMid_Lock
new 66ace9a8f9b4 Merge tag 'v6.11-rc4-client-fixes' of git://git.samba.org/ [...]
new de48aad2a8e8 rpcrdma: Device kref is over-incremented on error from xa_alloc
new 6b3b023e2d0c rpcrdma: Use XA_FLAGS_ALLOC instead of XA_FLAGS_ALLOC1
new dc0112e6d8b4 rpcrdma: Trace connection registration and unregistration
new cb78f9b7d0c0 nfs: fix the fetch of FATTR4_OPEN_ARGUMENTS
new 95832998fb6e nfs: fix bitmap decoder to handle a 3rd word
new a017ad1313fc NFSv4: Add missing rescheduling points in nfs_client_retur [...]
new d72b7963115b NFSv4: Fix clearing of layout segments in layoutreturn
new f92214e4c312 NFS: Avoid unnecessary rescanning of the per-server delega [...]
new 60f0560f53e3 Merge tag 'nfs-for-6.11-2' of git://git.linux-nfs.org/proj [...]
The 14 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:
fs/nfs/callback_xdr.c | 6 ++++--
fs/nfs/delegation.c | 15 +++++----------
fs/nfs/nfs4proc.c | 12 ++++++++----
fs/nfs/pnfs.c | 5 ++---
fs/nfs/super.c | 2 ++
fs/smb/client/cifsfs.c | 6 +++---
fs/smb/client/cifsglob.h | 6 +++---
fs/smb/client/connect.c | 3 +++
fs/smb/client/file.c | 4 +---
fs/smb/client/ioctl.c | 2 ++
fs/smb/client/link.c | 1 +
fs/smb/client/reparse.c | 11 +++++++----
include/trace/events/rpcrdma.h | 36 ++++++++++++++++++++++++++++++++++++
net/sunrpc/xprtrdma/ib_client.c | 6 ++++--
14 files changed, 81 insertions(+), 34 deletions(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.