Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 199431
b: refs/heads/master
c: 51921cb
h: refs/heads/master
i:
  199429: a17599b
  199427: 8782c8e
  199423: d047568
v: v3
  • Loading branch information
Miklos Szeredi committed May 26, 2010
1 parent bcffb4f commit da7334c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: c3021629a0d820247ee12b6c5192a1d5380e21c6
refs/heads/master: 51921cb746f56983db5a373ca68deb2b0d3ddf01
6 changes: 6 additions & 0 deletions trunk/fs/pipe.c
Original file line number Diff line number Diff line change
Expand Up @@ -230,6 +230,7 @@ void *generic_pipe_buf_map(struct pipe_inode_info *pipe,

return kmap(buf->page);
}
EXPORT_SYMBOL(generic_pipe_buf_map);

/**
* generic_pipe_buf_unmap - unmap a previously mapped pipe buffer
Expand All @@ -249,6 +250,7 @@ void generic_pipe_buf_unmap(struct pipe_inode_info *pipe,
} else
kunmap(buf->page);
}
EXPORT_SYMBOL(generic_pipe_buf_unmap);

/**
* generic_pipe_buf_steal - attempt to take ownership of a &pipe_buffer
Expand Down Expand Up @@ -279,6 +281,7 @@ int generic_pipe_buf_steal(struct pipe_inode_info *pipe,

return 1;
}
EXPORT_SYMBOL(generic_pipe_buf_steal);

/**
* generic_pipe_buf_get - get a reference to a &struct pipe_buffer
Expand All @@ -294,6 +297,7 @@ void generic_pipe_buf_get(struct pipe_inode_info *pipe, struct pipe_buffer *buf)
{
page_cache_get(buf->page);
}
EXPORT_SYMBOL(generic_pipe_buf_get);

/**
* generic_pipe_buf_confirm - verify contents of the pipe buffer
Expand All @@ -309,6 +313,7 @@ int generic_pipe_buf_confirm(struct pipe_inode_info *info,
{
return 0;
}
EXPORT_SYMBOL(generic_pipe_buf_confirm);

/**
* generic_pipe_buf_release - put a reference to a &struct pipe_buffer
Expand All @@ -323,6 +328,7 @@ void generic_pipe_buf_release(struct pipe_inode_info *pipe,
{
page_cache_release(buf->page);
}
EXPORT_SYMBOL(generic_pipe_buf_release);

static const struct pipe_buf_operations anon_pipe_buf_ops = {
.can_merge = 1,
Expand Down

0 comments on commit da7334c

Please sign in to comment.