View | Details | Raw Unified | Return to bug 196483
Collapse All | Expand All

(-)b/sys/kern/vfs_mount.c (-2 / +2 lines)
Lines 1611-1617 vfs_scanopt(struct vfsoptlist *opts, const char *name, const char *fmt, ...) Link Here
1611
}
1611
}
1612
1612
1613
int
1613
int
1614
vfs_setopt(struct vfsoptlist *opts, const char *name, void *value, int len)
1614
vfs_setopt(struct vfsoptlist *opts, const char *name, void *value, size_t len)
1615
{
1615
{
1616
	struct vfsopt *opt;
1616
	struct vfsopt *opt;
1617
1617
Lines 1632-1638 vfs_setopt(struct vfsoptlist *opts, const char *name, void *value, int len) Link Here
1632
}
1632
}
1633
1633
1634
int
1634
int
1635
vfs_setopt_part(struct vfsoptlist *opts, const char *name, void *value, int len)
1635
vfs_setopt_part(struct vfsoptlist *opts, const char *name, void *value, size_t len)
1636
{
1636
{
1637
	struct vfsopt *opt;
1637
	struct vfsopt *opt;
1638
1638
(-)b/sys/sys/mount.h (-3 / +2 lines)
Lines 856-864 int vfs_filteropt(struct vfsoptlist *, const char **legal); Link Here
856
void	vfs_opterror(struct vfsoptlist *opts, const char *fmt, ...);
856
void	vfs_opterror(struct vfsoptlist *opts, const char *fmt, ...);
857
int	vfs_scanopt(struct vfsoptlist *opts, const char *name, const char *fmt, ...);
857
int	vfs_scanopt(struct vfsoptlist *opts, const char *name, const char *fmt, ...);
858
int	vfs_setopt(struct vfsoptlist *opts, const char *name, void *value,
858
int	vfs_setopt(struct vfsoptlist *opts, const char *name, void *value,
859
	    int len);
859
	    size_t len);
860
int	vfs_setopt_part(struct vfsoptlist *opts, const char *name, void *value,
860
int	vfs_setopt_part(struct vfsoptlist *opts, const char *name, void *value,
861
	    int len);
861
	    size_t len);
862
int	vfs_setopts(struct vfsoptlist *opts, const char *name,
862
int	vfs_setopts(struct vfsoptlist *opts, const char *name,
863
	    const char *value);
863
	    const char *value);
864
int	vfs_setpublicfs			    /* set publicly exported fs */
864
int	vfs_setpublicfs			    /* set publicly exported fs */
865
- 

Return to bug 196483