mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 08:43:19 -04:00
Fixed some style bugs in the removal of __P(()). Continuation lines
were not outdented to preserve non-KNF lining up of code with parentheses. Switch to KNF formatting.
This commit is contained in:
parent
81b60c7395
commit
b76d0b3217
2 changed files with 14 additions and 14 deletions
|
|
@ -81,18 +81,18 @@ static int fc_lmdistance[LMMAX];/* counters for how far off the last
|
|||
static int fc_largedistance; /* off by more than LMMAX */
|
||||
|
||||
static int chainalloc(struct msdosfsmount *pmp, u_long start,
|
||||
u_long count, u_long fillwith,
|
||||
u_long *retcluster, u_long *got);
|
||||
u_long count, u_long fillwith, u_long *retcluster,
|
||||
u_long *got);
|
||||
static int chainlength(struct msdosfsmount *pmp, u_long start,
|
||||
u_long count);
|
||||
static void fatblock(struct msdosfsmount *pmp, u_long ofs,
|
||||
u_long *bnp, u_long *sizep, u_long *bop);
|
||||
static int fatchain(struct msdosfsmount *pmp, u_long start,
|
||||
u_long count, u_long fillwith);
|
||||
static void fc_lookup(struct denode *dep, u_long findcn,
|
||||
u_long *frcnp, u_long *fsrcnp);
|
||||
u_long count);
|
||||
static void fatblock(struct msdosfsmount *pmp, u_long ofs, u_long *bnp,
|
||||
u_long *sizep, u_long *bop);
|
||||
static int fatchain(struct msdosfsmount *pmp, u_long start, u_long count,
|
||||
u_long fillwith);
|
||||
static void fc_lookup(struct denode *dep, u_long findcn, u_long *frcnp,
|
||||
u_long *fsrcnp);
|
||||
static void updatefats(struct msdosfsmount *pmp, struct buf *bp,
|
||||
u_long fatbn);
|
||||
u_long fatbn);
|
||||
static __inline void
|
||||
usemap_alloc(struct msdosfsmount *pmp, u_long cn);
|
||||
static __inline void
|
||||
|
|
|
|||
|
|
@ -88,15 +88,15 @@ static MALLOC_DEFINE(M_MSDOSFSFAT, "MSDOSFS FAT", "MSDOSFS file allocation table
|
|||
|
||||
static int update_mp(struct mount *mp, struct msdosfs_args *argp);
|
||||
static int mountmsdosfs(struct vnode *devvp, struct mount *mp,
|
||||
struct thread *td, struct msdosfs_args *argp);
|
||||
struct thread *td, struct msdosfs_args *argp);
|
||||
static int msdosfs_fhtovp(struct mount *, struct fid *, struct vnode **);
|
||||
static int msdosfs_mount(struct mount *, char *, caddr_t,
|
||||
struct nameidata *, struct thread *);
|
||||
struct nameidata *, struct thread *);
|
||||
static int msdosfs_root(struct mount *, struct vnode **);
|
||||
static int msdosfs_statfs(struct mount *, struct statfs *,
|
||||
struct thread *);
|
||||
struct thread *);
|
||||
static int msdosfs_sync(struct mount *, int, struct ucred *,
|
||||
struct thread *);
|
||||
struct thread *);
|
||||
static int msdosfs_unmount(struct mount *, int, struct thread *);
|
||||
static int msdosfs_vptofh(struct vnode *, struct fid *);
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue