Mark functions as static

Mark functions used only in the same translation unit as static. This
only includes functions that do not have a prototype in a header file
either.

Reviewed-by: Ryan Moeller <ryan@iXsystems.com>
Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov>
Signed-off-by: Arvind Sankar <nivedita@alum.mit.edu>
Closes #10470
This commit is contained in:
Arvind Sankar
2020-06-15 14:30:37 -04:00
committed by Brian Behlendorf
parent 1fa5c7af33
commit 65c7cc49bf
62 changed files with 157 additions and 176 deletions
+1 -1
View File
@@ -46,7 +46,7 @@ static void usage(char *);
/*
* psudo-randomize the buffer
*/
void randomize_buffer(int block_size) {
static void randomize_buffer(int block_size) {
int i;
char rnd = rand() & 0xff;
for (i = 0; i < block_size; i++)
@@ -918,7 +918,7 @@ enum zfs_ioc_ref {
* Canonical reference check of /dev/zfs ioctl numbers.
* These cannot change and new ioctl numbers must be appended.
*/
boolean_t
static boolean_t
validate_ioc_values(void)
{
boolean_t result = B_TRUE;
@@ -28,7 +28,7 @@
#define BSZ 64
void
static void
fill_random(char *buf, int len)
{
int i;