Modified: subversion/branches/fsfs-format7/subversion/libsvn_fs_fs/fs_fs.h URL: http://svn.apache.org/viewvc/subversion/branches/fsfs-format7/subversion/libsvn_fs_fs/fs_fs.h?rev=1415451&r1=1415450&r2=1415451&view=diff ============================================================================== --- subversion/branches/fsfs-format7/subversion/libsvn_fs_fs/fs_fs.h (original) +++ subversion/branches/fsfs-format7/subversion/libsvn_fs_fs/fs_fs.h Thu Nov 29 23:19:53 2012 @@ -82,32 +82,17 @@ svn_error_t *svn_fs_fs__put_node_revisio svn_boolean_t fresh_txn_root, apr_pool_t *pool); -/* Write the node-revision NODEREV into the stream OUTFILE, compatible with - filesystem format FORMAT. Only write mergeinfo-related metadata if - INCLUDE_MERGEINFO is true. Temporary allocations are from POOL. */ -/* ### Currently used only by fs_fs.c */ -svn_error_t * -svn_fs_fs__write_noderev(svn_stream_t *outfile, - node_revision_t *noderev, - int format, - svn_boolean_t include_mergeinfo, - apr_pool_t *pool); - -/* Read a node-revision from STREAM. Set *NODEREV to the new structure, - allocated in POOL. */ -/* ### Currently used only by fs_fs.c */ -svn_error_t * -svn_fs_fs__read_noderev(node_revision_t **noderev, - svn_stream_t *stream, - apr_pool_t *pool); - - /* Set *YOUNGEST to the youngest revision in filesystem FS. Do any temporary allocation in POOL. */ svn_error_t *svn_fs_fs__youngest_rev(svn_revnum_t *youngest, svn_fs_t *fs, apr_pool_t *pool); +svn_error_t * +svn_fs_fs__ensure_revision_exists(svn_revnum_t rev, + svn_fs_t *fs, + apr_pool_t *pool); + /* Return an error iff REV does not exist in FS. */ svn_error_t * svn_fs_fs__revision_exists(svn_revnum_t rev,
