Skip to content

Commit

Permalink
qat: fix the pipe callback return value
Browse files Browse the repository at this point in the history
Signed-off-by: He Jie Xu <[email protected]>
  • Loading branch information
soulxu committed Jun 13, 2024
1 parent 7d87918 commit 63e627e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,9 @@ void QatPrivateKeyConnection::registerCallback(QatContext* ctx) {
status = CPA_STATUS_FAIL;
}
ctx->setOpStatus(status);
return absl::OkStatus();
}
this->cb_.onPrivateKeyMethodComplete();
return absl::OkStatus();
},
Event::FileTriggerType::Edge, Event::FileReadyType::Read);
}
Expand Down

0 comments on commit 63e627e

Please sign in to comment.