diff options
author | Andreas Gruenbacher <agruenba@redhat.com> | 2023-10-09 18:49:31 +0200 |
---|---|---|
committer | Andreas Gruenbacher <agruenba@redhat.com> | 2023-11-06 01:51:26 +0100 |
commit | 0b2355fe91ac3756a9e29c8b833ba33f9affb520 (patch) | |
tree | cc2adbe599121597f0565e3ecd69aa339b2930ae /fs/gfs2/aops.h | |
parent | 062fb903895a035ed382a0d3f9b9d459b2718217 (diff) | |
download | lwn-0b2355fe91ac3756a9e29c8b833ba33f9affb520.tar.gz lwn-0b2355fe91ac3756a9e29c8b833ba33f9affb520.zip |
gfs2: No longer use 'extern' in function declarations
For non-static function declarations, external linkage is implied and
the 'extern' keyword isn't needed. Some static checkers complain about
the overuse of 'extern', so clean up all the function declarations.
In addition, remove 'extern' from the definition of
free_local_statfs_inodes(); it isn't needed there, either.
Signed-off-by: Andreas Gruenbacher <agruenba@redhat.com>
Diffstat (limited to 'fs/gfs2/aops.h')
-rw-r--r-- | fs/gfs2/aops.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/fs/gfs2/aops.h b/fs/gfs2/aops.h index f08322ef41cf..a10c4334d248 100644 --- a/fs/gfs2/aops.h +++ b/fs/gfs2/aops.h @@ -8,8 +8,8 @@ #include "incore.h" -extern void adjust_fs_space(struct inode *inode); -extern void gfs2_trans_add_databufs(struct gfs2_inode *ip, struct folio *folio, - size_t from, size_t len); +void adjust_fs_space(struct inode *inode); +void gfs2_trans_add_databufs(struct gfs2_inode *ip, struct folio *folio, + size_t from, size_t len); #endif /* __AOPS_DOT_H__ */ |