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
nexedi
linux
Commits
c1111b1f
Commit
c1111b1f
authored
Dec 23, 2011
by
Chris Mason
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'integration' into for-linus
parents
b3b1b70e
08c422c2
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
5 deletions
+7
-5
fs/btrfs/async-thread.c
fs/btrfs/async-thread.c
+2
-1
fs/btrfs/inode.c
fs/btrfs/inode.c
+5
-4
No files found.
fs/btrfs/async-thread.c
View file @
c1111b1f
...
...
@@ -563,8 +563,8 @@ static struct btrfs_worker_thread *find_worker(struct btrfs_workers *workers)
struct
list_head
*
fallback
;
int
ret
;
again:
spin_lock_irqsave
(
&
workers
->
lock
,
flags
);
again:
worker
=
next_worker
(
workers
);
if
(
!
worker
)
{
...
...
@@ -579,6 +579,7 @@ static struct btrfs_worker_thread *find_worker(struct btrfs_workers *workers)
spin_unlock_irqrestore
(
&
workers
->
lock
,
flags
);
/* we're below the limit, start another worker */
ret
=
__btrfs_start_workers
(
workers
);
spin_lock_irqsave
(
&
workers
->
lock
,
flags
);
if
(
ret
)
goto
fallback
;
goto
again
;
...
...
fs/btrfs/inode.c
View file @
c1111b1f
...
...
@@ -4590,10 +4590,6 @@ static int btrfs_add_nondir(struct btrfs_trans_handle *trans,
int
err
=
btrfs_add_link
(
trans
,
dir
,
inode
,
dentry
->
d_name
.
name
,
dentry
->
d_name
.
len
,
backref
,
index
);
if
(
!
err
)
{
d_instantiate
(
dentry
,
inode
);
return
0
;
}
if
(
err
>
0
)
err
=
-
EEXIST
;
return
err
;
...
...
@@ -4655,6 +4651,7 @@ static int btrfs_mknod(struct inode *dir, struct dentry *dentry,
else
{
init_special_inode
(
inode
,
inode
->
i_mode
,
rdev
);
btrfs_update_inode
(
trans
,
root
,
inode
);
d_instantiate
(
dentry
,
inode
);
}
out_unlock:
nr
=
trans
->
blocks_used
;
...
...
@@ -4722,6 +4719,7 @@ static int btrfs_create(struct inode *dir, struct dentry *dentry,
inode
->
i_mapping
->
a_ops
=
&
btrfs_aops
;
inode
->
i_mapping
->
backing_dev_info
=
&
root
->
fs_info
->
bdi
;
BTRFS_I
(
inode
)
->
io_tree
.
ops
=
&
btrfs_extent_io_ops
;
d_instantiate
(
dentry
,
inode
);
}
out_unlock:
nr
=
trans
->
blocks_used
;
...
...
@@ -4779,6 +4777,7 @@ static int btrfs_link(struct dentry *old_dentry, struct inode *dir,
struct
dentry
*
parent
=
dentry
->
d_parent
;
err
=
btrfs_update_inode
(
trans
,
root
,
inode
);
BUG_ON
(
err
);
d_instantiate
(
dentry
,
inode
);
btrfs_log_new_name
(
trans
,
inode
,
NULL
,
parent
);
}
...
...
@@ -7245,6 +7244,8 @@ static int btrfs_symlink(struct inode *dir, struct dentry *dentry,
drop_inode
=
1
;
out_unlock:
if
(
!
err
)
d_instantiate
(
dentry
,
inode
);
nr
=
trans
->
blocks_used
;
btrfs_end_transaction_throttle
(
trans
,
root
);
if
(
drop_inode
)
{
...
...
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