From: Dominique Martinet <asmadeus@codewreck.org>
To: Linus Torvalds <torvalds@linux-foundation.org>
Cc: v9fs-developer@lists.sourceforge.net,
linux-kernel@vger.kernel.org, linux-fsdevel@vger.kernel.org,
netdev@vger.kernel.org
Subject: [GIT PULL] 9p for 5.16-rc1
Date: Mon, 8 Nov 2021 23:02:47 +0900 [thread overview]
Message-ID: <YYkuBxbTYS2ANFnK@codewreck.org> (raw)
Hi Linus,
I've been hesitant on the checkpatch fixes: it's a large batch of noise
that doesn't give much value, but I guess going forward it's good if
I can have a baseline to keep enforcing and it'll prevent getting more
half-assed drive-by style patches that aren't even correct like I've
had...
If you have an opinion on it feel free to just drop the last patch, the
rest still probably makes sense.
The following changes since commit 8bb7eca972ad531c9b149c0a51ab43a417385813:
Linux 5.15 (2021-10-31 13:53:10 -0700)
are available in the Git repository at:
git://github.com/martinetd/linux tags/9p-for-5.16-rc1
for you to fetch changes up to 6e195b0f7c8e50927fa31946369c22a0534ec7e2:
9p: fix a bunch of checkpatch warnings (2021-11-04 21:04:25 +0900)
----------------------------------------------------------------
9p-for-5.16-rc1: fixes, netfs read support and checkpatch rewrite
- fix syzcaller uninitialized value usage after missing error check
- add module autoloading based on transport name
- convert cached reads to use netfs helpers
- adjust readahead based on transport msize
- and many, many checkpatch.pl warning fixes...
----------------------------------------------------------------
David Howells (1):
9p: Convert to using the netfs helper lib to do reads and caching
Dominique Martinet (7):
9p/net: fix missing error check in p9_check_errors
fscache_cookie_enabled: check cookie is valid before accessing it
9p: fix file headers
9p v9fs_parse_options: replace simple_strtoul with kstrtouint
9p p9mode2perm: remove useless strlcpy and check sscanf return code
9p: set readahead and io size according to maxsize
9p: fix a bunch of checkpatch warnings
Sohaib Mohamed (4):
fs/9p: cleanup: opening brace at the beginning of the next line
9p: fix minor indentation and codestyle
fs/9p: fix warnings found by checkpatch.pl
fs/9p: fix indentation and Add missing a blank line after declaration
Thomas Weißschuh (1):
net/9p: autoload transport modules
fs/9p/Kconfig | 1 +
fs/9p/acl.c | 11 +---
fs/9p/acl.h | 27 ++++-----
fs/9p/cache.c | 141 +-------------------------------------------
fs/9p/cache.h | 97 +-----------------------------
fs/9p/fid.c | 3 +-
fs/9p/v9fs.c | 22 ++++---
fs/9p/v9fs.h | 17 ++++--
fs/9p/v9fs_vfs.h | 11 ++--
fs/9p/vfs_addr.c | 215 +++++++++++++++++++++++++++++++++---------------------------------
fs/9p/vfs_dentry.c | 4 +-
fs/9p/vfs_dir.c | 6 +-
fs/9p/vfs_file.c | 20 +++++--
fs/9p/vfs_inode.c | 29 +++++----
fs/9p/vfs_inode_dotl.c | 11 ++--
fs/9p/vfs_super.c | 14 +++--
fs/9p/xattr.c | 10 +---
fs/9p/xattr.h | 29 ++++-----
include/linux/fscache.h | 2 +-
include/net/9p/9p.h | 12 ++--
include/net/9p/client.h | 24 ++++----
include/net/9p/transport.h | 26 ++++----
net/9p/client.c | 434 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++--------------------------------------------------------------------
net/9p/error.c | 4 +-
net/9p/mod.c | 41 ++++++++-----
net/9p/protocol.c | 38 ++++++------
net/9p/protocol.h | 4 +-
net/9p/trans_common.c | 10 +---
net/9p/trans_common.h | 12 +---
net/9p/trans_fd.c | 2 -
net/9p/trans_rdma.c | 3 +-
net/9p/trans_virtio.c | 1 +
net/9p/trans_xen.c | 26 +-------
33 files changed, 523 insertions(+), 784 deletions(-)
============================
The same stats without the last patch
fs/9p/Kconfig | 1 +
fs/9p/acl.c | 10 +------
fs/9p/acl.h | 10 +------
fs/9p/cache.c | 137 ----------------------------------------------------------------------------------------
fs/9p/cache.h | 97 ++------------------------------------------------------------
fs/9p/fid.c | 3 +-
fs/9p/v9fs.c | 18 ++++++------
fs/9p/v9fs.h | 17 ++++++++---
fs/9p/vfs_addr.c | 209 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++---------------------------------------------------------------------
fs/9p/vfs_dentry.c | 2 --
fs/9p/vfs_dir.c | 6 ++--
fs/9p/vfs_file.c | 19 +++++++++----
fs/9p/vfs_inode.c | 15 ++++++----
fs/9p/vfs_inode_dotl.c | 2 --
fs/9p/vfs_super.c | 7 ++---
fs/9p/xattr.c | 10 +------
fs/9p/xattr.h | 10 +------
include/linux/fscache.h | 2 +-
include/net/9p/9p.h | 2 --
include/net/9p/client.h | 2 --
include/net/9p/transport.h | 8 ++++--
net/9p/client.c | 4 +--
net/9p/error.c | 2 --
net/9p/mod.c | 32 +++++++++++++++------
net/9p/protocol.c | 2 --
net/9p/protocol.h | 2 --
net/9p/trans_common.c | 10 +------
net/9p/trans_common.h | 10 +------
net/9p/trans_fd.c | 2 --
net/9p/trans_rdma.c | 3 +-
net/9p/trans_virtio.c | 1 +
net/9p/trans_xen.c | 26 ++---------------
32 files changed, 201 insertions(+), 480 deletions(-)
--
Dominique Martinet | Asmadeus
next reply other threads:[~2021-11-08 14:03 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-11-08 14:02 Dominique Martinet [this message]
2021-11-09 19:31 ` [GIT PULL] 9p for 5.16-rc1 pr-tracker-bot
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=YYkuBxbTYS2ANFnK@codewreck.org \
--to=asmadeus@codewreck.org \
--cc=linux-fsdevel@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=netdev@vger.kernel.org \
--cc=torvalds@linux-foundation.org \
--cc=v9fs-developer@lists.sourceforge.net \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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).