[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: Jens Axboe <axboe@suse.de>

+5 -2
+5 -2
fs/splice.c
··· 342 return ret; 343 } 344 345 /* 346 * Send 'sd->len' bytes to socket from 'sd->file' at position 'sd->pos' 347 * using sendpage(). ··· 656 return ret; 657 } 658 659 /** 660 * generic_splice_sendpage - splice data from a pipe to a socket 661 * @inode: pipe inode ··· 675 return move_from_pipe(inode, out, len, flags, pipe_to_sendpage); 676 } 677 678 - EXPORT_SYMBOL(generic_file_splice_write); 679 - EXPORT_SYMBOL(generic_file_splice_read); 680 681 /* 682 * Attempt to initiate a splice from pipe to file.
··· 342 return ret; 343 } 344 345 + EXPORT_SYMBOL(generic_file_splice_read); 346 + 347 /* 348 * Send 'sd->len' bytes to socket from 'sd->file' at position 'sd->pos' 349 * using sendpage(). ··· 654 return ret; 655 } 656 657 + EXPORT_SYMBOL(generic_file_splice_write); 658 + 659 /** 660 * generic_splice_sendpage - splice data from a pipe to a socket 661 * @inode: pipe inode ··· 671 return move_from_pipe(inode, out, len, flags, pipe_to_sendpage); 672 } 673 674 + EXPORT_SYMBOL(generic_splice_sendpage); 675 676 /* 677 * Attempt to initiate a splice from pipe to file.