NetBSD/sys/fs/smbfs
maya 18b796d442 Use C99 initializer for filterops
Mostly done with spatch with touchups for indentation

@@
expression a;
identifier b,c,d;
identifier p;
@@
const struct filterops p =
- 	{ a, b, c, d
+ 	{
+ 	.f_isfd = a,
+ 	.f_attach = b,
+ 	.f_detach = c,
+ 	.f_event = d,
};
2017-10-25 08:12:37 +00:00
..
Makefile
files.smbfs Define filesystem attributes with vfs dependency. 2014-10-11 06:42:18 +00:00
smbfs.h Change smbfs from hashlist to vcache. 2014-12-21 10:48:53 +00:00
smbfs_io.c
smbfs_kq.c Use C99 initializer for filterops 2017-10-25 08:12:37 +00:00
smbfs_node.c When a vnode has an invalid type because the type changed on the 2017-05-28 16:36:37 +00:00
smbfs_node.h When a vnode has an invalid type because the type changed on the 2017-05-28 16:36:37 +00:00
smbfs_smb.c Change smbfs from hashlist to vcache. 2014-12-21 10:48:53 +00:00
smbfs_subr.c make this compile again. 2014-11-17 02:23:33 +00:00
smbfs_subr.h Adjust smbfs/netsmb for filenames byte length changes that come as 2014-11-15 18:52:44 +00:00
smbfs_vfsops.c KASSERT(mutex_owned(vp->v_interlock)) in vnode iterator selector. 2017-04-01 19:35:56 +00:00
smbfs_vnops.c When a vnode has an invalid type because the type changed on the 2017-05-28 16:36:37 +00:00