summaryrefslogtreecommitdiff
path: root/ext2fs
diff options
context:
space:
mode:
authorSamuel Thibault <samuel.thibault@ens-lyon.org>2016-11-20 16:27:31 +0100
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2016-11-20 16:27:31 +0100
commitc9504e344954e54b1f6d00aecf47b02f25e91f60 (patch)
treea4951d3d9e602445c10483161038d8bbf1feb000 /ext2fs
parent62953f120bcdc976a3dfb96505066228464a78dd (diff)
ext2fs: Do not talk about crashing on ENOSPC
* ext2fs/pager.c (pager_unlock_page): Do not say that ext2fs will crash because of ENOSPC.
Diffstat (limited to 'ext2fs')
-rw-r--r--ext2fs/pager.c2
1 files changed, 1 insertions, 1 deletions
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));