Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
raspberrypi-kernel
提交
f975d6bc
R
raspberrypi-kernel
项目概览
openeuler
/
raspberrypi-kernel
通知
13
Star
1
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
R
raspberrypi-kernel
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
f975d6bc
编写于
9月 09, 2011
作者:
T
Theodore Ts'o
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
ext4: teach ext4_statfs() to deal with clusters if bigalloc is enabled
Signed-off-by:
N
"Theodore Ts'o"
<
tytso@mit.edu
>
上级
24aaa8ef
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
24 addition
and
13 deletion
+24
-13
fs/ext4/super.c
fs/ext4/super.c
+24
-13
未找到文件。
fs/ext4/super.c
浏览文件 @
f975d6bc
...
...
@@ -4580,16 +4580,34 @@ static int ext4_remount(struct super_block *sb, int *flags, char *data)
return
err
;
}
/*
* Note: calculating the overhead so we can be compatible with
* historical BSD practice is quite difficult in the face of
* clusters/bigalloc. This is because multiple metadata blocks from
* different block group can end up in the same allocation cluster.
* Calculating the exact overhead in the face of clustered allocation
* requires either O(all block bitmaps) in memory or O(number of block
* groups**2) in time. We will still calculate the superblock for
* older file systems --- and if we come across with a bigalloc file
* system with zero in s_overhead_clusters the estimate will be close to
* correct especially for very large cluster sizes --- but for newer
* file systems, it's better to calculate this figure once at mkfs
* time, and store it in the superblock. If the superblock value is
* present (even for non-bigalloc file systems), we will use it.
*/
static
int
ext4_statfs
(
struct
dentry
*
dentry
,
struct
kstatfs
*
buf
)
{
struct
super_block
*
sb
=
dentry
->
d_sb
;
struct
ext4_sb_info
*
sbi
=
EXT4_SB
(
sb
);
struct
ext4_super_block
*
es
=
sbi
->
s_es
;
struct
ext4_group_desc
*
gdp
;
u64
fsid
;
s64
bfree
;
if
(
test_opt
(
sb
,
MINIX_DF
))
{
sbi
->
s_overhead_last
=
0
;
}
else
if
(
es
->
s_overhead_clusters
)
{
sbi
->
s_overhead_last
=
le32_to_cpu
(
es
->
s_overhead_clusters
);
}
else
if
(
sbi
->
s_blocks_last
!=
ext4_blocks_count
(
es
))
{
ext4_group_t
i
,
ngroups
=
ext4_get_groups_count
(
sb
);
ext4_fsblk_t
overhead
=
0
;
...
...
@@ -4604,24 +4622,16 @@ static int ext4_statfs(struct dentry *dentry, struct kstatfs *buf)
* All of the blocks before first_data_block are
* overhead
*/
overhead
=
le32_to_cpu
(
es
->
s_first_data_block
);
overhead
=
EXT4_B2C
(
sbi
,
le32_to_cpu
(
es
->
s_first_data_block
)
);
/*
* Add the overhead attributed to the superblock and
* block group descriptors. If the sparse superblocks
* feature is turned on, then not all groups have this.
* Add the overhead found in each block group
*/
for
(
i
=
0
;
i
<
ngroups
;
i
++
)
{
overhead
+=
ext4_bg_has_super
(
sb
,
i
)
+
ext4_bg_num_gdb
(
sb
,
i
);
gdp
=
ext4_get_group_desc
(
sb
,
i
,
NULL
);
overhead
+=
ext4_num_overhead_clusters
(
sb
,
i
,
gdp
);
cond_resched
();
}
/*
* Every block group has an inode bitmap, a block
* bitmap, and an inode table.
*/
overhead
+=
ngroups
*
(
2
+
sbi
->
s_itb_per_group
);
sbi
->
s_overhead_last
=
overhead
;
smp_wmb
();
sbi
->
s_blocks_last
=
ext4_blocks_count
(
es
);
...
...
@@ -4629,7 +4639,8 @@ static int ext4_statfs(struct dentry *dentry, struct kstatfs *buf)
buf
->
f_type
=
EXT4_SUPER_MAGIC
;
buf
->
f_bsize
=
sb
->
s_blocksize
;
buf
->
f_blocks
=
ext4_blocks_count
(
es
)
-
sbi
->
s_overhead_last
;
buf
->
f_blocks
=
(
ext4_blocks_count
(
es
)
-
EXT4_C2B
(
sbi
,
sbi
->
s_overhead_last
));
bfree
=
percpu_counter_sum_positive
(
&
sbi
->
s_freeclusters_counter
)
-
percpu_counter_sum_positive
(
&
sbi
->
s_dirtyclusters_counter
);
/* prevent underflow in case that few free space is available */
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录