From c9504e344954e54b1f6d00aecf47b02f25e91f60 Mon Sep 17 00:00:00 2001 From: Samuel Thibault Date: Sun, 20 Nov 2016 16:27:31 +0100 Subject: ext2fs: Do not talk about crashing on ENOSPC * ext2fs/pager.c (pager_unlock_page): Do not say that ext2fs will crash because of ENOSPC. --- ext2fs/pager.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ext2fs') diff --git a/ext2fs/pager.c b/ext2fs/pager.c index 6a926827..fd93dcb8 100644 --- a/ext2fs/pager.c +++ b/ext2fs/pager.c @@ -640,7 +640,7 @@ pager_unlock_page (struct user_pager_info *pager, vm_offset_t page) pthread_rwlock_unlock (&dn->alloc_lock); if (err == ENOSPC) - ext2_warning ("This filesystem is out of space, and will now crash. Bye!"); + ext2_warning ("This filesystem is out of space."); else if (err) ext2_warning ("inode=%Ld, page=0x%lx: %s", node->cache_id, page, strerror (err)); -- cgit v1.2.3