[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[hurd] 03/06: ext2fs: Do not talk about crashing on ENOSPC
From: |
Samuel Thibault |
Subject: |
[hurd] 03/06: ext2fs: Do not talk about crashing on ENOSPC |
Date: |
Sun, 20 Nov 2016 21:18:22 +0000 |
This is an automated email from the git hooks/post-receive script.
sthibault pushed a commit to branch upstream
in repository hurd.
commit c9504e344954e54b1f6d00aecf47b02f25e91f60
Author: Samuel Thibault <address@hidden>
Date: Sun Nov 20 16:27:31 2016 +0100
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(-)
diff --git a/ext2fs/pager.c b/ext2fs/pager.c
index 6a92682..fd93dcb 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));
--
Alioth's /usr/local/bin/git-commit-notice on
/srv/git.debian.org/git/pkg-hurd/hurd.git
- [hurd] branch upstream updated (385d9bf -> 7bd08cf), Samuel Thibault, 2016/11/20
- [hurd] 03/06: ext2fs: Do not talk about crashing on ENOSPC,
Samuel Thibault <=
- [hurd] 06/06: Fix build, Samuel Thibault, 2016/11/20
- [hurd] 04/06: ext2fs: Use more POSIXish error code, Samuel Thibault, 2016/11/20
- [hurd] 05/06: boot: fix crash when S_processor_set_tasks is called early, Samuel Thibault, 2016/11/20
- [hurd] 02/06: libpager, libstore: Fix crash on ENOSPC while writing data, Samuel Thibault, 2016/11/20
- [hurd] 01/06: ext2fs: Fix crash on ENOSPC while extending a directory, Samuel Thibault, 2016/11/20