Lines Matching +full:9 +full:a
16 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
31 .Nd persistently store an updated MAC label on a vnode
40 .Xr mac 9
46 .Xr vnode 9
58 The UFS filesystem uses a superblock flag to persisently configure whether a
59 specific filesystem implements a label for each
60 .Xr vnode 9 ,
65 function can be used, and maps operations into a series of
66 .Xr VOP_OPENEXTATTR 9 ,
67 .Xr VOP_WRITEEXTATTR 9 ,
69 .Xr VOP_CLOSEEXTATTR 9 .
73 when a new filesystem object is created, so that suitable extended attributes
76 when a
77 .Xr vnode 9
78 is associated with a filesystem object for the first time.
80 .Xr VOP_OPENEXTATTR 9 ,
81 .Xr VOP_READEXTATTR 9 ,
82 .Xr VOP_WRITEEXTATTR 9 ,
84 .Xr VOP_CLOSEEXTATTR 9
88 .Xr vnode 9
89 locks be held to prevent concurrent access when a MAC label may not yet be
91 It is also important that operations are ordered so that a system crash does
92 not leave a file improperly labeled.
93 For example, the extended attribute for a newly created file must be written
95 no opportunity for a crash to lead to an unlabeled file.
116 .Xr mac 9 ,
117 .Xr mount 9 ,
118 .Xr vnode 9 ,
119 .Xr VOP_CLOSEEXTATTR 9 ,
120 .Xr VOP_OPENEXTATTR 9 ,
121 .Xr VOP_READEXTATTR 9 ,
122 .Xr VOP_WRITEXTATTR 9