incubator-nuttx/drivers/bch
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
..
CMakeLists.txt build: add initial cmake build system 2023-07-08 13:50:48 +08:00
Kconfig BCH: Add readonly configuration for BCH devices 2024-09-19 03:53:20 +08:00
Make.defs tools: replace INCDIR to Makefile variable 2022-11-03 19:59:55 +08:00
bch.h bch: fix sector buffer invalidation issue 2023-07-29 06:56:28 -07:00
bchdev_driver.c move readv/writev to the kernel 2024-10-30 17:07:54 +08:00
bchdev_register.c fs: Add g_ prefix for all global mountpt_operations instances 2023-04-24 16:13:29 +02:00
bchdev_unregister.c driver: There is no need to use sched_[un]lock 2024-04-30 11:35:13 -03:00
bchlib_cache.c bch:alloc bch->buffer when offset not aligned 2024-08-22 20:24:13 +08:00
bchlib_read.c drivers/mtd/bch: fix size_t overflow when offset > 4GB 2024-09-09 01:23:02 +08:00
bchlib_setup.c nuttx: fix multiple 'FAR', 'CODE' and style issues 2024-08-25 19:22:15 +08:00
bchlib_teardown.c bch: fix sector buffer invalidation issue 2023-07-29 06:56:28 -07:00
bchlib_write.c drivers/mtd/bch: fix size_t overflow when offset > 4GB 2024-09-09 01:23:02 +08:00