mirror of https://github.com/ceph/go-ceph
cephfs: Make MountInfo.SelectFilesystem stable
Signed-off-by: Anoop C S <anoopcs@cryptolab.net>
This commit is contained in:
parent
4787861e9d
commit
9eb24e9f67
|
@ -1,6 +1,3 @@
|
|||
//go:build ceph_preview
|
||||
// +build ceph_preview
|
||||
|
||||
package cephfs
|
||||
|
||||
/*
|
||||
|
|
|
@ -1,6 +1,3 @@
|
|||
//go:build ceph_preview
|
||||
// +build ceph_preview
|
||||
|
||||
package cephfs
|
||||
|
||||
import (
|
||||
|
|
|
@ -311,15 +311,15 @@
|
|||
{
|
||||
"name": "UserPerm.Destroy",
|
||||
"comment": "Destroy will explicitly free ceph resources associated with the UserPerm.\n\nImplements:\n void ceph_userperm_destroy(UserPerm *perm);\n"
|
||||
},
|
||||
{
|
||||
"name": "MountInfo.SelectFilesystem",
|
||||
"comment": "SelectFilesystem selects a file system to be mounted. If the ceph cluster\nsupports more than one cephfs this optional function selects which one to\nuse. Can only be called prior to calling Mount. The name of the file system\nis not validated by this call - if the supplied file system name is not\nvalid then only the subsequent mount call will fail.\n\nImplements:\n\n\tint ceph_select_filesystem(struct ceph_mount_info *cmount, const char *fs_name);\n",
|
||||
"added_in_version": "v0.20.0",
|
||||
"became_stable_version": "v0.22.0"
|
||||
}
|
||||
],
|
||||
"preview_api": [
|
||||
{
|
||||
"name": "MountInfo.SelectFilesystem",
|
||||
"comment": "SelectFilesystem selects a file system to be mounted. If the ceph cluster\nsupports more than one cephfs this optional function selects which one to\nuse. Can only be called prior to calling Mount. The name of the file system\nis not validated by this call - if the supplied file system name is not\nvalid then only the subsequent mount call will fail.\n\nImplements:\n int ceph_select_filesystem(struct ceph_mount_info *cmount, const char *fs_name);\n",
|
||||
"added_in_version": "v0.20.0",
|
||||
"expected_stable_version": "v0.22.0"
|
||||
},
|
||||
{
|
||||
"name": "MountInfo.MakeDirs",
|
||||
"comment": "MakeDirs creates multiple directories at once.\n\nImplements:\n\n\tint ceph_mkdirs(struct ceph_mount_info *cmount, const char *path, mode_t mode);\n",
|
||||
|
|
|
@ -8,7 +8,6 @@
|
|||
|
||||
Name | Added in Version | Expected Stable Version |
|
||||
---- | ---------------- | ----------------------- |
|
||||
MountInfo.SelectFilesystem | v0.20.0 | v0.22.0 |
|
||||
MountInfo.MakeDirs | v0.21.0 | v0.23.0 |
|
||||
MountInfo.Mknod | v0.22.0 | v0.24.0 |
|
||||
MountInfo.Futime | v0.22.0 | v0.24.0 |
|
||||
|
|
Loading…
Reference in New Issue