fuse_new.3 (c5d247d8) | fuse_new.3 (41ce3b17) |
---|---|
1.\" $OpenBSD: fuse_new.3,v 1.6 2021/03/12 05:18:01 jsg Exp $ | 1.\" $OpenBSD: fuse_new.3,v 1.7 2022/03/31 17:27:17 naddy Exp $ |
2.\" 3.\" Copyright (c) 2013 Sylvestre Gallon <ccna.syl@gmail.com> 4.\" Copyright (c) 2018 Helg Bredow <helg@openbsd.org> 5.\" 6.\" Permission to use, copy, modify, and distribute this software for any 7.\" purpose with or without fee is hereby granted, provided that the above 8.\" copyright notice and this permission notice appear in all copies. 9.\" 10.\" THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 11.\" WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 12.\" MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 13.\" ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 14.\" WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 15.\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 16.\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 17.\" | 2.\" 3.\" Copyright (c) 2013 Sylvestre Gallon <ccna.syl@gmail.com> 4.\" Copyright (c) 2018 Helg Bredow <helg@openbsd.org> 5.\" 6.\" Permission to use, copy, modify, and distribute this software for any 7.\" purpose with or without fee is hereby granted, provided that the above 8.\" copyright notice and this permission notice appear in all copies. 9.\" 10.\" THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 11.\" WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 12.\" MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 13.\" ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 14.\" WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 15.\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 16.\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 17.\" |
18.Dd $Mdocdate: March 12 2021 $ | 18.Dd $Mdocdate: March 31 2022 $ |
19.Dt FUSE_NEW 3 20.Os 21.Sh NAME 22.Nm fuse_new 23.Nd FUSE implementation routine to initialise the FUSE connection 24.Sh SYNOPSIS 25.In fuse.h 26.Ft struct fuse * --- 189 unchanged lines hidden (view full) --- 216.It uid=%u 217The UID that will be reported as the owner for all files by getattr. 218.It umask=%o 219The file mode mask applied to the permission for all files by getattr. 220.It use_ino 221By default, FUSE will return an internal inode number for getattr and 222readdir and this will be different every time the file system is 223mounted. | 19.Dt FUSE_NEW 3 20.Os 21.Sh NAME 22.Nm fuse_new 23.Nd FUSE implementation routine to initialise the FUSE connection 24.Sh SYNOPSIS 25.In fuse.h 26.Ft struct fuse * --- 189 unchanged lines hidden (view full) --- 216.It uid=%u 217The UID that will be reported as the owner for all files by getattr. 218.It umask=%o 219The file mode mask applied to the permission for all files by getattr. 220.It use_ino 221By default, FUSE will return an internal inode number for getattr and 222readdir and this will be different every time the file system is 223mounted. |
224If this is set the file system's own inode number will be | 224If this is set, the file system's own inode number will be |
225reported instead. 226Useful only for file system that have inode numbers. 227.El 228.Sh SEE ALSO 229.Xr fuse_get_context 3 , 230.Xr fuse_main 3 , 231.Xr fuse_mount 3 232.Sh STANDARDS 233The 234.Fn fuse_new 235function conforms to FUSE 2.6. 236.Sh HISTORY 237The 238.Fn fuse_new 239function first appeared in 240.Ox 5.4 . 241.Sh AUTHORS 242.An Sylvestre Gallon Aq Mt ccna.syl@gmail.com 243.An Helg Bredow Aq Mt helg@openbsd.org | 225reported instead. 226Useful only for file system that have inode numbers. 227.El 228.Sh SEE ALSO 229.Xr fuse_get_context 3 , 230.Xr fuse_main 3 , 231.Xr fuse_mount 3 232.Sh STANDARDS 233The 234.Fn fuse_new 235function conforms to FUSE 2.6. 236.Sh HISTORY 237The 238.Fn fuse_new 239function first appeared in 240.Ox 5.4 . 241.Sh AUTHORS 242.An Sylvestre Gallon Aq Mt ccna.syl@gmail.com 243.An Helg Bredow Aq Mt helg@openbsd.org |