kiocb

created : Fri, 03 Jul 2020 20:30:47 +0900
modified : Fri, 03 Jul 2020 20:43:47 +0900
linux vfs iocb kiocb

간략 설명

매개변수 설명

코드

struct kiocb {
	struct file		*ki_filp;

	/* The 'ki_filp' pointer is shared in a union for aio */
	randomized_struct_fields_start

	loff_t			ki_pos;
	void (*ki_complete)(struct kiocb *iocb, long ret, long ret2);
	void			*private;
	int			ki_flags;
	u16			ki_hint;
	u16			ki_ioprio; /* See linux/ioprio.h */
	unsigned int		ki_cookie; /* for ->iopoll */

	randomized_struct_fields_end
};