Commit 059a8f37 authored by Jens Axboe's avatar Jens Axboe

[PATCH] splice: export generic_splice_sendpage

Forgot that one, thanks Jeff. Also move the other EXPORT_SYMBOL
to right below the functions.
Signed-off-by: default avatarJens Axboe <axboe@suse.de>
parent b2b39fa4
...@@ -342,6 +342,8 @@ ssize_t generic_file_splice_read(struct file *in, struct inode *pipe, ...@@ -342,6 +342,8 @@ ssize_t generic_file_splice_read(struct file *in, struct inode *pipe,
return ret; return ret;
} }
EXPORT_SYMBOL(generic_file_splice_read);
/* /*
* Send 'sd->len' bytes to socket from 'sd->file' at position 'sd->pos' * Send 'sd->len' bytes to socket from 'sd->file' at position 'sd->pos'
* using sendpage(). * using sendpage().
...@@ -654,6 +656,8 @@ ssize_t generic_file_splice_write(struct inode *inode, struct file *out, ...@@ -654,6 +656,8 @@ ssize_t generic_file_splice_write(struct inode *inode, struct file *out,
return ret; return ret;
} }
EXPORT_SYMBOL(generic_file_splice_write);
/** /**
* generic_splice_sendpage - splice data from a pipe to a socket * generic_splice_sendpage - splice data from a pipe to a socket
* @inode: pipe inode * @inode: pipe inode
...@@ -671,8 +675,7 @@ ssize_t generic_splice_sendpage(struct inode *inode, struct file *out, ...@@ -671,8 +675,7 @@ ssize_t generic_splice_sendpage(struct inode *inode, struct file *out,
return move_from_pipe(inode, out, len, flags, pipe_to_sendpage); return move_from_pipe(inode, out, len, flags, pipe_to_sendpage);
} }
EXPORT_SYMBOL(generic_file_splice_write); EXPORT_SYMBOL(generic_splice_sendpage);
EXPORT_SYMBOL(generic_file_splice_read);
/* /*
* Attempt to initiate a splice from pipe to file. * Attempt to initiate a splice from pipe to file.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment