diff options
author | Flavio Cruz <flaviocruz@gmail.com> | 2023-03-18 23:18:11 -0400 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2023-04-03 00:22:08 +0200 |
commit | 0209b2c932994e9ca55d39d98a83ea02aacd1332 (patch) | |
tree | f8778cca656943ee36193b49a7727557ba82319b /fatfs | |
parent | 6f3d68bc8b46bdc7b0f5f43918744d99746672a2 (diff) | |
download | hurd-0209b2c932994e9ca55d39d98a83ea02aacd1332.tar.gz hurd-0209b2c932994e9ca55d39d98a83ea02aacd1332.tar.bz2 hurd-0209b2c932994e9ca55d39d98a83ea02aacd1332.zip |
Modernize code by removing use of old style definitions.
Also add -Werror=old-style-definition to enforce new code.
Message-Id: <ZBZ+8xf7GHy2RT/h@jupiter.tail36e24.ts.net>
Diffstat (limited to 'fatfs')
-rw-r--r-- | fatfs/inode.c | 6 | ||||
-rw-r--r-- | fatfs/main.c | 4 | ||||
-rw-r--r-- | fatfs/pager.c | 14 |
3 files changed, 12 insertions, 12 deletions
diff --git a/fatfs/inode.c b/fatfs/inode.c index e2838af8..cb1ca423 100644 --- a/fatfs/inode.c +++ b/fatfs/inode.c @@ -409,7 +409,7 @@ diskfs_node_reload (struct node *node) /* Write all active disknodes into the ext2_inode pager. */ void -write_all_disknodes () +write_all_disknodes (void) { error_t write_one_disknode (struct node *node) { @@ -426,7 +426,7 @@ write_all_disknodes () void -refresh_node_stats () +refresh_node_stats (void) { error_t refresh_one_node_stat (struct node *node) { @@ -485,7 +485,7 @@ diskfs_get_translator (struct node *node, char **namep, u_int *namelen) } void -diskfs_shutdown_soft_ports () +diskfs_shutdown_soft_ports (void) { /* Should initiate termination of internally held pager ports (the only things that should be soft) XXX */ diff --git a/fatfs/main.c b/fatfs/main.c index ed8cf910..6b03b20e 100644 --- a/fatfs/main.c +++ b/fatfs/main.c @@ -139,7 +139,7 @@ diskfs_append_args (char **argz, unsigned *argz_len) /* Fetch the root node. */ static void -fetch_root () +fetch_root (void) { error_t err; ino_t inum; @@ -248,7 +248,7 @@ main (int argc, char **argv) /* Nothing to do for read-only medium. */ error_t -diskfs_reload_global_state () +diskfs_reload_global_state (void) { return 0; } diff --git a/fatfs/pager.c b/fatfs/pager.c index 9a8b8d6c..36e7012c 100644 --- a/fatfs/pager.c +++ b/fatfs/pager.c @@ -54,7 +54,7 @@ static int num_free_page_bufs = 0; /* Returns a single page page-aligned buffer. */ static void * -get_page_buf () +get_page_buf (void) { void *buf; @@ -221,7 +221,7 @@ file_pager_read_huge_page (struct node *node, vm_offset_t page, pointed to by BUF (allocating it if necessary) at offset OFFS. OFFS in adjusted by the amount read, and NUM_PENDING_CLUSTERS is zeroed. Any read error is returned. */ - error_t do_pending_reads () + error_t do_pending_reads (void) { if (num_pending_clusters > 0) { @@ -923,7 +923,7 @@ diskfs_get_filemap_pager_struct (struct node *node) /* Shutdown all the pagers (except the disk pager). */ void -diskfs_shutdown_pager () +diskfs_shutdown_pager (void) { error_t shutdown_one (void *v_p) { @@ -959,7 +959,7 @@ diskfs_sync_everything (int wait) } static void -disable_caching () +disable_caching (void) { error_t block_cache (void *arg) { @@ -976,7 +976,7 @@ disable_caching () } static void -enable_caching () +enable_caching (void) { error_t enable_cache (void *arg) { @@ -1007,7 +1007,7 @@ enable_caching () /* Tell diskfs if there are pagers exported, and if none, then prevent any new ones from showing up. */ int -diskfs_pager_users () +diskfs_pager_users (void) { int npagers = ports_count_bucket (file_pager_bucket); @@ -1039,7 +1039,7 @@ diskfs_pager_users () /* Return the bitwise or of the maximum prot parameter (the second arg to diskfs_get_filemap) for all active user pagers. */ vm_prot_t -diskfs_max_user_pager_prot () +diskfs_max_user_pager_prot (void) { vm_prot_t max_prot = 0; int npagers = ports_count_bucket (file_pager_bucket); |