mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-09 16:00:22 +00:00
cephfs: ignore BytesQuota field in case it is not set.
This can happen when the subvolume is in snapshot-retained state.
We should not return error for such case as it is a valid situation.
Signed-off-by: Mudit Agarwal <muagarwa@redhat.com>
(cherry picked from commit d480eb4bda
)
This commit is contained in:
parent
64f3361ff4
commit
08904884d3
@ -104,9 +104,12 @@ func (vo *volumeOptions) getSubVolumeInfo(ctx context.Context, volID volumeID) (
|
||||
}
|
||||
bc, ok := info.BytesQuota.(fsAdmin.ByteCount)
|
||||
if !ok {
|
||||
// we ignore info.BytesQuota == Infinite and just continue
|
||||
// without returning quota information
|
||||
if info.BytesQuota != fsAdmin.Infinite {
|
||||
// If info.BytesQuota == Infinite (in case it is not set)
|
||||
// or nil (in case the subvolume is in snapshot-retained state),
|
||||
// just continue without returning quota information.
|
||||
// TODO: make use of subvolume "state" attribute once
|
||||
// https://github.com/ceph/go-ceph/issues/453 is fixed.
|
||||
if !(info.BytesQuota == fsAdmin.Infinite || info.BytesQuota == nil) {
|
||||
return nil, fmt.Errorf("subvolume %s has unsupported quota: %v", string(volID), info.BytesQuota)
|
||||
}
|
||||
} else {
|
||||
|
Loading…
Reference in New Issue
Block a user