PROCFS: add num_to_str() to speed up /proc/stat
/include/linux/seq_file.h
blob:03c0232b4169dfccf378be1420fdcec29b9c134b -> blob:0ca31f888d8869995c7ff0b50109a10f97e6454d
--- include/linux/seq_file.h
+++ include/linux/seq_file.h
@@ -121,9 +121,10 @@ int single_release(struct inode *, struc
void *__seq_open_private(struct file *, const struct seq_operations *, int);
int seq_open_private(struct file *, const struct seq_operations *, int);
int seq_release_private(struct inode *, struct file *);
+int seq_put_decimal_ull(struct seq_file *m, char delimiter,
+ unsigned long long num);
#define SEQ_START_TOKEN ((void *)1)
-
/*
* Helpers for iteration over list_head-s in seq_files
*/