linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [GIT PULL] fs/befs/
@ 2016-12-22 12:18 Luis de Bethencourt
  0 siblings, 0 replies; 3+ messages in thread
From: Luis de Bethencourt @ 2016-12-22 12:18 UTC (permalink / raw)
  To: torvalds
  Cc: Greg KH, Andrew Morton, Al Viro, Javier Martinez Canillas,
	Salah Triki, Theodore Ts'o, Linux Kernel, linux-fsdevel

Hi Linus,

Second git pull request since I took maintainership of the befs file system [0].

A series of small fixes and adding NFS export support.

Thank you very much,
Luis


[0] https://lkml.org/lkml/2016/7/27/502


The following changes since commit 69973b830859bc6529a7a0468ba0d80ee5117826:

  Linux 4.9 (2016-12-11 11:17:54 -0800)

are available in the git repository at:

  https://github.com/luisbg/linux-befs.git tags/befs-v4.10-rc1

for you to fetch changes up to ac632f5b6301c4beb19f9ea984ce0dc67b6e5874:

  befs: add NFS export support (2016-12-22 11:25:24 +0000)

----------------------------------------------------------------
befs fixes for 4.10-rc1

----------------------------------------------------------------
Luis de Bethencourt (9):
      befs: fix style issues in debug.c
      befs: fix style issues in inode.c
      befs: fix style issues in io.c
      befs: fix typos in linuxvfs.c
      befs: fix style issues in linuxvfs.c
      befs: fix style issues in header files
      befs: remove signatures from comments
      befs: remove trailing whitespaces
      befs: add NFS export support

 fs/befs/befs.h          |   3 +-
 fs/befs/befs_fs_types.h |  12 +++---
 fs/befs/btree.c         |  48 +++++++++++------------
 fs/befs/btree.h         |   8 ++--
 fs/befs/datastream.c    |   8 ++--
 fs/befs/datastream.h    |   5 +--
 fs/befs/debug.c         |  14 ++++---
 fs/befs/inode.c         |  12 +++---
 fs/befs/inode.h         |   5 +--
 fs/befs/io.c            |   7 ++--
 fs/befs/io.h            |   1 -
 fs/befs/linuxvfs.c      | 134 ++++++++++++++++++++++++++++++++++++++++-----------------------
 fs/befs/super.h         |   4 +-
 13 files changed, 145 insertions(+), 116 deletions(-)

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

* [GIT PULL] fs/befs/
@ 2017-05-05 10:52 Luis de Bethencourt
  0 siblings, 0 replies; 3+ messages in thread
From: Luis de Bethencourt @ 2017-05-05 10:52 UTC (permalink / raw)
  To: torvalds
  Cc: Greg KH, Andrew Morton, Al Viro, Javier Martinez Canillas,
	Salah Triki, Theodore Ts'o, Linux Kernel, linux-fsdevel,
	Fabian Frederick

Hi Linus,

Third git pull request since I took maintainership of the befs file system [0].

This time it is a light one.
One fix from Fabian Frederick making the nfs client still work after a cache
drop.

Thank you very much,
Luis


[0] https://lkml.org/lkml/2016/7/27/502


The following changes since commit a351e9b9fc24e982ec2f0e76379a49826036da12:

  Linux 4.11 (2017-04-30 19:47:48 -0700)

are available in the git repository at:

  https://github.com/luisbg/linux-befs.git tags/befs-v4.12-rc1

for you to fetch changes up to dcfd9b215b89d72c1053a717571d52bf96cc64f8:

  befs: make export work with cold dcache (2017-05-05 11:35:35 +0100)

----------------------------------------------------------------
befs fixes for 4.12-rc1

----------------------------------------------------------------
Fabian Frederick (1):
      befs: make export work with cold dcache

 fs/befs/linuxvfs.c | 15 +++++++++++++++
 1 file changed, 15 insertions(+)

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

* [GIT PULL] fs/befs/
@ 2016-10-15 18:56 Luis de Bethencourt
  0 siblings, 0 replies; 3+ messages in thread
