[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Minios-devel] [UNIKRAFT PATCH 1/1] plat/vfscore: Remove unused vfscore_fops structure
The vfscore_fops structure has been depreciated in a recent patch. Now we're using vnops. This patch removes the structure definition. Signed-off-by: Vlad-Andrei Badoiu <vlad_andrei.badoiu@xxxxxxxxxxxxxxx> --- lib/vfscore/include/vfscore/file.h | 6 ------ 1 file changed, 6 deletions(-) diff --git a/lib/vfscore/include/vfscore/file.h b/lib/vfscore/include/vfscore/file.h index 80845b79..2c0252e2 100644 --- a/lib/vfscore/include/vfscore/file.h +++ b/lib/vfscore/include/vfscore/file.h @@ -46,12 +46,6 @@ extern "C" { struct vfscore_file; -struct vfscore_fops { - int (*close)(struct vfscore_file *); - ssize_t (*write)(struct vfscore_file *, const void *, size_t); - ssize_t (*read)(struct vfscore_file *, void *, size_t); -}; - struct vfscore_file { int fd; int f_flags; /* open flags */ -- 2.20.1 _______________________________________________ Minios-devel mailing list Minios-devel@xxxxxxxxxxxxxxxxxxxx https://lists.xenproject.org/mailman/listinfo/minios-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |