aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMikulas Patocka <mikulas@twibright.com>2018-06-09 17:04:47 -0400
committerLinus Torvalds <torvalds@linux-foundation.org>2018-06-09 17:34:48 -0400
commitf72328d27f3bb117b7f707fae2ca20d03ba2796d (patch)
tree592567d13292240a6e79efef0e47f51f3567ef65
parenta16afaf7928b74c30a4727cdcaa67bd10675a55d (diff)
hpfs: Use EUCLEAN for filesystem errors
Use the error code EUCLEAN for filesystem errors because other filesystems use this code too. [ And remove unused EMEMERROR - Linus ] Signed-off-by: Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
-rw-r--r--fs/hpfs/hpfs_fn.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/fs/hpfs/hpfs_fn.h b/fs/hpfs/hpfs_fn.h
index 2577ef1034ef..2a153aed4c19 100644
--- a/fs/hpfs/hpfs_fn.h
+++ b/fs/hpfs/hpfs_fn.h
@@ -26,8 +26,7 @@
26#include "hpfs.h" 26#include "hpfs.h"
27 27
28#define EIOERROR EIO 28#define EIOERROR EIO
29#define EFSERROR EPERM 29#define EFSERROR EUCLEAN
30#define EMEMERROR ENOMEM
31 30
32#define ANODE_ALLOC_FWD 512 31#define ANODE_ALLOC_FWD 512
33#define FNODE_ALLOC_FWD 0 32#define FNODE_ALLOC_FWD 0