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
5c16c574
Commit
5c16c574
authored
May 28, 2024
by
Kent Overstreet
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bcachefs: Split out journal_seq_blacklist_format.h
Signed-off-by:
Kent Overstreet
<
kent.overstreet@linux.dev
>
parent
24998050
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
10 deletions
+16
-10
fs/bcachefs/bcachefs_format.h
fs/bcachefs/bcachefs_format.h
+1
-10
fs/bcachefs/journal_seq_blacklist_format.h
fs/bcachefs/journal_seq_blacklist_format.h
+15
-0
No files found.
fs/bcachefs/bcachefs_format.h
View file @
5c16c574
...
...
@@ -507,6 +507,7 @@ struct bch_sb_field {
#include "dirent_format.h"
#include "disk_groups_format.h"
#include "inode_format.h"
#include "journal_seq_blacklist_format.h"
#include "logged_ops_format.h"
#include "quota_format.h"
#include "reflink_format.h"
...
...
@@ -666,16 +667,6 @@ struct bch_sb_field_clean {
__u64
_data
[];
};
struct
journal_seq_blacklist_entry
{
__le64
start
;
__le64
end
;
};
struct
bch_sb_field_journal_seq_blacklist
{
struct
bch_sb_field
field
;
struct
journal_seq_blacklist_entry
start
[];
};
struct
bch_sb_field_errors
{
struct
bch_sb_field
field
;
struct
bch_sb_field_error_entry
{
...
...
fs/bcachefs/journal_seq_blacklist_format.h
0 → 100644
View file @
5c16c574
/* SPDX-License-Identifier: GPL-2.0 */
#ifndef _BCACHEFS_JOURNAL_SEQ_BLACKLIST_FORMAT_H
#define _BCACHEFS_JOURNAL_SEQ_BLACKLIST_FORMAT_H
struct
journal_seq_blacklist_entry
{
__le64
start
;
__le64
end
;
};
struct
bch_sb_field_journal_seq_blacklist
{
struct
bch_sb_field
field
;
struct
journal_seq_blacklist_entry
start
[];
};
#endif
/* _BCACHEFS_JOURNAL_SEQ_BLACKLIST_FORMAT_H */
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