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-master-arm-mainline-allnoconfig in repository toolchain/linux-next.
from 4710e78940d8 Merge tag 'nfs-for-4.20-2' of git://git.linux-nfs.org/proj [...] adds 7e5583fd7719 ubi: Mark expected switch fall-throughs adds c4de6d7e4319 ubifs: Refactor create_default_filesystem() adds 545bc8f6b0c6 ubifs: Pass ubifs_zbranch to try_read_node() adds 22ceaa8c688d ubifs: Pass ubifs_zbranch to read_znode() adds 0e26b6e2551e ubifs: Export pnode_lookup as ubifs_pnode_lookup adds e635cf8c3bbd ubifs: Implement ubifs_lpt_lookup using ubifs_pnode_lookup adds 83407437bbea ubifs: Drop write_node adds fd6150051bec ubifs: Store read superblock node adds 5125cfdff13a ubifs: Format changes for authentication support adds dead97266f10 ubifs: Add separate functions to init/crc a node adds 49525e5eecca ubifs: Add helper functions for authentication support adds a384b47e4954 ubifs: Create functions to embed a HMAC in a node adds 823838a48688 ubifs: Add hashes to the tree node cache adds 16a26b20d2af ubifs: authentication: Add hashes to index nodes adds 6a98bc4614de ubifs: Add authentication nodes to journal adds 6f06d96fdf62 ubifs: Add auth nodes to garbage collector journal head adds da8ef65f9573 ubifs: Authenticate replayed journal adds a1dc58140f7e ubifs: authentication: Authenticate LPT adds 625700ccb506 ubfis: authentication: Authenticate master node adds b5b1f0836922 ubifs: Create hash for default LPT adds e158e02ff700 ubifs: authentication: Authenticate super block node adds 104115a3eb54 ubifs: Add hashes and HMACs to default filesystem adds 1e76592f2c32 ubifs: Do not update inode size in-place in authenticated mode adds d8a22773a12c ubifs: Enable authentication support adds e453fa60e086 Documentation: ubifs: Add authentication whitepaper adds 84db119f5a83 ubifs: Remove unneeded semicolon adds 42bd06e93d10 Merge tag 'tags/upstream-4.20-rc1' of git://git.infradead. [...] adds 651022382c7f Linux 4.20-rc1
No new revisions were added by this update.
Summary of changes: Documentation/filesystems/ubifs-authentication.md | 426 ++++++++++++++++++ Documentation/filesystems/ubifs.txt | 7 + Makefile | 4 +- drivers/mtd/ubi/attach.c | 1 + drivers/mtd/ubi/build.c | 2 + fs/ubifs/Kconfig | 11 + fs/ubifs/Makefile | 1 + fs/ubifs/auth.c | 502 ++++++++++++++++++++++ fs/ubifs/debug.c | 6 + fs/ubifs/gc.c | 49 ++- fs/ubifs/io.c | 110 ++++- fs/ubifs/journal.c | 289 ++++++++++--- fs/ubifs/log.c | 24 ++ fs/ubifs/lpt.c | 184 +++++++- fs/ubifs/lpt_commit.c | 44 +- fs/ubifs/master.c | 64 ++- fs/ubifs/misc.h | 5 +- fs/ubifs/recovery.c | 120 ++++-- fs/ubifs/replay.c | 177 +++++++- fs/ubifs/sb.c | 209 ++++++--- fs/ubifs/super.c | 91 +++- fs/ubifs/tnc.c | 36 +- fs/ubifs/tnc_commit.c | 27 ++ fs/ubifs/tnc_misc.c | 26 +- fs/ubifs/ubifs-media.h | 46 +- fs/ubifs/ubifs.h | 253 ++++++++++- 26 files changed, 2420 insertions(+), 294 deletions(-) create mode 100644 Documentation/filesystems/ubifs-authentication.md create mode 100644 fs/ubifs/auth.c