~wb-munzinger/+junk/ocfs2-tools

« back to all changes in this revision

Viewing changes to libocfs2/namei.c

  • Committer: Bazaar Package Importer
  • Author(s): Jeremy Lainé
  • Date: 2009-07-06 07:26:30 UTC
  • mfrom: (1.1.7 upstream) (0.1.5 squeeze)
  • Revision ID: james.westby@ubuntu.com-20090706072630-59335sl51k3rvu74
Tags: 1.4.2-1
* New upstream release (Closes: #535471).
* Drop patch for limits.h, included upstream.

Show diffs side-by-side

added added

removed removed

Lines of Context:
34
34
#include <unistd.h>
35
35
#endif
36
36
 
37
 
#include "ocfs2.h"
 
37
#include "ocfs2/ocfs2.h"
38
38
 
39
39
static errcode_t open_namei(ocfs2_filesys *fs, uint64_t root, uint64_t base,
40
40
                            const char *pathname, size_t pathlen, int follow,
93
93
        if (ret)
94
94
                goto bail;
95
95
 
96
 
        ret = io_read_block(fs->fs_io, blkno, 1, buffer);
 
96
        ret = ocfs2_read_blocks(fs, blkno, 1, buffer);
97
97
        if (ret)
98
98
                goto bail;
99
99