From 959beb867ba3cc6b6fb522d57d8ecd31b443e9f0 Mon Sep 17 00:00:00 2001 From: Thomas Waldmann Date: Tue, 8 May 2018 14:46:03 +0200 Subject: [PATCH] xattrs: fix borg exception handling on ENOSPC error, fixes #3808 --- src/borg/archive.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/borg/archive.py b/src/borg/archive.py index 35e89f57e..f4b7f08a2 100644 --- a/src/borg/archive.py +++ b/src/borg/archive.py @@ -730,6 +730,13 @@ Utilization of max. archive size: {csize_max:.0%} # permission denied to set this specific xattr (this may happen related to security.* keys) logger.warning('%s: Permission denied when setting extended attribute %s' % (path, k.decode())) set_ec(EXIT_WARNING) + elif e.errno == errno.ENOSPC: + # no space left on device while setting this specific xattr + # ext4 reports ENOSPC when trying to set an xattr with >4kiB while ext4 can only support 4kiB xattrs + # (in this case, this is NOT a "disk full" error, just a ext4 limitation). + logger.warning('%s: No space left on device while setting extended attribute %s (len = %d)' % ( + path, k.decode(), len(v))) + set_ec(EXIT_WARNING) else: raise # bsdflags include the immutable flag and need to be set last: