Revert "ext4: allow readdir()'s of large empty directories to be interrupted"
[deliverable/linux.git] / fs / ext4 / dir.c
index 4173bfe21114fb94f644e5d5917711aba7deab88..561d7308b393a0347dea3b1344f409bf5fed0139 100644 (file)
@@ -150,11 +150,6 @@ static int ext4_readdir(struct file *file, struct dir_context *ctx)
        while (ctx->pos < inode->i_size) {
                struct ext4_map_blocks map;
 
-               if (fatal_signal_pending(current)) {
-                       err = -ERESTARTSYS;
-                       goto errout;
-               }
-               cond_resched();
                map.m_lblk = ctx->pos >> EXT4_BLOCK_SIZE_BITS(sb);
                map.m_len = 1;
                err = ext4_map_blocks(NULL, inode, &map, 0);
This page took 0.025998 seconds and 5 git commands to generate.