Lines Matching refs:path
100 * certain rules. The guiding principle that the commit path follows while
148 * 0) Fast commit replay path hardening: Fast commit replay code should use
150 * path are atomic. With that if we crash during fast commit replay, after
159 * 1) Fast commit's commit path locks the entire file system during fast
163 * system locking during commit path.
676 /* Ext4 commit path routines */
1728 struct ext4_ext_path *path = NULL;
1769 path = ext4_find_extent(inode, cur, NULL, 0);
1770 if (IS_ERR(path))
1781 NULL, inode, &path, &newex, 0);
1783 ext4_free_ext_path(path);
1904 struct ext4_ext_path *path = NULL;
1933 path = ext4_find_extent(inode, map.m_lblk, NULL, 0);
1934 if (!IS_ERR(path)) {
1935 for (j = 0; j < path->p_depth; j++)
1937 path[j].p_block, 1, 1);
1938 ext4_free_ext_path(path);
2147 * Main recovery path entry point.