mirror of
https://github.com/ceph/go-ceph
synced 2025-03-04 02:18:37 +00:00
docs: Fix versions for newest API additions
Signed-off-by: Anoop C S <anoopcs@cryptolab.net>
This commit is contained in:
parent
203acfaa98
commit
4787861e9d
@ -329,26 +329,26 @@
|
|||||||
{
|
{
|
||||||
"name": "MountInfo.Mknod",
|
"name": "MountInfo.Mknod",
|
||||||
"comment": "Mknod creates a regular, block or character special file.\n\nImplements:\n\n\tint ceph_mknod(struct ceph_mount_info *cmount, const char *path, mode_t mode,\n\t\t\t\t dev_t rdev);\n",
|
"comment": "Mknod creates a regular, block or character special file.\n\nImplements:\n\n\tint ceph_mknod(struct ceph_mount_info *cmount, const char *path, mode_t mode,\n\t\t\t\t dev_t rdev);\n",
|
||||||
"added_in_version": "$NEXT_RELEASE",
|
"added_in_version": "v0.22.0",
|
||||||
"expected_stable_version": "$NEXT_RELEASE_STABLE"
|
"expected_stable_version": "v0.24.0"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "MountInfo.Futime",
|
"name": "MountInfo.Futime",
|
||||||
"comment": "Futime changes file/directory last access and modification times.\n\nImplements:\n\n\tint ceph_futime(struct ceph_mount_info *cmount, int fd, struct utimbuf *buf);\n",
|
"comment": "Futime changes file/directory last access and modification times.\n\nImplements:\n\n\tint ceph_futime(struct ceph_mount_info *cmount, int fd, struct utimbuf *buf);\n",
|
||||||
"added_in_version": "$NEXT_RELEASE",
|
"added_in_version": "v0.22.0",
|
||||||
"expected_stable_version": "$NEXT_RELEASE_STABLE"
|
"expected_stable_version": "v0.24.0"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "MountInfo.Futimens",
|
"name": "MountInfo.Futimens",
|
||||||
"comment": "Futimens changes file/directory last access and modification times, here times param\nis an array of Timespec struct having length 2, where times[0] represents the access time\nand times[1] represents the modification time.\n\nImplements:\n\n\tint ceph_futimens(struct ceph_mount_info *cmount, int fd, struct timespec times[2]);\n",
|
"comment": "Futimens changes file/directory last access and modification times, here times param\nis an array of Timespec struct having length 2, where times[0] represents the access time\nand times[1] represents the modification time.\n\nImplements:\n\n\tint ceph_futimens(struct ceph_mount_info *cmount, int fd, struct timespec times[2]);\n",
|
||||||
"added_in_version": "$NEXT_RELEASE",
|
"added_in_version": "v0.22.0",
|
||||||
"expected_stable_version": "$NEXT_RELEASE_STABLE"
|
"expected_stable_version": "v0.24.0"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "MountInfo.Futimes",
|
"name": "MountInfo.Futimes",
|
||||||
"comment": "Futimes changes file/directory last access and modification times, here times param\nis an array of Timeval struct type having length 2, where times[0] represents the access time\nand times[1] represents the modification time.\n\nImplements:\n\n\tint ceph_futimes(struct ceph_mount_info *cmount, int fd, struct timeval times[2]);\n",
|
"comment": "Futimes changes file/directory last access and modification times, here times param\nis an array of Timeval struct type having length 2, where times[0] represents the access time\nand times[1] represents the modification time.\n\nImplements:\n\n\tint ceph_futimes(struct ceph_mount_info *cmount, int fd, struct timeval times[2]);\n",
|
||||||
"added_in_version": "$NEXT_RELEASE",
|
"added_in_version": "v0.22.0",
|
||||||
"expected_stable_version": "$NEXT_RELEASE_STABLE"
|
"expected_stable_version": "v0.24.0"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
@ -1901,32 +1901,32 @@
|
|||||||
{
|
{
|
||||||
"name": "Image.LockAcquire",
|
"name": "Image.LockAcquire",
|
||||||
"comment": "LockAcquire takes a lock on the given image as per the provided lock_mode.\n\nImplements:\n\n\tint rbd_lock_acquire(rbd_image_t image, rbd_lock_mode_t lock_mode);\n",
|
"comment": "LockAcquire takes a lock on the given image as per the provided lock_mode.\n\nImplements:\n\n\tint rbd_lock_acquire(rbd_image_t image, rbd_lock_mode_t lock_mode);\n",
|
||||||
"added_in_version": "$NEXT_RELEASE",
|
"added_in_version": "v0.22.0",
|
||||||
"expected_stable_version": "$NEXT_RELEASE_STABLE"
|
"expected_stable_version": "v0.24.0"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Image.LockBreak",
|
"name": "Image.LockBreak",
|
||||||
"comment": "LockBreak breaks the lock of lock_mode on the provided lock_owner.\n\nImplements:\n\n\tint rbd_lock_break(rbd_image_t image, rbd_lock_mode_t lock_mode,\n\t\t\t\t\t const char *lock_owner);\n",
|
"comment": "LockBreak breaks the lock of lock_mode on the provided lock_owner.\n\nImplements:\n\n\tint rbd_lock_break(rbd_image_t image, rbd_lock_mode_t lock_mode,\n\t\t\t\t\t const char *lock_owner);\n",
|
||||||
"added_in_version": "$NEXT_RELEASE",
|
"added_in_version": "v0.22.0",
|
||||||
"expected_stable_version": "$NEXT_RELEASE_STABLE"
|
"expected_stable_version": "v0.24.0"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Image.LockGetOwners",
|
"name": "Image.LockGetOwners",
|
||||||
"comment": "LockGetOwners fetches the list of lock owners.\n\nImplements:\n\n\tint rbd_lock_get_owners(rbd_image_t image, rbd_lock_mode_t *lock_mode,\n\t\t\t\t\t\t\tchar **lock_owners, size_t *max_lock_owners);\n",
|
"comment": "LockGetOwners fetches the list of lock owners.\n\nImplements:\n\n\tint rbd_lock_get_owners(rbd_image_t image, rbd_lock_mode_t *lock_mode,\n\t\t\t\t\t\t\tchar **lock_owners, size_t *max_lock_owners);\n",
|
||||||
"added_in_version": "$NEXT_RELEASE",
|
"added_in_version": "v0.22.0",
|
||||||
"expected_stable_version": "$NEXT_RELEASE_STABLE"
|
"expected_stable_version": "v0.24.0"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Image.LockIsExclusiveOwner",
|
"name": "Image.LockIsExclusiveOwner",
|
||||||
"comment": "LockIsExclusiveOwner gets the status of the image exclusive lock.\n\nImplements:\n\n\tint rbd_is_exclusive_lock_owner(rbd_image_t image, int *is_owner);\n",
|
"comment": "LockIsExclusiveOwner gets the status of the image exclusive lock.\n\nImplements:\n\n\tint rbd_is_exclusive_lock_owner(rbd_image_t image, int *is_owner);\n",
|
||||||
"added_in_version": "$NEXT_RELEASE",
|
"added_in_version": "v0.22.0",
|
||||||
"expected_stable_version": "$NEXT_RELEASE_STABLE"
|
"expected_stable_version": "v0.24.0"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Image.LockRelease",
|
"name": "Image.LockRelease",
|
||||||
"comment": "LockRelease releases a lock on the image.\n\nImplements:\n\n\tint rbd_lock_release(rbd_image_t image);\n",
|
"comment": "LockRelease releases a lock on the image.\n\nImplements:\n\n\tint rbd_lock_release(rbd_image_t image);\n",
|
||||||
"added_in_version": "$NEXT_RELEASE",
|
"added_in_version": "v0.22.0",
|
||||||
"expected_stable_version": "$NEXT_RELEASE_STABLE"
|
"expected_stable_version": "v0.24.0"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@ -10,10 +10,10 @@ Name | Added in Version | Expected Stable Version |
|
|||||||
---- | ---------------- | ----------------------- |
|
---- | ---------------- | ----------------------- |
|
||||||
MountInfo.SelectFilesystem | v0.20.0 | v0.22.0 |
|
MountInfo.SelectFilesystem | v0.20.0 | v0.22.0 |
|
||||||
MountInfo.MakeDirs | v0.21.0 | v0.23.0 |
|
MountInfo.MakeDirs | v0.21.0 | v0.23.0 |
|
||||||
MountInfo.Mknod | $NEXT_RELEASE | $NEXT_RELEASE_STABLE |
|
MountInfo.Mknod | v0.22.0 | v0.24.0 |
|
||||||
MountInfo.Futime | $NEXT_RELEASE | $NEXT_RELEASE_STABLE |
|
MountInfo.Futime | v0.22.0 | v0.24.0 |
|
||||||
MountInfo.Futimens | $NEXT_RELEASE | $NEXT_RELEASE_STABLE |
|
MountInfo.Futimens | v0.22.0 | v0.24.0 |
|
||||||
MountInfo.Futimes | $NEXT_RELEASE | $NEXT_RELEASE_STABLE |
|
MountInfo.Futimes | v0.22.0 | v0.24.0 |
|
||||||
|
|
||||||
## Package: cephfs/admin
|
## Package: cephfs/admin
|
||||||
|
|
||||||
@ -68,11 +68,11 @@ SetMirrorPeerSiteClientName | v0.21.0 | v0.23.0 |
|
|||||||
SetMirrorPeerSiteName | v0.21.0 | v0.23.0 |
|
SetMirrorPeerSiteName | v0.21.0 | v0.23.0 |
|
||||||
SetMirrorPeerSiteDirection | v0.21.0 | v0.23.0 |
|
SetMirrorPeerSiteDirection | v0.21.0 | v0.23.0 |
|
||||||
Image.SparsifyWithProgress | v0.21.0 | v0.23.0 |
|
Image.SparsifyWithProgress | v0.21.0 | v0.23.0 |
|
||||||
Image.LockAcquire | $NEXT_RELEASE | $NEXT_RELEASE_STABLE |
|
Image.LockAcquire | v0.22.0 | v0.24.0 |
|
||||||
Image.LockBreak | $NEXT_RELEASE | $NEXT_RELEASE_STABLE |
|
Image.LockBreak | v0.22.0 | v0.24.0 |
|
||||||
Image.LockGetOwners | $NEXT_RELEASE | $NEXT_RELEASE_STABLE |
|
Image.LockGetOwners | v0.22.0 | v0.24.0 |
|
||||||
Image.LockIsExclusiveOwner | $NEXT_RELEASE | $NEXT_RELEASE_STABLE |
|
Image.LockIsExclusiveOwner | v0.22.0 | v0.24.0 |
|
||||||
Image.LockRelease | $NEXT_RELEASE | $NEXT_RELEASE_STABLE |
|
Image.LockRelease | v0.22.0 | v0.24.0 |
|
||||||
|
|
||||||
### Deprecated APIs
|
### Deprecated APIs
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user