diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2024-09-23 10:49:28 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2024-09-23 10:49:28 -0700 |
commit | d0359e4ca0f26aaf3118124dfb562e3b3dca1c06 (patch) | |
tree | aaca20240d891872d7f2bb698b51caa6b825071d /include | |
parent | b3f391fddf3cfaadda59ec8da8fd17f4520bbf42 (diff) | |
parent | 116249b12939a8ec13eb50f36b6fffd1c719a9ed (diff) | |
download | lwn-d0359e4ca0f26aaf3118124dfb562e3b3dca1c06.tar.gz lwn-d0359e4ca0f26aaf3118124dfb562e3b3dca1c06.zip |
Merge tag 'fs_for_v6.12-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/jack/linux-fs
Pull quota and isofs updates from Jan Kara:
"A few small cleanups in quota and isofs"
* tag 'fs_for_v6.12-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/jack/linux-fs:
isofs: Annotate struct SL_component with __counted_by()
quota: remove unnecessary error code translation in dquot_quota_enable
quota: remove redundant return at end of void function
quota: remove unneeded return value of register_quota_format
quota: avoid missing put_quota_format when DQUOT_SUSPENDED is passed
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/quota.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/quota.h b/include/linux/quota.h index 07071e64abf3..89a0d83ddad0 100644 --- a/include/linux/quota.h +++ b/include/linux/quota.h @@ -526,7 +526,7 @@ struct quota_info { const struct quota_format_ops *ops[MAXQUOTAS]; /* Operations for each type */ }; -int register_quota_format(struct quota_format_type *fmt); +void register_quota_format(struct quota_format_type *fmt); void unregister_quota_format(struct quota_format_type *fmt); struct quota_module_name { |