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