Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 18 Apr 2023 18:31:37 GMT
From:      John Baldwin <jhb@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org
Subject:   git: 2541accb7973 - main - rpc.lockd: Use C89 function definitions.
Message-ID:  <202304181831.33IIVbgU028417@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by jhb:

URL: https://cgit.FreeBSD.org/src/commit/?id=2541accb79733355bc255c71796a92a219f1cb1f

commit 2541accb79733355bc255c71796a92a219f1cb1f
Author:     John Baldwin <jhb@FreeBSD.org>
AuthorDate: 2023-04-18 18:28:24 +0000
Commit:     John Baldwin <jhb@FreeBSD.org>
CommitDate: 2023-04-18 18:28:24 +0000

    rpc.lockd: Use C89 function definitions.
    
    Reviewed by:    emaste
    Differential Revision:  https://reviews.freebsd.org/D39530
---
 usr.sbin/rpc.lockd/lockd_lock.c | 52 +++++++++++++++--------------------------
 1 file changed, 19 insertions(+), 33 deletions(-)

diff --git a/usr.sbin/rpc.lockd/lockd_lock.c b/usr.sbin/rpc.lockd/lockd_lock.c
index 1fc4ce23597a..66ac74bf0cd2 100644
--- a/usr.sbin/rpc.lockd/lockd_lock.c
+++ b/usr.sbin/rpc.lockd/lockd_lock.c
@@ -235,13 +235,9 @@ debuglog(char const *fmt, ...)
 }
 
 void
-dump_static_object(object, size_object, hbuff, size_hbuff, cbuff, size_cbuff)
-	const unsigned char *object;
-	const int size_object;
-	unsigned char *hbuff;
-	const int size_hbuff;
-	unsigned char *cbuff;
-	const int size_cbuff;
+dump_static_object(const unsigned char *object, const int size_object,
+    unsigned char *hbuff, const int size_hbuff, unsigned char *cbuff,
+    const int size_cbuff)
 {
 	int i, objectsize;
 
@@ -358,10 +354,8 @@ dump_filelock(const struct file_lock *fl)
 }
 
 void
-copy_nlm4_lock_to_nlm4_holder(src, exclusive, dest)
-	const struct nlm4_lock *src;
-	const bool_t exclusive;
-	struct nlm4_holder *dest;
+copy_nlm4_lock_to_nlm4_holder(const struct nlm4_lock *src,
+    const bool_t exclusive, struct nlm4_holder *dest)
 {
 
 	dest->exclusive = exclusive;
@@ -465,8 +459,8 @@ deallocate_file_lock(struct file_lock *fl)
  * overlap.
  */
 int
-regions_overlap(start1, len1, start2, len2)
-	const u_int64_t start1, len1, start2, len2;
+regions_overlap(const u_int64_t start1, const u_int64_t len1,
+    const u_int64_t start2, const u_int64_t len2)
 {
 	u_int64_t d1,d2,d3,d4;
 	enum split_status result;
@@ -494,10 +488,9 @@ regions_overlap(start1, len1, start2, len2)
  * XXX: This DESPERATELY needs a regression test.
  */
 enum split_status
-region_compare(starte, lene, startu, lenu,
-    start1, len1, start2, len2)
-	const u_int64_t starte, lene, startu, lenu;
-	u_int64_t *start1, *len1, *start2, *len2;
+region_compare(const u_int64_t starte, const u_int64_t lene,
+    const u_int64_t startu, const u_int64_t lenu, u_int64_t *start1,
+    u_int64_t *len1, u_int64_t *start2, u_int64_t *len2)
 {
 	/*
 	 * Please pay attention to the sequential exclusions
@@ -680,8 +673,7 @@ same_netobj(const netobj *n0, const netobj *n1)
  * same_filelock_identity: Compares the appropriate bits of a file_lock
  */
 int
-same_filelock_identity(fl0, fl1)
-	const struct file_lock *fl0, *fl1;
+same_filelock_identity(const struct file_lock *fl0, const struct file_lock *fl1)
 {
 	int retval;
 
@@ -919,9 +911,9 @@ delete_nfslock(struct file_lock *fl)
 }
 
 enum split_status
-split_nfslock(exist_lock, unlock_lock, left_lock, right_lock)
-	const struct file_lock *exist_lock, *unlock_lock;
-	struct file_lock **left_lock, **right_lock;
+split_nfslock(const struct file_lock *exist_lock,
+    const struct file_lock *unlock_lock, struct file_lock **left_lock,
+    struct file_lock **right_lock)
 {
 	u_int64_t start1, len1, start2, len2;
 	enum split_status spstatus;
@@ -965,11 +957,8 @@ split_nfslock(exist_lock, unlock_lock, left_lock, right_lock)
 }
 
 enum nfslock_status
-unlock_nfslock(fl, released_lock, left_lock, right_lock)
-	const struct file_lock *fl;
-	struct file_lock **released_lock;
-	struct file_lock **left_lock;
-	struct file_lock **right_lock;
+unlock_nfslock(const struct file_lock *fl, struct file_lock **released_lock,
+    struct file_lock **left_lock, struct file_lock **right_lock)
 {
 	struct file_lock *mfl; /* Matching file lock */
 	enum nfslock_status retval;
@@ -1164,9 +1153,8 @@ unlock_hwlock(const struct file_lock *fl)
 }
 
 enum hwlock_status
-test_hwlock(fl, conflicting_fl)
-	const struct file_lock *fl __unused;
-	struct file_lock **conflicting_fl __unused;
+test_hwlock(const struct file_lock *fl __unused,
+    struct file_lock **conflicting_fl __unused)
 {
 
 	/*
@@ -2176,9 +2164,7 @@ notify(const char *hostname, const int state)
 }
 
 void
-send_granted(fl, opcode)
-	struct file_lock *fl;
-	int opcode __unused;
+send_granted(struct file_lock *fl, int opcode __unused)
 {
 	CLIENT *cli;
 	static char dummy;



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202304181831.33IIVbgU028417>