From 012ffcc2c6dd2455436f1a9bacfa2895081386b7 Mon Sep 17 00:00:00 2001 From: kib Date: Wed, 18 May 2016 11:51:17 +0000 Subject: [PATCH] MFC r299408: Style: wrap long lines. git-svn-id: svn://svn.freebsd.org/base/stable/10@300139 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f --- sys/kern/vfs_hash.c | 6 ++++-- sys/sys/vnode.h | 6 ++++-- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/sys/kern/vfs_hash.c b/sys/kern/vfs_hash.c index edcda6be0..b7029236d 100644 --- a/sys/kern/vfs_hash.c +++ b/sys/kern/vfs_hash.c @@ -69,7 +69,8 @@ vfs_hash_bucket(const struct mount *mp, u_int hash) } int -vfs_hash_get(const struct mount *mp, u_int hash, int flags, struct thread *td, struct vnode **vpp, vfs_hash_cmp_t *fn, void *arg) +vfs_hash_get(const struct mount *mp, u_int hash, int flags, struct thread *td, + struct vnode **vpp, vfs_hash_cmp_t *fn, void *arg) { struct vnode *vp; int error; @@ -111,7 +112,8 @@ vfs_hash_remove(struct vnode *vp) } int -vfs_hash_insert(struct vnode *vp, u_int hash, int flags, struct thread *td, struct vnode **vpp, vfs_hash_cmp_t *fn, void *arg) +vfs_hash_insert(struct vnode *vp, u_int hash, int flags, struct thread *td, + struct vnode **vpp, vfs_hash_cmp_t *fn, void *arg) { struct vnode *vp2; int error; diff --git a/sys/sys/vnode.h b/sys/sys/vnode.h index 2a32499e7..ea75d73a0 100644 --- a/sys/sys/vnode.h +++ b/sys/sys/vnode.h @@ -844,9 +844,11 @@ int fifo_printinfo(struct vnode *); typedef int vfs_hash_cmp_t(struct vnode *vp, void *arg); void vfs_hash_changesize(int newhashsize); -int vfs_hash_get(const struct mount *mp, u_int hash, int flags, struct thread *td, struct vnode **vpp, vfs_hash_cmp_t *fn, void *arg); +int vfs_hash_get(const struct mount *mp, u_int hash, int flags, + struct thread *td, struct vnode **vpp, vfs_hash_cmp_t *fn, void *arg); u_int vfs_hash_index(struct vnode *vp); -int vfs_hash_insert(struct vnode *vp, u_int hash, int flags, struct thread *td, struct vnode **vpp, vfs_hash_cmp_t *fn, void *arg); +int vfs_hash_insert(struct vnode *vp, u_int hash, int flags, struct thread *td, + struct vnode **vpp, vfs_hash_cmp_t *fn, void *arg); void vfs_hash_rehash(struct vnode *vp, u_int hash); void vfs_hash_remove(struct vnode *vp); -- 2.45.0