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
9ca03b99
Commit
9ca03b99
authored
Jan 06, 2009
by
Chris Mason
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Btrfs: drop remaining LINUX_KERNEL_VERSION checks and compat code
Signed-off-by:
Chris Mason
<
chris.mason@oracle.com
>
parent
860a7a0c
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
29 deletions
+0
-29
fs/btrfs/compat.h
fs/btrfs/compat.h
+0
-25
fs/btrfs/extent-tree.c
fs/btrfs/extent-tree.c
+0
-4
No files found.
fs/btrfs/compat.h
View file @
9ca03b99
...
...
@@ -4,29 +4,4 @@
#define btrfs_drop_nlink(inode) drop_nlink(inode)
#define btrfs_inc_nlink(inode) inc_nlink(inode)
#if LINUX_VERSION_CODE <= KERNEL_VERSION(2, 6, 27)
static
inline
struct
dentry
*
d_obtain_alias
(
struct
inode
*
inode
)
{
struct
dentry
*
d
;
if
(
!
inode
)
return
NULL
;
if
(
IS_ERR
(
inode
))
return
ERR_CAST
(
inode
);
d
=
d_alloc_anon
(
inode
);
if
(
!
d
)
iput
(
inode
);
return
d
;
}
#endif
#if LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 28)
# define __pagevec_lru_add_file __pagevec_lru_add
# define open_bdev_exclusive open_bdev_excl
# define close_bdev_exclusive(bdev, mode) close_bdev_excl(bdev)
typedef
unsigned
__bitwise__
fmode_t
;
#endif
#endif
/* _COMPAT_H_ */
fs/btrfs/extent-tree.c
View file @
9ca03b99
...
...
@@ -869,11 +869,7 @@ static noinline int remove_extent_backref(struct btrfs_trans_handle *trans,
static
void
btrfs_issue_discard
(
struct
block_device
*
bdev
,
u64
start
,
u64
len
)
{
#if LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 28)
blkdev_issue_discard
(
bdev
,
start
>>
9
,
len
>>
9
,
GFP_KERNEL
);
#else
blkdev_issue_discard
(
bdev
,
start
>>
9
,
len
>>
9
);
#endif
}
#endif
...
...
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