From: Luis de Bethencourt @ 2016-10-15 18:56 UTC (permalink / raw)
  To: torvalds
  Cc: Greg KH, Andrew Morton, Al Viro, Javier Martinez Canillas,
	Salah Triki, Theodore Ts'o, Linux Kernel, linux-fsdevel

Hi Linus,

I recently took maintainership of the befs file system [0]. This is the first
time I send you a git pull request, so please let me know if all the below is
OK.

Salah Triki and myself have been cleaning the code and fixing a few small bugs.

Sorry I couldn't send this sooner in the merge window, I was waiting to have my
GPG key signed by kernel members at ELCE in Berlin a few days ago.

Thank you very much,
Luis


[0] https://lkml.org/lkml/2016/7/27/502


The following changes since commit c8d2bc9bc39ebea8437fd974fdbc21847bb897a3:

  Linux 4.8 (2016-10-02 16:24:33 -0700)

are available in the git repository at:

  https://github.com/luisbg/linux-befs.git tags/befs-v4.9-rc1

for you to fetch changes up to a17e7d2010b44103e3b8e00d0c8c510606457bc6:

  befs: befs: fix style issues in datastream.c (2016-10-08 10:01:36 +0100)

----------------------------------------------------------------
befs fixes for 4.9-rc1

----------------------------------------------------------------
Luis de Bethencourt (21):
      befs: check return of sb_min_blocksize
      befs: fix function name in documentation
      befs: remove unused functions
      fs: befs: check silent flag before logging error
      fs: befs: remove comment that confuses kernel-doc
      befs: avoid dereferencing dentry twice
      befs: remove constant variable
      befs: use simpler while loop
      befs: make consistent use of befs_error()
      befs: in memory free_node_ptr and max_size never read
      befs: fix typo in befs_bt_read_node documentation
      befs: remove unused BEFS_BT_PARMATCH
      befs: fix typo in befs_find_key
      befs: dump inode_size superblock information
      befs: add check for ag_shift in superblock
      befs: fix comment style
      befs: fix style issues in super.c
      befs: fix typos in btree.c
      befs: fix typos in datastream.c
      befs: improve documentation in datastream.c
      befs: befs: fix style issues in datastream.c

Salah Triki (18):
      fs/befs/linuxvfs.c: move useless assignment
      fs/befs/linuxvfs.c: check silent flag before logging errors
      fs/befs/linuxvfs.c: remove useless pr_err in befs_fill_super()
      fs/befs/linuxvfs.c: remove useless befs_error
      fs: befs: remove useless pr_err in befs_init_inodecache()
      fs: befs: replace befs_bread by sb_bread
      fs: befs: Remove redundant validation from befs_find_brun_direct
      fs: befs: Coding style fix
      fs: befs: Remove useless calls to brelse in befs_find_brun_dblindirect
      fs: befs: Insert NULL inode to dentry
      fs: befs: remove in vain variable assignment
      fs: befs: remove useless initialization to zero
      fs: befs: remove unnecessary *befs_sb variable
      fs: befs: remove in vain variable assignment
      fs: befs: remove ret variable
      befs: add flags field to validate superblock state
      befs: fix typo in befs_sb_info
      befs: remove unnecessary initialization

 fs/befs/befs.h       |  19 ++++---------
 fs/befs/btree.c      |  60 ++++++++++++++++++---------------------
 fs/befs/datastream.c | 253 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++----------------------------------------------------------------------------------
 fs/befs/debug.c      |   1 +
 fs/befs/io.c         |  26 +----------------
 fs/befs/io.h         |   2 --
 fs/befs/linuxvfs.c   | 130 +++++++++++++++++++++++++++++++++++++++++------------------------------------------
 fs/befs/super.c      |  36 +++++++++++++----------
 8 files changed, 244 insertions(+), 283 deletions(-)

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

end of thread, other threads:[~2017-05-05 10:52 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-12-22 12:18 [GIT PULL] fs/befs/ Luis de Bethencourt
  -- strict thread matches above, loose matches on Subject: below --
2017-05-05 10:52 Luis de Bethencourt
2016-10-15 18:56 Luis de Bethencourt

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).