This is an automated email from the ASF dual-hosted git repository.
xiaoxiang pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/nuttx.git
from 5f77da4c517 Use small lock to protect timer related resources in arch
ARM.
add 4d17c353dd2 v9fs:socket driver
add 87a7714103c net: Split msg_iovlen check in recvmsg into each protocol
add 99a1f0dc65d inet_sockif:support multiple iov recv
add 2375a555173 v9fs:add Documentation
No new revisions were added by this update.
Summary of changes:
Documentation/components/filesystem/index.rst | 1 +
Documentation/components/filesystem/v9fs.rst | 94 +++++++++++
fs/v9fs/CMakeLists.txt | 4 +
fs/v9fs/Kconfig | 5 +
fs/v9fs/Make.defs | 4 +
fs/v9fs/client.c | 10 ++
fs/v9fs/client.h | 1 +
fs/v9fs/socket_9p.c | 229 ++++++++++++++++++++++++++
fs/v9fs/transport.c | 6 +
net/bluetooth/bluetooth_recvmsg.c | 5 +
net/can/can_recvmsg.c | 5 +
net/icmp/icmp_recvmsg.c | 5 +
net/icmpv6/icmpv6_recvmsg.c | 5 +
net/ieee802154/ieee802154_recvmsg.c | 5 +
net/local/local_recvmsg.c | 5 +
net/netlink/netlink_sockif.c | 5 +
net/pkt/pkt_recvmsg.c | 5 +
net/rpmsg/rpmsg_sockif.c | 5 +
net/socket/recvmsg.c | 5 -
net/tcp/tcp_recvfrom.c | 174 ++++++++++++-------
net/udp/udp_recvfrom.c | 9 +-
net/usrsock/usrsock_recvmsg.c | 5 +
22 files changed, 529 insertions(+), 63 deletions(-)
create mode 100644 Documentation/components/filesystem/v9fs.rst
create mode 100644 fs/v9fs/socket_9p.c