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-release-arm-mainline-allnoconfig in repository toolchain/ci/linux.
from d1ea35f4cdd4 Merge tag '5.6-rc-smb3-plugfest-patches' of git://git.samb [...] adds 490d332ea427 irqchip/gic-v4.1: Avoid 64bit division for the sake of 32bit ARM adds 8dcc1a9d90c1 fs: New zonefs file system adds fcb9c24bef3d zonefs: Add documentation adds 380a129eb2c2 Merge tag 'zonefs-5.6-rc1' of git://git.kernel.org/pub/scm [...] adds c8fb7d7e48d1 kconfig: fix broken dependency in randconfig-generated .config adds faa7bdd7e9e1 kbuild: fix the document to use extra-y for vmlinux.lds adds 5f2fb52fac15 kbuild: rename hostprogs-y/always to hostprogs/always-y adds be9f6133f877 scripts/kallsyms: rename local variables in read_symbol() adds 8d60526999aa scripts/kallsyms: change table to store (strcut sym_entry *) adds cde26a6e17ec kallsyms: fix type of kallsyms_token_table[] adds 089b7d890f97 kconfig: Invalidate all symbols after changing to y or m. adds f566e1fbadb6 kbuild: make multiple directory targets work adds 89a47dd1af8f Merge tag 'kbuild-v5.6-2' of git://git.kernel.org/pub/scm/ [...] adds bb6d3fb354c5 Linux 5.6-rc1 new a20456aef80f selinux: fix typo in filesystem name new 39a706fbcf26 selinux: fix sidtab string cache locking new a5650acb5f33 Merge tag 'selinux-pr-20200210' of git://git.kernel.org/pu [...] adds 0cd9d33ace33 cgroup: init_tasks shouldn't be linked to the root cgroup new 0a679e13ea30 Merge branch 'for-5.6-fixes' of git://git.kernel.org/pub/s [...]
The 4 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/filesystems/zonefs.txt | 404 ++++++++++ Documentation/kbuild/makefiles.rst | 53 +- Kbuild | 8 +- MAINTAINERS | 10 + Makefile | 6 +- arch/alpha/boot/Makefile | 2 +- arch/arm/vdso/Makefile | 2 +- arch/arm64/kernel/vdso32/Makefile | 4 +- arch/mips/boot/Makefile | 2 +- arch/mips/boot/compressed/Makefile | 4 +- arch/mips/boot/tools/Makefile | 2 +- arch/mips/tools/Makefile | 4 +- arch/mips/vdso/Makefile | 2 +- arch/powerpc/boot/Makefile | 4 +- arch/s390/tools/Makefile | 4 +- arch/sparc/boot/Makefile | 2 +- arch/sparc/vdso/Makefile | 2 +- arch/x86/boot/Makefile | 4 +- arch/x86/boot/compressed/Makefile | 2 +- arch/x86/entry/vdso/Makefile | 2 +- arch/x86/realmode/rm/Makefile | 2 +- arch/x86/tools/Makefile | 4 +- drivers/gpu/drm/radeon/Makefile | 2 +- drivers/irqchip/irq-gic-v3-its.c | 4 +- drivers/tty/vt/Makefile | 2 +- drivers/video/logo/Makefile | 2 +- drivers/zorro/Makefile | 2 +- fs/Kconfig | 1 + fs/Makefile | 1 + fs/unicode/Makefile | 2 +- fs/zonefs/Kconfig | 9 + fs/zonefs/Makefile | 4 + fs/zonefs/super.c | 1439 ++++++++++++++++++++++++++++++++++ fs/zonefs/zonefs.h | 189 +++++ include/uapi/linux/magic.h | 1 + kernel/cgroup/cgroup.c | 13 +- kernel/kallsyms.c | 5 +- lib/Makefile | 4 +- lib/raid6/Makefile | 2 +- net/bpfilter/Makefile | 2 +- samples/bpf/Makefile | 118 +-- samples/connector/Makefile | 8 +- samples/hidraw/Makefile | 6 +- samples/mei/Makefile | 4 +- samples/pidfd/Makefile | 4 +- samples/seccomp/Makefile | 4 +- samples/uhid/Makefile | 4 +- samples/vfs/Makefile | 5 +- scripts/Makefile | 22 +- scripts/Makefile.build | 8 +- scripts/Makefile.clean | 4 +- scripts/Makefile.host | 8 +- scripts/Makefile.lib | 6 +- scripts/basic/Makefile | 4 +- scripts/dtc/Makefile | 4 +- scripts/gcc-plugins/Makefile | 2 +- scripts/genksyms/Makefile | 4 +- scripts/kallsyms.c | 133 ++-- scripts/kconfig/Makefile | 10 +- scripts/kconfig/confdata.c | 7 +- scripts/mod/Makefile | 4 +- scripts/selinux/genheaders/Makefile | 4 +- scripts/selinux/mdp/Makefile | 4 +- security/selinux/hooks.c | 2 +- security/selinux/ss/sidtab.c | 12 +- usr/Makefile | 2 +- 66 files changed, 2326 insertions(+), 280 deletions(-) create mode 100644 Documentation/filesystems/zonefs.txt create mode 100644 fs/zonefs/Kconfig create mode 100644 fs/zonefs/Makefile create mode 100644 fs/zonefs/super.c create mode 100644 fs/zonefs/zonefs.h