mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-12-18 11:00:25 +00:00
cephfs: correct typos in cephfs driver code
Signed-off-by: Humble Chirammal <hchiramm@redhat.com>
This commit is contained in:
parent
ca7809099d
commit
66fa5891b2
@ -595,7 +595,7 @@ func (cs *ControllerServer) CreateSnapshot(
|
|||||||
info, err := parentVolOptions.getSubVolumeInfo(ctx, volumeID(vid.FsSubvolName))
|
info, err := parentVolOptions.getSubVolumeInfo(ctx, volumeID(vid.FsSubvolName))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
// Check error code value against ErrInvalidCommand to understand the cluster
|
// Check error code value against ErrInvalidCommand to understand the cluster
|
||||||
// support it or not, its safe to evaluat as the filtering
|
// support it or not, It's safe to evaluate as the filtering
|
||||||
// is already done from getSubVolumeInfo() and send out the error here.
|
// is already done from getSubVolumeInfo() and send out the error here.
|
||||||
if errors.Is(err, ErrInvalidCommand) {
|
if errors.Is(err, ErrInvalidCommand) {
|
||||||
return nil, status.Error(
|
return nil, status.Error(
|
||||||
|
@ -345,7 +345,7 @@ volume names as requested by the CSI drivers. Hence, these need to be invoked on
|
|||||||
respective CSI driver generated volume name based locks are held, as otherwise racy
|
respective CSI driver generated volume name based locks are held, as otherwise racy
|
||||||
access to these omaps may end up leaving them in an inconsistent state.
|
access to these omaps may end up leaving them in an inconsistent state.
|
||||||
|
|
||||||
These functions also cleanup omap reservations that are stale. I.e when omap entries exist and
|
These functions also cleanup omap reservations that are stale. I.e. when omap entries exist and
|
||||||
backing subvolumes are missing, or one of the omaps exist and the next is missing. This is
|
backing subvolumes are missing, or one of the omaps exist and the next is missing. This is
|
||||||
because, the order of omap creation and deletion are inverse of each other, and protected by the
|
because, the order of omap creation and deletion are inverse of each other, and protected by the
|
||||||
request name lock, and hence any stale omaps are leftovers from incomplete transactions and are
|
request name lock, and hence any stale omaps are leftovers from incomplete transactions and are
|
||||||
|
@ -308,7 +308,7 @@ func (ns *NodeServer) NodeUnpublishVolume(
|
|||||||
return nil, status.Error(codes.Internal, err.Error())
|
return nil, status.Error(codes.Internal, err.Error())
|
||||||
}
|
}
|
||||||
|
|
||||||
util.DebugLog(ctx, "cephfs: successfully unbinded volume %s from %s", req.GetVolumeId(), targetPath)
|
util.DebugLog(ctx, "cephfs: successfully unbounded volume %s from %s", req.GetVolumeId(), targetPath)
|
||||||
|
|
||||||
return &csi.NodeUnpublishVolumeResponse{}, nil
|
return &csi.NodeUnpublishVolumeResponse{}, nil
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user