posix: Change data type to dump nr_files to statedump
Problem: In commit 2261e444a47ffffb5d64305efceee1d5a734cd75 wrong data type of nr_files was changed to dump nr_files to statedump so build is failing on 32bit environment Solution: Change data type to avoid errors Change-Id: Ifb4b19feda6e0e56d110b23351e7a0efd5bfa29b fixes: bz#1657607 Signed-off-by: Mohit Agrawal <moagrawal@redhat.com>
This commit is contained in:
parent
832f60d41d
commit
86d4eac6c6
@ -128,7 +128,7 @@ posix_priv(xlator_t *this)
|
||||
gf_proc_dump_write("max_read", "%" PRId64, GF_ATOMIC_GET(priv->read_value));
|
||||
gf_proc_dump_write("max_write", "%" PRId64,
|
||||
GF_ATOMIC_GET(priv->write_value));
|
||||
gf_proc_dump_write("nr_files", "%ld", GF_ATOMIC_GET(priv->nr_files));
|
||||
gf_proc_dump_write("nr_files", "%" PRId64, GF_ATOMIC_GET(priv->nr_files));
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user