Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
linux-davinci
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
linux
linux-davinci
Commits
dd9a0752
Commit
dd9a0752
authored
Jul 28, 2009
by
Thomas Gleixner
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'rt/net' into rt/base
parents
de93d7b1
f9bef36b
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
3 deletions
+4
-3
net/ipv4/route.c
net/ipv4/route.c
+1
-1
net/ipv4/tcp.c
net/ipv4/tcp.c
+2
-2
net/irda/irttp.c
net/irda/irttp.c
+1
-0
No files found.
net/ipv4/route.c
View file @
dd9a0752
...
...
@@ -242,7 +242,7 @@ static __init void rt_hash_lock_init(void)
spin_lock_init
(
&
rt_hash_locks
[
i
]);
}
#else
# define rt_hash_lock_addr(slot)
NULL
# define rt_hash_lock_addr(slot)
((spinlock_t *)NULL)
static
inline
void
rt_hash_lock_init
(
void
)
{
...
...
net/ipv4/tcp.c
View file @
dd9a0752
...
...
@@ -1365,11 +1365,11 @@ int tcp_recvmsg(struct kiocb *iocb, struct sock *sk, struct msghdr *msg,
(
len
>
sysctl_tcp_dma_copybreak
)
&&
!
(
flags
&
MSG_PEEK
)
&&
!
sysctl_tcp_low_latency
&&
dma_find_channel
(
DMA_MEMCPY
))
{
preempt_enable
_no_resched
();
preempt_enable
();
tp
->
ucopy
.
pinned_list
=
dma_pin_iovec_pages
(
msg
->
msg_iov
,
len
);
}
else
{
preempt_enable
_no_resched
();
preempt_enable
();
}
}
#endif
...
...
net/irda/irttp.c
View file @
dd9a0752
...
...
@@ -1453,6 +1453,7 @@ struct tsap_cb *irttp_dup(struct tsap_cb *orig, void *instance)
}
/* Dup */
memcpy
(
new
,
orig
,
sizeof
(
struct
tsap_cb
));
spin_lock_init
(
&
new
->
lock
);
/* We don't need the old instance any more */
spin_unlock_irqrestore
(
&
irttp
->
tsaps
->
hb_spinlock
,
flags
);
...
...
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