incubator-nuttx/fs/littlefs
YAMAMOTO Takashi 761ee81956 move readv/writev to the kernel
currently, nuttx implements readv/writev on the top of read/write.
while it might work for the simplest cases, it's broken by design.
for example, it's impossible to make it work correctly for files
which need to preserve data boundaries without allocating a single
contiguous buffer. (udp socket, some character devices, etc)

this change is a start of the migration to a better design.
that is, implement read/write on the top of readv/writev.

to avoid a single huge change, following things will NOT be done in
this commit:

* fix actual bugs caused by the original readv-based-on-read design.
  (cf. https://github.com/apache/nuttx/pull/12674)

* adapt filesystems/drivers to actually benefit from the new interface.
  (except a few trivial examples)

* eventually retire the old interface.

* retire read/write syscalls. implement them in libc instead.

* pread/pwrite/preadv/pwritev (except the introduction of struct uio,
  which is a preparation to back these variations with the new
  interface.)
2024-10-30 17:07:54 +08:00
..
.gitignore build: Remve the unnecessary .gitignore 2020-05-23 18:00:40 +01:00
CMakeLists.txt fs/littlefs: revert fstat and use lfs_file_attr function 2024-10-11 15:46:02 +08:00
Kconfig fs/littlefs: add full support for LittleFS block device cfg in Kconfig 2023-02-13 18:46:46 +08:00
Make.defs fs/littlefs: revert fstat and use lfs_file_attr function 2024-10-11 15:46:02 +08:00
lfs_getpath.patch littlefs/Make.defs:Add get path temp patch 2024-02-21 06:15:39 -08:00
lfs_getsetattr.patch fs/littlefs: revert fstat and use lfs_file_attr function 2024-10-11 15:46:02 +08:00
lfs_util.patch fs/xxfs:Replace kmm with fs heap 2024-09-30 16:30:56 +08:00
lfs_vfs.c move readv/writev to the kernel 2024-10-30 17:07:54 +08:00
lfs_vfs.h Don't include debug.h from public header file 2021-06-01 06:42:02 +09:00