Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v6.13-rc7 14 lines 361 B view raw
1/* SPDX-License-Identifier: GPL-2.0 */ 2 3#ifndef BTRFS_DIRECT_IO_H 4#define BTRFS_DIRECT_IO_H 5 6#include <linux/types.h> 7 8int __init btrfs_init_dio(void); 9void __cold btrfs_destroy_dio(void); 10 11ssize_t btrfs_direct_write(struct kiocb *iocb, struct iov_iter *from); 12ssize_t btrfs_direct_read(struct kiocb *iocb, struct iov_iter *to); 13 14#endif /* BTRFS_DIRECT_IO_H */