Skip to content

Commit

Permalink
mm: export generic_pipe_buf_*() to modules
Browse files Browse the repository at this point in the history
This is needed by fuse device code which wants to create pipe buffers.

Signed-off-by: Miklos Szeredi <mszeredi@suse.cz>
  • Loading branch information
Miklos Szeredi committed May 26, 2010
1 parent c302162 commit 51921cb
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions 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 51921cb

Please sign in to comment.