This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master
in repository glibc.
from ab5ee31e14 Move vtimes to a compatibility symbol
new 33e5907ee6 Revert "C-SKY:Fix dynamic linker's name when mfloat-abi=softfp."
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:
sysdeps/csky/preconfigure | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--
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 bbe85027ce80 Merge tag 'xfs-5.10-merge-5' of git://git.kernel.org/pub/s [...]
new a27bc11f4b7c m68knommu: switch to using asm-generic/uaccess.h
new 006967471c8b m68knommu: fix sparse warnings in signal code
new 322c512f476f m68knommu: include SDHC support only when hardware has it
new 9f5fd809d7a0 serial: mcf: add sysrq capability
new d3876ff74437 Merge tag 'm68knommu-for-v5.10' of git://git.kernel.org/pu [...]
new 4363287178a8 riscv/mm: Simplify retry logic in do_page_fault()
new cac4d1dc85be riscv/mm/fault: Move no context handling to no_context()
new a51271d99cdd riscv/mm/fault: Move bad area handling to bad_area()
new ac416a724f11 riscv/mm/fault: Move vmalloc fault handling to vmalloc_fault()
new bda281d5bfb7 riscv/mm/fault: Simplify fault error handling
new 6c11ffbfd849 riscv/mm/fault: Move fault error handling to mm_fault_error()
new 7a75f3d47a0b riscv/mm/fault: Simplify mm_fault_error()
new 6747430197ed riscv/mm/fault: Move FAULT_FLAG_WRITE handling in do_page_fault()
new afb8c6fee8ce riscv/mm/fault: Move access error check to function
new baf7cbd94b56 riscv: Set more data to cacheinfo
new b5fca7c55f9f riscv: Define AT_VECTOR_SIZE_ARCH for ARCH_DLINFO
new 38f5bd23deae riscv: Add cache information in AUX vector
new 2baa6d9506f2 riscv/mm/fault: Fix inline placement in vmalloc_fault() de [...]
new a960c1323749 riscv/mm/fault: Set FAULT_FLAG_INSTRUCTION flag in do_page [...]
new 54701a0d12e2 RISC-V: Fix duplicate included thread_info.h
new 8a3f30c4319d Merge tag 'efi-riscv-shared-for-v5.10' of ssh://gitolite.k [...]
new 8f3a2b4a96dc RISC-V: Move DT mapping outof fixmap
new 6262f661ff5d RISC-V: Add early ioremap support
new e8dcb61f2ade RISC-V: Implement late mapping page table allocation functions
new cb7d2dd5612a RISC-V: Add PE/COFF header for EFI stub
new d7071743db31 RISC-V: Add EFI stub support.
new b91540d52a08 RISC-V: Add EFI runtime services
new de22d2107ced RISC-V: Add page table dump support for uefi
new 270315b8235e Merge tag 'riscv-for-linus-5.10-mw0' of git://git.kernel.o [...]
The 29 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/m68k/Kconfig | 1 +
arch/m68k/coldfire/device.c | 6 +-
arch/m68k/include/asm/uaccess.h | 398 +++++++++++++++++++++++++++++-
arch/m68k/include/asm/uaccess_mm.h | 390 -----------------------------
arch/m68k/include/asm/uaccess_no.h | 160 ------------
arch/m68k/kernel/signal.c | 6 +-
arch/riscv/Kconfig | 25 ++
arch/riscv/Makefile | 1 +
arch/riscv/configs/defconfig | 1 +
arch/riscv/include/asm/Kbuild | 1 +
arch/riscv/include/asm/cacheinfo.h | 5 +
arch/riscv/include/asm/efi.h | 55 +++++
arch/riscv/include/asm/elf.h | 13 +
arch/riscv/include/asm/fixmap.h | 16 +-
arch/riscv/include/asm/io.h | 1 +
arch/riscv/include/asm/mmu.h | 2 +
arch/riscv/include/asm/pgtable.h | 5 +
arch/riscv/include/asm/sections.h | 13 +
arch/riscv/include/uapi/asm/auxvec.h | 24 ++
arch/riscv/kernel/Makefile | 2 +
arch/riscv/kernel/cacheinfo.c | 98 ++++++--
arch/riscv/kernel/efi-header.S | 111 +++++++++
arch/riscv/kernel/efi.c | 96 +++++++
arch/riscv/kernel/head.S | 18 +-
arch/riscv/kernel/head.h | 2 -
arch/riscv/kernel/image-vars.h | 51 ++++
arch/riscv/kernel/setup.c | 18 +-
arch/riscv/kernel/vmlinux.lds.S | 23 +-
arch/riscv/mm/fault.c | 356 ++++++++++++++------------
arch/riscv/mm/init.c | 190 ++++++++++----
arch/riscv/mm/ptdump.c | 48 +++-
drivers/firmware/efi/Kconfig | 3 +-
drivers/firmware/efi/Makefile | 2 +
drivers/firmware/efi/libstub/Makefile | 10 +
drivers/firmware/efi/libstub/efi-stub.c | 11 +-
drivers/firmware/efi/libstub/riscv-stub.c | 109 ++++++++
drivers/firmware/efi/riscv-runtime.c | 143 +++++++++++
37 files changed, 1614 insertions(+), 800 deletions(-)
delete mode 100644 arch/m68k/include/asm/uaccess_mm.h
delete mode 100644 arch/m68k/include/asm/uaccess_no.h
create mode 100644 arch/riscv/include/asm/efi.h
create mode 100644 arch/riscv/include/asm/sections.h
create mode 100644 arch/riscv/kernel/efi-header.S
create mode 100644 arch/riscv/kernel/efi.c
create mode 100644 arch/riscv/kernel/image-vars.h
create mode 100644 drivers/firmware/efi/libstub/riscv-stub.c
create mode 100644 drivers/firmware/efi/riscv-runtime.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 releases/gcc-9
in repository gcc.
from 77923ad0141 libstdc++: Make std::assume_aligned a constexpr function [P [...]
new 1b454055b1d Daily bump.
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/DATESTAMP | 2 +-
libstdc++-v3/ChangeLog | 11 +++++++++++
2 files changed, 12 insertions(+), 1 deletion(-)
--
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 releases/gcc-8
in repository gcc.
from 541b5595460 Daily bump.
new d64cc79d94d Daily bump.
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/DATESTAMP | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--
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 releases/gcc-10
in repository gcc.
from 90c9484b12d libstdc++: Make std::assume_aligned a constexpr function [P [...]
new 6c8a235c32b Daily bump.
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/ChangeLog | 8 ++++++++
gcc/DATESTAMP | 2 +-
gcc/testsuite/ChangeLog | 15 +++++++++++++++
libgfortran/ChangeLog | 34 ++++++++++++++++++++++++++++++++++
libstdc++-v3/ChangeLog | 11 +++++++++++
5 files changed, 69 insertions(+), 1 deletion(-)
--
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 binutils-gdb.
from 22cc388e2b9 Don't erase TUI source window when switching focus
new a2b149805d6 Automatic date update in version.in
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:
bfd/version.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--
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 binutils-2_35-branch
in repository binutils-gdb.
from 5c3da25f7db Automatic date update in version.in
new d70052f9388 Automatic date update in version.in
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:
bfd/version.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--
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 gdb-10-branch
in repository binutils-gdb.
from a606acc8d2b gdb: get jiter objfile from a bound minsym
new 974fee813c9 Automatic date update in version.in
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:
bfd/version.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--
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 7cf726a59435 Merge tag 'linux-kselftest-kunit-5.10-rc1' of git://git.ke [...]
new 5498d5f93210 zonefs: introduce helper for zone management
new 48d546a8dad4 zonefs: provide no-lock zonefs_io_error variant
new b5c00e975779 zonefs: open/close zone on file open/close
new 48bfd5c6fac1 zonefs: document the explicit-open mount option
new 922a763ae178 Merge tag 'zonefs-5.10-rc1' of git://git.kernel.org/pub/sc [...]
new c1b0c6271510 fuse: update project homepage
new 27bd6129a4c5 Merge branch 'virtio-shm' into for-next
new 1a9d5d405962 dax: Modify bdev_dax_pgoff() to handle NULL bdev
new 6bbdd563ee9a dax: Create a range version of dax_layout_busy_page()
new b43b7e81eb2b virtiofs: provide a helper function for virtqueue initialization
new f4fd4ae354ba virtiofs: get rid of no_mount_options
new 22f3787e9d95 virtiofs: set up virtio_fs dax_device
new 1dd539577c42 virtiofs: add a mount option to enable dax
new 45f2348eceb6 virtiofs: keep a list of free dax memory ranges
new fd1a1dc6f5aa virtiofs: implement FUSE_INIT map_alignment field
new ceec02d4354a virtiofs: introduce setupmapping/removemapping commands
new c2d0ad00d948 virtiofs: implement dax read/write operations
new 2a9a609a0c4a virtiofs: add DAX mmap support
new 9483e7d5809a virtiofs: define dax address space operations
new 6ae330cad6ef virtiofs: serialize truncate/punch_hole and dax fault path
new d0cfb9dcbca6 virtiofs: maintain a list of busy elements
new 9a752d18c85a virtiofs: add logic to free up a memory range
new d78092e4937d fuse: fix page dereference after free
new c6ff213fe5b8 fuse: add submount support to <uapi/linux/fuse.h>
new 24754db2728a fuse: store fuse_conn in fuse_req
new 8f622e9497bb fuse: drop fuse_conn parameter where possible
new fcee216beb9c fuse: split fuse_mount off of fuse_conn
new 1866d779d5d2 fuse: Allow fuse_fill_super_common() for submounts
new bf109c64040f fuse: implement crossmounts
new 413daa1a3f4a fuse: connection remove fix
new 42d3e2d041f0 virtiofs: calculate number of scatter-gather elements accurately
new 694565356c2e Merge tag 'fuse-update-5.10' of git://git.kernel.org/pub/s [...]
new 8a569d717ed0 xfs: refactor inode flags propagation code
new d4f2c14cc979 xfs: don't propagate RTINHERIT -> REALTIME when there is no rtdev
new b96cb835e37c xfs: deprecate the V4 format
new 6dd379c7fa81 xfs: drop extra transaction roll from inode extent truncate
new 72cc95132a93 xfs: Set xfs_buf type flag when growing summary/bitmap files
new c54e14d155f5 xfs: Set xfs_buf's b_ops member when zeroing bitmap/summary files
new 8df0fa39bdd8 xfs: don't free rt blocks when we're doing a REMAP bunmapi call
new e581c9397a25 xfs: check dabtree node hash values when loading child blocks
new 93293bcbde93 xfs: log new intent items created as part of finishing rec [...]
new 2dbf872c042e xfs: attach inode to dquot in xfs_bui_item_recover
new 384ff09ba2e5 xfs: don't release log intent items when recovery fails
new f692d09e9c8f xfs: avoid LR buffer overrun due to crafted h_len
new 0c771b99d6c9 xfs: clean up calculation of LR header blocks
new c63290e300c4 xfs: remove the unused SYNCHRONIZE macro
new 9c0fce4c16fc xfs: use the existing type definition for di_projid
new 5aff6750d56d xfs: remove the unnecessary xfs_dqid_t type cast
new a647d109e08a xfs: fix some comments
new 3feb4ffbf693 xfs: remove the redundant crc feature check in xfs_attr3_r [...]
new 74af4c1770f9 xfs: remove the unused parameter id from xfs_qm_dqattach_one
new d6b8fc6c7afa xfs: do the assert for all the log done items in xfs_trans_cancel
new 61ef5230518a xfs: code cleanup in xfs_attr_leaf_entsize_{remote,local}
new b38e07401ec7 xfs: drop the obsolete comment on filestream locking
new d7884e6e90da xfs: avoid shared rmap operations for attr fork extents
new c9c626b354dc xfs: directly call xfs_generic_create() for ->create() and [...]
new c23c393eaab5 xfs: remove deprecated mount options
new 3442de9cc322 xfs: remove deprecated sysctl options
new 671459676ab0 xfs: fix finobt btree block recovery ordering
new b80b29d602a8 xfs: remove xfs_defer_reset
new 901219bb2507 xfs: remove XFS_LI_RECOVERED
new e6fff81e4870 xfs: proper replay of deferred ops queued during log recovery
new 4f9a60c48078 xfs: xfs_defer_capture should absorb remaining block reservations
new 929b92f64048 xfs: xfs_defer_capture should absorb remaining transaction [...]
new 919522e89f8e xfs: clean up bmap intent item recovery checking
new 64a3f3315bc6 xfs: clean up xfs_bui_item_recover iget/trans_alloc/ilock [...]
new ff4ab5e02a04 xfs: fix an incore inode UAF in xfs_bui_recover
new 27dada070d59 xfs: change the order in which child and parent defer ops [...]
new 4e919af7827a xfs: periodically relog deferred intent items
new ed1575daf71e xfs: expose the log push threshold
new 74f4d6a1e065 xfs: only relog deferred intent items if free space in the [...]
new acd1ac3aa22f xfs: limit entries returned when counting fsmap records
new 8ffa90e1145c xfs: fix deadlock and streamline xfs_getfsmap performance
new 97611f936674 xfs: do the ASSERT for the arguments O_{u,g,p}dqpp
new e5b23740db9b xfs: fix the indent in xfs_trans_mod_dquot
new f4c32e87de7d xfs: fix realtime bitmap/summary file truncation when grow [...]
new 7249c95a3fd7 xfs: make xfs_growfs_rt update secondary superblocks
new ace74e797a82 xfs: annotate grabbing the realtime bitmap/summary locks i [...]
new d88850bd5516 xfs: fix high key handling in the rt allocator's query_ran [...]
new 894645546bb1 xfs: fix Kconfig asking about XFS_SUPPORT_V4 when XFS_FS=n
new bbe85027ce80 Merge tag 'xfs-5.10-merge-5' of git://git.kernel.org/pub/s [...]
The 81 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/admin-guide/xfs.rst | 32 +-
Documentation/filesystems/fuse.rst | 2 +-
Documentation/filesystems/zonefs.rst | 15 +
MAINTAINERS | 2 +-
drivers/dax/super.c | 3 +-
fs/dax.c | 29 +-
fs/fuse/Kconfig | 16 +-
fs/fuse/Makefile | 6 +-
fs/fuse/control.c | 20 +-
fs/fuse/cuse.c | 21 +-
fs/fuse/dax.c | 1365 ++++++++++++++++++++++++++++++++++
fs/fuse/dev.c | 189 ++---
fs/fuse/dir.c | 220 ++++--
fs/fuse/file.c | 255 ++++---
fs/fuse/fuse_i.h | 185 ++++-
fs/fuse/inode.c | 391 +++++++---
fs/fuse/readdir.c | 10 +-
fs/fuse/virtio_fs.c | 378 ++++++++--
fs/fuse/xattr.c | 34 +-
fs/xfs/Kconfig | 25 +
fs/xfs/libxfs/xfs_attr_remote.c | 2 -
fs/xfs/libxfs/xfs_bmap.c | 19 +-
fs/xfs/libxfs/xfs_da_format.h | 18 +-
fs/xfs/libxfs/xfs_defer.c | 232 +++++-
fs/xfs/libxfs/xfs_defer.h | 37 +
fs/xfs/libxfs/xfs_inode_buf.h | 2 +-
fs/xfs/libxfs/xfs_rmap.c | 27 +-
fs/xfs/libxfs/xfs_rtbitmap.c | 11 +-
fs/xfs/scrub/dabtree.c | 14 +
fs/xfs/xfs_bmap_item.c | 132 ++--
fs/xfs/xfs_buf_item_recover.c | 2 +
fs/xfs/xfs_dquot.c | 4 +-
fs/xfs/xfs_extfree_item.c | 44 +-
fs/xfs/xfs_filestream.c | 34 +-
fs/xfs/xfs_fsmap.c | 48 +-
fs/xfs/xfs_fsmap.h | 6 +-
fs/xfs/xfs_inode.c | 123 +--
fs/xfs/xfs_ioctl.c | 144 ++--
fs/xfs/xfs_iops.c | 4 +-
fs/xfs/xfs_linux.h | 1 -
fs/xfs/xfs_log.c | 44 +-
fs/xfs/xfs_log.h | 2 +
fs/xfs/xfs_log_recover.c | 221 +++---
fs/xfs/xfs_qm.c | 16 +-
fs/xfs/xfs_refcount_item.c | 51 +-
fs/xfs/xfs_rmap_item.c | 42 +-
fs/xfs/xfs_rtalloc.c | 31 +-
fs/xfs/xfs_stats.c | 4 +
fs/xfs/xfs_stats.h | 1 +
fs/xfs/xfs_super.c | 44 +-
fs/xfs/xfs_sysctl.c | 36 +-
fs/xfs/xfs_trace.h | 1 +
fs/xfs/xfs_trans.c | 2 +-
fs/xfs/xfs_trans.h | 33 +-
fs/xfs/xfs_trans_dquot.c | 43 +-
fs/zonefs/super.c | 221 +++++-
fs/zonefs/zonefs.h | 10 +
include/linux/dax.h | 6 +
include/uapi/linux/fuse.h | 50 +-
include/uapi/linux/virtio_fs.h | 3 +
60 files changed, 3945 insertions(+), 1018 deletions(-)
create mode 100644 fs/fuse/dax.c
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.