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
89e336b2
Commit
89e336b2
authored
Oct 17, 2009
by
Alexey Dobriyan
Committed by
james toy
Oct 17, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com>
Signed-off-by:
Andrew Morton
<
akpm@linux-foundation.org
>
parent
7cea5763
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
4 deletions
+4
-4
kernel/relay.c
kernel/relay.c
+1
-1
kernel/trace/trace.c
kernel/trace/trace.c
+2
-2
net/core/skbuff.c
net/core/skbuff.c
+1
-1
No files found.
kernel/relay.c
View file @
89e336b2
...
...
@@ -1198,7 +1198,7 @@ static void relay_pipe_buf_release(struct pipe_inode_info *pipe,
relay_consume_bytes
(
rbuf
,
buf
->
private
);
}
static
struct
pipe_buf_operations
relay_pipe_buf_ops
=
{
static
const
struct
pipe_buf_operations
relay_pipe_buf_ops
=
{
.
can_merge
=
0
,
.
map
=
generic_pipe_buf_map
,
.
unmap
=
generic_pipe_buf_unmap
,
...
...
kernel/trace/trace.c
View file @
89e336b2
...
...
@@ -3103,7 +3103,7 @@ static void tracing_spd_release_pipe(struct splice_pipe_desc *spd,
__free_page
(
spd
->
pages
[
idx
]);
}
static
struct
pipe_buf_operations
tracing_pipe_buf_ops
=
{
static
const
struct
pipe_buf_operations
tracing_pipe_buf_ops
=
{
.
can_merge
=
0
,
.
map
=
generic_pipe_buf_map
,
.
unmap
=
generic_pipe_buf_unmap
,
...
...
@@ -3589,7 +3589,7 @@ static void buffer_pipe_buf_get(struct pipe_inode_info *pipe,
}
/* Pipe buffer operations for a buffer. */
static
struct
pipe_buf_operations
buffer_pipe_buf_ops
=
{
static
const
struct
pipe_buf_operations
buffer_pipe_buf_ops
=
{
.
can_merge
=
0
,
.
map
=
generic_pipe_buf_map
,
.
unmap
=
generic_pipe_buf_unmap
,
...
...
net/core/skbuff.c
View file @
89e336b2
...
...
@@ -93,7 +93,7 @@ static int sock_pipe_buf_steal(struct pipe_inode_info *pipe,
/* Pipe buffer operations for a socket. */
static
struct
pipe_buf_operations
sock_pipe_buf_ops
=
{
static
const
struct
pipe_buf_operations
sock_pipe_buf_ops
=
{
.
can_merge
=
0
,
.
map
=
generic_pipe_buf_map
,
.
unmap
=
generic_pipe_buf_unmap
,
...
...
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