diff options
author | 2025-03-20 12:45:01 -0400 | |
---|---|---|
committer | 2025-03-21 12:44:26 -0400 | |
commit | aa42add73ce9b9e3714723d385c254b75814e335 (patch) | |
tree | 109317176dabb2b1712d3ddef36fce5d28b911fe | |
parent | pNFS/flexfiles: Treat ENETUNREACH errors as fatal in containers (diff) | |
download | wireguard-linux-aa42add73ce9b9e3714723d385c254b75814e335.tar.xz wireguard-linux-aa42add73ce9b9e3714723d385c254b75814e335.zip |
pNFS/flexfiles: Report ENETDOWN as a connection error
If the client should see an ENETDOWN when trying to connect to the data
server, it might still be able to talk to the metadata server through
another NIC. If so, report the error.
Signed-off-by: Trond Myklebust <trond.myklebust@hammerspace.com>
Reviewed-by: Jeff Layton <jlayton@kernel.org>
Tested-by: Jeff Layton <jlayton@kernel.org>
Acked-by: Chuck Lever <chuck.lever@oracle.com>
Diffstat (limited to '')
-rw-r--r-- | fs/nfs/flexfilelayout/flexfilelayout.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/nfs/flexfilelayout/flexfilelayout.c b/fs/nfs/flexfilelayout/flexfilelayout.c index f89fdba7289d..61ad269c825f 100644 --- a/fs/nfs/flexfilelayout/flexfilelayout.c +++ b/fs/nfs/flexfilelayout/flexfilelayout.c @@ -1274,6 +1274,7 @@ static void ff_layout_io_track_ds_error(struct pnfs_layout_segment *lseg, case -ECONNRESET: case -EHOSTDOWN: case -EHOSTUNREACH: + case -ENETDOWN: case -ENETUNREACH: case -EADDRINUSE: case -ENOBUFS: |