mirror of
https://github.com/torvalds/linux.git
synced 2024-11-15 08:31:55 +00:00
521187439a
Added F2FS_IOSTAT config option to support getting IO statistics through sysfs and printing out periodic IO statistics tracepoint events and moved I/O statistics related codes into separate files for better maintenance. Signed-off-by: Daeho Jeong <daehojeong@google.com> Reviewed-by: Chao Yu <chao@kernel.org> [Jaegeuk Kim: set default=y] Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
28 lines
913 B
C
28 lines
913 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* Copyright 2021 Google LLC
|
|
* Author: Daeho Jeong <daehojeong@google.com>
|
|
*/
|
|
#ifndef __F2FS_IOSTAT_H__
|
|
#define __F2FS_IOSTAT_H__
|
|
|
|
#ifdef CONFIG_F2FS_IOSTAT
|
|
|
|
#define DEFAULT_IOSTAT_PERIOD_MS 3000
|
|
#define MIN_IOSTAT_PERIOD_MS 100
|
|
/* maximum period of iostat tracing is 1 day */
|
|
#define MAX_IOSTAT_PERIOD_MS 8640000
|
|
|
|
extern int __maybe_unused iostat_info_seq_show(struct seq_file *seq,
|
|
void *offset);
|
|
extern void f2fs_reset_iostat(struct f2fs_sb_info *sbi);
|
|
extern void f2fs_update_iostat(struct f2fs_sb_info *sbi,
|
|
enum iostat_type type, unsigned long long io_bytes);
|
|
extern int f2fs_init_iostat(struct f2fs_sb_info *sbi);
|
|
#else
|
|
static inline void f2fs_update_iostat(struct f2fs_sb_info *sbi,
|
|
enum iostat_type type, unsigned long long io_bytes) {}
|
|
static inline int f2fs_init_iostat(struct f2fs_sb_info *sbi) { return 0; }
|
|
#endif
|
|
#endif /* __F2FS_IOSTAT_H__ */
|