X-Git-Url: https://git.camperquake.de/gitweb.cgi?a=blobdiff_plain;f=module%2Fzfs%2Fzpl_file.c;h=db6a72c982fa9ed55202dfdd8260b915c32c63e2;hb=df4474f92d0b1b8d54e1914fdd56be2b75f1ff5e;hp=2e9f72ad12d99f3452b2dbe47c5983f374dd885f;hpb=62c4165a1bbfb7d68f8ebf93d32a6fc8ea4d4e33;p=zfs.git diff --git a/module/zfs/zpl_file.c b/module/zfs/zpl_file.c index 2e9f72a..db6a72c 100644 --- a/module/zfs/zpl_file.c +++ b/module/zfs/zpl_file.c @@ -357,8 +357,16 @@ zpl_putpage(struct page *pp, struct writeback_control *wbc, void *data) ASSERT(PageLocked(pp)); ASSERT(!PageWriteback(pp)); - + ASSERT(!(current->flags & PF_NOFS)); + + /* + * Annotate this call path with a flag that indicates that it is + * unsafe to use KM_SLEEP during memory allocations due to the + * potential for a deadlock. KM_PUSHPAGE should be used instead. + */ + current->flags |= PF_NOFS; (void) zfs_putpage(mapping->host, pp, wbc); + current->flags &= ~PF_NOFS; return (0); } @@ -438,7 +446,6 @@ const struct file_operations zpl_file_operations = { .llseek = generic_file_llseek, .read = zpl_read, .write = zpl_write, - .readdir = zpl_readdir, .mmap = zpl_mmap, .fsync = zpl_fsync, #ifdef HAVE_FILE_FALLOCATE