Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
09f3297a
Commit
09f3297a
authored
Jul 24, 2018
by
Kent Overstreet
Committed by
Kent Overstreet
Oct 22, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bcachefs: kill s_alloc, use bch_data_type
Signed-off-by:
Kent Overstreet
<
kent.overstreet@linux.dev
>
parent
a7c7a309
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
44 additions
and
70 deletions
+44
-70
fs/bcachefs/btree_update_interior.c
fs/bcachefs/btree_update_interior.c
+1
-1
fs/bcachefs/buckets.c
fs/bcachefs/buckets.c
+15
-15
fs/bcachefs/buckets.h
fs/bcachefs/buckets.h
+0
-12
fs/bcachefs/buckets_types.h
fs/bcachefs/buckets_types.h
+2
-8
fs/bcachefs/chardev.c
fs/bcachefs/chardev.c
+2
-3
fs/bcachefs/sysfs.c
fs/bcachefs/sysfs.c
+24
-31
No files found.
fs/bcachefs/btree_update_interior.c
View file @
09f3297a
...
...
@@ -184,7 +184,7 @@ static void bch2_btree_node_free_index(struct btree_update *as, struct btree *b,
*/
replicas
=
bch2_extent_nr_dirty_ptrs
(
k
);
if
(
replicas
)
stats
->
s
[
replicas
-
1
].
data
[
S_META
]
-=
c
->
opts
.
btree_node_size
;
stats
->
s
[
replicas
-
1
].
data
[
BCH_DATA_BTREE
]
-=
c
->
opts
.
btree_node_size
;
/*
* We're dropping @k from the btree, but it's still live until the
...
...
fs/bcachefs/buckets.c
View file @
09f3297a
...
...
@@ -82,16 +82,14 @@ static void bch2_fs_stats_verify(struct bch_fs *c)
{
struct
bch_fs_usage
stats
=
__bch2_fs_usage_read
(
c
);
unsigned
i
;
unsigned
i
,
j
;
for
(
i
=
0
;
i
<
ARRAY_SIZE
(
stats
.
s
);
i
++
)
{
if
((
s64
)
stats
.
s
[
i
].
data
[
S_META
]
<
0
)
panic
(
"replicas %u meta underflow: %lli
\n
"
,
i
+
1
,
stats
.
s
[
i
].
data
[
S_META
]);
if
((
s64
)
stats
.
s
[
i
].
data
[
S_DIRTY
]
<
0
)
panic
(
"replicas %u dirty underflow: %lli
\n
"
,
i
+
1
,
stats
.
s
[
i
].
data
[
S_DIRTY
]);
for
(
j
=
0
;
j
<
ARRAY_SIZE
(
stats
.
s
[
i
].
data
);
j
++
)
if
((
s64
)
stats
.
s
[
i
].
data
[
j
]
<
0
)
panic
(
"replicas %u %s underflow: %lli
\n
"
,
i
+
1
,
bch_data_types
[
j
],
stats
.
s
[
i
].
data
[
j
]);
if
((
s64
)
stats
.
s
[
i
].
persistent_reserved
<
0
)
panic
(
"replicas %u reserved underflow: %lli
\n
"
,
...
...
@@ -247,12 +245,16 @@ struct fs_usage_sum {
static
inline
struct
fs_usage_sum
__fs_usage_sum
(
struct
bch_fs_usage
stats
)
{
struct
fs_usage_sum
sum
=
{
0
};
unsigned
i
;
unsigned
i
,
j
;
for
(
i
=
0
;
i
<
ARRAY_SIZE
(
stats
.
s
);
i
++
)
{
sum
.
data
+=
(
stats
.
s
[
i
].
data
[
S_META
]
+
stats
.
s
[
i
].
data
[
S_DIRTY
])
*
(
i
+
1
);
sum
.
reserved
+=
stats
.
s
[
i
].
persistent_reserved
*
(
i
+
1
);
u64
a
=
0
;
for
(
j
=
0
;
j
<
ARRAY_SIZE
(
stats
.
s
[
i
].
data
);
j
++
)
a
+=
stats
.
s
[
i
].
data
[
j
];
sum
.
data
+=
a
*
(
i
+
1
);
sum
.
reserved
+=
stats
.
s
[
i
].
persistent_reserved
*
(
i
+
1
);
}
sum
.
reserved
+=
stats
.
online_reserved
;
...
...
@@ -641,8 +643,6 @@ void bch2_mark_key(struct bch_fs *c, struct bkey_s_c k,
struct
bkey_s_c_extent
e
=
bkey_s_c_to_extent
(
k
);
const
struct
bch_extent_ptr
*
ptr
;
struct
bch_extent_crc_unpacked
crc
;
enum
s_alloc
type
=
data_type
==
BCH_DATA_USER
?
S_DIRTY
:
S_META
;
unsigned
replicas
=
0
;
BUG_ON
(
!
sectors
);
...
...
@@ -655,7 +655,7 @@ void bch2_mark_key(struct bch_fs *c, struct bkey_s_c k,
if
(
replicas
)
{
BUG_ON
(
replicas
-
1
>
ARRAY_SIZE
(
stats
->
s
));
stats
->
s
[
replicas
-
1
].
data
[
type
]
+=
sectors
;
stats
->
s
[
replicas
-
1
].
data
[
data_
type
]
+=
sectors
;
}
break
;
}
...
...
fs/bcachefs/buckets.h
View file @
09f3297a
...
...
@@ -168,18 +168,6 @@ static inline u64 dev_buckets_free(struct bch_fs *c, struct bch_dev *ca)
/* Filesystem usage: */
static
inline
enum
bch_data_type
s_alloc_to_data_type
(
enum
s_alloc
s
)
{
switch
(
s
)
{
case
S_META
:
return
BCH_DATA_BTREE
;
case
S_DIRTY
:
return
BCH_DATA_USER
;
default:
BUG
();
}
}
struct
bch_fs_usage
__bch2_fs_usage_read
(
struct
bch_fs
*
);
struct
bch_fs_usage
bch2_fs_usage_read
(
struct
bch_fs
*
);
void
bch2_fs_usage_apply
(
struct
bch_fs
*
,
struct
bch_fs_usage
*
,
...
...
fs/bcachefs/buckets_types.h
View file @
09f3297a
...
...
@@ -2,6 +2,7 @@
#ifndef _BUCKETS_TYPES_H
#define _BUCKETS_TYPES_H
#include "bcachefs_format.h"
#include "util.h"
#define BUCKET_JOURNAL_SEQ_BITS 16
...
...
@@ -59,13 +60,6 @@ struct bch_dev_usage {
u64
sectors_fragmented
;
};
/* kill, switch to bch_data_type? */
enum
s_alloc
{
S_META
,
S_DIRTY
,
S_ALLOC_NR
,
};
struct
bch_fs_usage
{
/* all fields are in units of 512 byte sectors: */
/* _uncompressed_ sectors: */
...
...
@@ -73,7 +67,7 @@ struct bch_fs_usage {
u64
available_cache
;
struct
{
u64
data
[
S_ALLOC
_NR
];
u64
data
[
BCH_DATA
_NR
];
u64
persistent_reserved
;
}
s
[
BCH_REPLICAS_MAX
];
};
...
...
fs/bcachefs/chardev.c
View file @
09f3297a
...
...
@@ -406,9 +406,8 @@ static long bch2_ioctl_usage(struct bch_fs *c,
dst
.
persistent_reserved
[
i
]
=
src
.
s
[
i
].
persistent_reserved
;
for
(
j
=
0
;
j
<
S_ALLOC_NR
;
j
++
)
dst
.
sectors
[
s_alloc_to_data_type
(
j
)][
i
]
=
src
.
s
[
i
].
data
[
j
];
for
(
j
=
0
;
j
<
BCH_DATA_NR
;
j
++
)
dst
.
sectors
[
j
][
i
]
=
src
.
s
[
i
].
data
[
j
];
}
ret
=
copy_to_user
(
&
user_arg
->
fs
,
&
dst
,
sizeof
(
dst
));
...
...
fs/bcachefs/sysfs.c
View file @
09f3297a
...
...
@@ -230,41 +230,34 @@ static size_t bch2_btree_cache_size(struct bch_fs *c)
static
ssize_t
show_fs_alloc_debug
(
struct
bch_fs
*
c
,
char
*
buf
)
{
char
*
out
=
buf
,
*
end
=
buf
+
PAGE_SIZE
;
struct
bch_fs_usage
stats
=
bch2_fs_usage_read
(
c
);
unsigned
replicas
,
type
;
out
+=
scnprintf
(
out
,
end
-
out
,
"capacity:
\t\t
%llu
\n
"
,
c
->
capacity
);
for
(
replicas
=
0
;
replicas
<
ARRAY_SIZE
(
stats
.
s
);
replicas
++
)
{
out
+=
scnprintf
(
out
,
end
-
out
,
"%u replicas:
\n
"
,
replicas
+
1
);
for
(
type
=
BCH_DATA_SB
;
type
<
BCH_DATA_NR
;
type
++
)
out
+=
scnprintf
(
out
,
end
-
out
,
"
\t
%s:
\t\t
%llu
\n
"
,
bch2_data_types
[
type
],
stats
.
s
[
replicas
].
data
[
type
]);
out
+=
scnprintf
(
out
,
end
-
out
,
"
\t
reserved:
\t
%llu
\n
"
,
stats
.
s
[
replicas
].
persistent_reserved
);
}
return
scnprintf
(
buf
,
PAGE_SIZE
,
"capacity:
\t\t
%llu
\n
"
"1 replicas:
\n
"
"
\t
meta:
\t\t
%llu
\n
"
"
\t
dirty:
\t\t
%llu
\n
"
"
\t
reserved:
\t
%llu
\n
"
"2 replicas:
\n
"
"
\t
meta:
\t\t
%llu
\n
"
"
\t
dirty:
\t\t
%llu
\n
"
"
\t
reserved:
\t
%llu
\n
"
"3 replicas:
\n
"
"
\t
meta:
\t\t
%llu
\n
"
"
\t
dirty:
\t\t
%llu
\n
"
"
\t
reserved:
\t
%llu
\n
"
"4 replicas:
\n
"
"
\t
meta:
\t\t
%llu
\n
"
"
\t
dirty:
\t\t
%llu
\n
"
"
\t
reserved:
\t
%llu
\n
"
out
+=
scnprintf
(
out
,
end
-
out
,
"online reserved:
\t
%llu
\n
"
,
c
->
capacity
,
stats
.
s
[
0
].
data
[
S_META
],
stats
.
s
[
0
].
data
[
S_DIRTY
],
stats
.
s
[
0
].
persistent_reserved
,
stats
.
s
[
1
].
data
[
S_META
],
stats
.
s
[
1
].
data
[
S_DIRTY
],
stats
.
s
[
1
].
persistent_reserved
,
stats
.
s
[
2
].
data
[
S_META
],
stats
.
s
[
2
].
data
[
S_DIRTY
],
stats
.
s
[
2
].
persistent_reserved
,
stats
.
s
[
3
].
data
[
S_META
],
stats
.
s
[
3
].
data
[
S_DIRTY
],
stats
.
s
[
3
].
persistent_reserved
,
stats
.
online_reserved
);
return
out
-
buf
;
}
static
ssize_t
bch2_compression_stats
(
struct
bch_fs
*
c
,
char
*
buf
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment