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
0dea7c12
Commit
0dea7c12
authored
Jun 02, 2010
by
David S. Miller
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'vhost-net-next' of
git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost
parents
ab95bfe0
f8322fbe
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
9 deletions
+8
-9
drivers/vhost/net.c
drivers/vhost/net.c
+6
-7
drivers/vhost/vhost.c
drivers/vhost/vhost.c
+2
-2
No files found.
drivers/vhost/net.c
View file @
0dea7c12
...
...
@@ -519,13 +519,12 @@ static long vhost_net_set_backend(struct vhost_net *n, unsigned index, int fd)
/* start polling new socket */
oldsock
=
vq
->
private_data
;
if
(
sock
==
oldsock
)
goto
done
;
if
(
sock
!=
oldsock
){
vhost_net_disable_vq
(
n
,
vq
);
rcu_assign_pointer
(
vq
->
private_data
,
sock
);
vhost_net_enable_vq
(
n
,
vq
);
}
vhost_net_disable_vq
(
n
,
vq
);
rcu_assign_pointer
(
vq
->
private_data
,
sock
);
vhost_net_enable_vq
(
n
,
vq
);
done:
if
(
oldsock
)
{
vhost_net_flush_vq
(
n
,
index
);
fput
(
oldsock
->
file
);
...
...
@@ -626,7 +625,7 @@ static long vhost_net_compat_ioctl(struct file *f, unsigned int ioctl,
}
#endif
const
static
struct
file_operations
vhost_net_fops
=
{
static
const
struct
file_operations
vhost_net_fops
=
{
.
owner
=
THIS_MODULE
,
.
release
=
vhost_net_release
,
.
unlocked_ioctl
=
vhost_net_ioctl
,
...
...
drivers/vhost/vhost.c
View file @
0dea7c12
...
...
@@ -237,8 +237,8 @@ static int vq_memory_access_ok(void __user *log_base, struct vhost_memory *mem,
{
int
i
;
if
(
!
mem
)
return
0
;
if
(
!
mem
)
return
0
;
for
(
i
=
0
;
i
<
mem
->
nregions
;
++
i
)
{
struct
vhost_memory_region
*
m
=
mem
->
regions
+
i
;
...
...
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