linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [GIT PULL] UBIFS updates for 4.20-rc1
@ 2018-10-31 21:22 Richard Weinberger
  2018-11-01 21:55 ` Richard Weinberger
  2018-11-04 22:47 ` Linus Torvalds
  0 siblings, 2 replies; 5+ messages in thread
From: Richard Weinberger @ 2018-10-31 21:22 UTC (permalink / raw)
  To: torvalds; +Cc: linux-mtd, linux-kernel

Linus,

The following changes since commit 84df9525b0c27f3ebc2ebb1864fa62a97fdedb7d:

  Linux 4.19 (2018-10-22 07:37:37 +0100)

are available in the Git repository at:

  git://git.infradead.org/linux-ubifs.git tags/tags/upstream-4.20-rc1

for you to fetch changes up to 84db119f5a83e1bf9cffbc6d9cf16487eda1c056:

  ubifs: Remove unneeded semicolon (2018-10-23 13:49:02 +0200)

----------------------------------------------------------------
This pull request contains updates for UBIFS:

- Full filesystem authentication feature,
  UBIFS is now able to have the whole filesystem structure
  authenticated plus user data encrypted and authenticated.
- Minor cleanups

----------------------------------------------------------------
Ding Xiang (1):
      ubifs: Remove unneeded semicolon

Gustavo A. R. Silva (1):
      ubi: Mark expected switch fall-throughs

Sascha Hauer (24):
      ubifs: Refactor create_default_filesystem()
      ubifs: Pass ubifs_zbranch to try_read_node()
      ubifs: Pass ubifs_zbranch to read_znode()
      ubifs: Export pnode_lookup as ubifs_pnode_lookup
      ubifs: Implement ubifs_lpt_lookup using ubifs_pnode_lookup
      ubifs: Drop write_node
      ubifs: Store read superblock node
      ubifs: Format changes for authentication support
      ubifs: Add separate functions to init/crc a node
      ubifs: Add helper functions for authentication support
      ubifs: Create functions to embed a HMAC in a node
      ubifs: Add hashes to the tree node cache
      ubifs: authentication: Add hashes to index nodes
      ubifs: Add authentication nodes to journal
      ubifs: Add auth nodes to garbage collector journal head
      ubifs: Authenticate replayed journal
      ubifs: authentication: Authenticate LPT
      ubfis: authentication: Authenticate master node
      ubifs: Create hash for default LPT
      ubifs: authentication: Authenticate super block node
      ubifs: Add hashes and HMACs to default filesystem
      ubifs: Do not update inode size in-place in authenticated mode
      ubifs: Enable authentication support
      Documentation: ubifs: Add authentication whitepaper

 Documentation/filesystems/ubifs-authentication.md | 426 ++++++++++++++++++
 Documentation/filesystems/ubifs.txt               |   7 +
 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 ++++++++++-
 25 files changed, 2418 insertions(+), 292 deletions(-)
 create mode 100644 Documentation/filesystems/ubifs-authentication.md
 create mode 100644 fs/ubifs/auth.c




^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [GIT PULL] UBIFS updates for 4.20-rc1
  2018-10-31 21:22 [GIT PULL] UBIFS updates for 4.20-rc1 Richard Weinberger
@ 2018-11-01 21:55 ` Richard Weinberger
       [not found]   ` <CAFLxGvyP51DcR_=YqP1P4kt=cPpiMdG9n4FGOxpkOYtsfdRg=w@mail.gmail.com>
  2018-11-04 22:47 ` Linus Torvalds
  1 sibling, 1 reply; 5+ messages in thread
From: Richard Weinberger @ 2018-11-01 21:55 UTC (permalink / raw)
  To: Richard Weinberger; +Cc: torvalds, linux-mtd @ lists . infradead . org, LKML

Linus,

On Wed, Oct 31, 2018 at 10:22 PM Richard Weinberger <richard@nod.at> wrote:
> The following changes since commit 84df9525b0c27f3ebc2ebb1864fa62a97fdedb7d:
>
>   Linux 4.19 (2018-10-22 07:37:37 +0100)
>
> are available in the Git repository at:
>
>   git://git.infradead.org/linux-ubifs.git tags/tags/upstream-4.20-rc1

Just a kind ping to make sure that this pull request didn't get lost
in your spam folder.
Since you pulled the UML stuff,but this not, I'm a little worried.

-- 
Thanks,
//richard

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [GIT PULL] UBIFS updates for 4.20-rc1
       [not found]   ` <CAFLxGvyP51DcR_=YqP1P4kt=cPpiMdG9n4FGOxpkOYtsfdRg=w@mail.gmail.com>
