diff options
author | Joe Perches <joe@perches.com> | 2012-11-29 08:37:03 -0600 |
---|---|---|
committer | Alex Elder <elder@inktank.com> | 2012-12-13 08:13:07 -0600 |
commit | d2cc4dde9206aa2c7fb237aa689d3277cc070547 (patch) | |
tree | 8e0c48be01ac4bd07c19a526a08fbb30c6bac11b /include/linux | |
parent | 83aff95eb9d60aff5497e9f44a2ae906b86d8e88 (diff) | |
download | linux-stable-d2cc4dde9206aa2c7fb237aa689d3277cc070547.tar.gz linux-stable-d2cc4dde9206aa2c7fb237aa689d3277cc070547.tar.bz2 linux-stable-d2cc4dde9206aa2c7fb237aa689d3277cc070547.zip |
bdi_register: add __printf verification, fix arg mismatch
__printf is useful to verify format and arguments.
Signed-off-by: Joe Perches <joe@perches.com>
Reviewed-by: Alex Elder <elder@inktank.com>
Diffstat (limited to 'include/linux')
-rw-r--r-- | include/linux/backing-dev.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/backing-dev.h b/include/linux/backing-dev.h index 2a9a9abc9126..12731a19ef06 100644 --- a/include/linux/backing-dev.h +++ b/include/linux/backing-dev.h @@ -114,6 +114,7 @@ struct backing_dev_info { int bdi_init(struct backing_dev_info *bdi); void bdi_destroy(struct backing_dev_info *bdi); +__printf(3, 4) int bdi_register(struct backing_dev_info *bdi, struct device *parent, const char *fmt, ...); int bdi_register_dev(struct backing_dev_info *bdi, dev_t dev); |