diff options
author | Jitendra Patidar <[email protected]> | 2022-05-02 23:31:26 +0530 |
---|---|---|
committer | GitHub <[email protected]> | 2022-05-02 11:01:26 -0700 |
commit | 159c6fd1540239120f9872d7f4cf8d340fc21c44 (patch) | |
tree | 1bac4247d829a49b4837819fd4ae8285848906ce | |
parent | 1bf3abc6343bc5b14c13bc402ffcdd4bbd6c7f40 (diff) |
Add missing replay entry in zvol_replay_vector for TX_SETSAXATTR
Commit 361a7e8 (log xattr=sa create/remove/update to ZIL) introduced a
TX_SETSAXATTR, but missed to add a corresponding entry in
zvol_replay_vector. Adding a missing replay entry in zvol_replay_vector.
Reviewed-by: Christian Schwarz <[email protected]>
Reviewed-by: Brian Behlendorf <[email protected]>
Signed-off-by: Jitendra Patidar <[email protected]>
Closes #13396
Closes #13395
-rw-r--r-- | module/zfs/zvol.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/module/zfs/zvol.c b/module/zfs/zvol.c index eb68b05c5..ac7c3a0c3 100644 --- a/module/zfs/zvol.c +++ b/module/zfs/zvol.c @@ -513,6 +513,7 @@ zil_replay_func_t *const zvol_replay_vector[TX_MAX_TYPE] = { zvol_replay_err, /* TX_MKDIR_ATTR */ zvol_replay_err, /* TX_MKDIR_ACL_ATTR */ zvol_replay_err, /* TX_WRITE2 */ + zvol_replay_err, /* TX_SETSAXATTR */ }; /* |