@ 2018-11-04 22:45     ` Linus Torvalds
  2018-11-04 22:49       ` Richard Weinberger
  0 siblings, 1 reply; 5+ messages in thread
From: Linus Torvalds @ 2018-11-04 22:45 UTC (permalink / raw)
  To: richard.weinberger; +Cc: linux-mtd, Linux Kernel Mailing List

On Sun, Nov 4, 2018 at 11:25 AM Richard Weinberger
<richard.weinberger@gmail.com> wrote:
>
> I'm sorry to pester you a second time.
> The first ping had you only in CC,
> let's hope this mail passes your spam filter.

Interesting. Your two first emails used 'torvalds@linuxfoundation.org"
(without the dash between "linux" and "foundation"), which works, but
with my new email setup it didn't get marked as "to me" and got
auto-archived as "not directly to me".

This third reminder was to my normal "torvalds@linux-foundation.org"
address, so now I see it in my inbox.

I guess I need to go tweak some of my mail rules in my new email setup..

                  Linus

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [GIT PULL] UBIFS updates for 4.20-rc1
  2018-10-31 21:22 [GIT PULL] UBIFS updates for 4.20-rc1 Richard Weinberger
  2018-11-01 21:55 ` Richard Weinberger
@ 2018-11-04 22:47 ` Linus Torvalds
  1 sibling, 0 replies; 5+ messages in thread
From: Linus Torvalds @ 2018-11-04 22:47 UTC (permalink / raw)
  To: richard; +Cc: Linus Torvalds, linux-mtd, Linux Kernel Mailing List

On Wed, Oct 31, 2018 at 2:22 PM Richard Weinberger <richard@nod.at> wrote:
>
> This pull request contains updates for UBIFS:

Now pulled,

               Linus

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [GIT PULL] UBIFS updates for 4.20-rc1
  2018-11-04 22:45     ` Linus Torvalds
@ 2018-11-04 22:49       ` Richard Weinberger
  0 siblings, 0 replies; 5+ messages in thread
From: Richard Weinberger @ 2018-11-04 22:49 UTC (permalink / raw)
  To: Linus Torvalds; +Cc: richard.weinberger, linux-mtd, Linux Kernel Mailing List

Am Sonntag, 4. November 2018, 23:45:50 CET schrieb Linus Torvalds:
> On Sun, Nov 4, 2018 at 11:25 AM Richard Weinberger
> <richard.weinberger@gmail.com> wrote:
> >
> > I'm sorry to pester you a second time.
> > The first ping had you only in CC,
> > let's hope this mail passes your spam filter.
> 
> Interesting. Your two first emails used 'torvalds@linuxfoundation.org"
> (without the dash between "linux" and "foundation"), which works, but
> with my new email setup it didn't get marked as "to me" and got
> auto-archived as "not directly to me".
> 
> This third reminder was to my normal "torvalds@linux-foundation.org"
> address, so now I see it in my inbox.

For the third mail I used Gmail mobile and not KMail, so auto complete used
the other address by accident.
Good to have this sorted out now. :-)

Thanks,
//richard



^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2018-11-04 22:49 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-10-31 21:22 [GIT PULL] UBIFS updates for 4.20-rc1 Richard Weinberger
2018-11-01 21:55 ` Richard Weinberger
     [not found]   ` <CAFLxGvyP51DcR_=YqP1P4kt=cPpiMdG9n4FGOxpkOYtsfdRg=w@mail.gmail.com>
2018-11-04 22:45     ` Linus Torvalds
2018-11-04 22:49       ` Richard Weinberger
2018-11-04 22:47 ` Linus Torvalds

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).