mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-26 16:41:25 +00:00
rbd: move ceph_parse_options() call up
Move option parsing out of rbd_get_client() and into its caller. Signed-off-by: Alex Elder <elder@inktank.com> Reviewed-by: Josh Durgin <josh.durgin@inktank.com>
This commit is contained in:
parent
daba5fdb4c
commit
78cea76e05
1 changed files with 27 additions and 21 deletions
|
@ -453,27 +453,11 @@ static int parse_rbd_opts_token(char *c, void *private)
|
||||||
* Get a ceph client with specific addr and configuration, if one does
|
* Get a ceph client with specific addr and configuration, if one does
|
||||||
* not exist create it.
|
* not exist create it.
|
||||||
*/
|
*/
|
||||||
static int rbd_get_client(struct rbd_device *rbd_dev, const char *mon_addr,
|
static int rbd_get_client(struct rbd_device *rbd_dev,
|
||||||
size_t mon_addr_len, char *options)
|
struct ceph_options *ceph_opts)
|
||||||
{
|
{
|
||||||
struct rbd_options rbd_opts;
|
|
||||||
struct ceph_options *ceph_opts;
|
|
||||||
struct rbd_client *rbdc;
|
struct rbd_client *rbdc;
|
||||||
|
|
||||||
/* Initialize all rbd options to the defaults */
|
|
||||||
|
|
||||||
rbd_opts.read_only = RBD_READ_ONLY_DEFAULT;
|
|
||||||
|
|
||||||
ceph_opts = ceph_parse_options(options, mon_addr,
|
|
||||||
mon_addr + mon_addr_len,
|
|
||||||
parse_rbd_opts_token, &rbd_opts);
|
|
||||||
if (IS_ERR(ceph_opts))
|
|
||||||
return PTR_ERR(ceph_opts);
|
|
||||||
|
|
||||||
/* Record the parsed rbd options */
|
|
||||||
|
|
||||||
rbd_dev->mapping.read_only = rbd_opts.read_only;
|
|
||||||
|
|
||||||
rbdc = rbd_client_find(ceph_opts);
|
rbdc = rbd_client_find(ceph_opts);
|
||||||
if (rbdc) {
|
if (rbdc) {
|
||||||
/* using an existing client */
|
/* using an existing client */
|
||||||
|
@ -3132,9 +3116,11 @@ static ssize_t rbd_add(struct bus_type *bus,
|
||||||
struct rbd_device *rbd_dev = NULL;
|
struct rbd_device *rbd_dev = NULL;
|
||||||
const char *mon_addrs = NULL;
|
const char *mon_addrs = NULL;
|
||||||
size_t mon_addrs_size = 0;
|
size_t mon_addrs_size = 0;
|
||||||
|
char *snap_name;
|
||||||
|
struct rbd_options rbd_opts;
|
||||||
|
struct ceph_options *ceph_opts;
|
||||||
struct ceph_osd_client *osdc;
|
struct ceph_osd_client *osdc;
|
||||||
int rc = -ENOMEM;
|
int rc = -ENOMEM;
|
||||||
char *snap_name;
|
|
||||||
|
|
||||||
if (!try_module_get(THIS_MODULE))
|
if (!try_module_get(THIS_MODULE))
|
||||||
return -ENODEV;
|
return -ENODEV;
|
||||||
|
@ -3160,9 +3146,26 @@ static ssize_t rbd_add(struct bus_type *bus,
|
||||||
goto err_out_mem;
|
goto err_out_mem;
|
||||||
}
|
}
|
||||||
|
|
||||||
rc = rbd_get_client(rbd_dev, mon_addrs, mon_addrs_size - 1, options);
|
/* Initialize all rbd options to the defaults */
|
||||||
if (rc < 0)
|
|
||||||
|
rbd_opts.read_only = RBD_READ_ONLY_DEFAULT;
|
||||||
|
|
||||||
|
ceph_opts = ceph_parse_options(options, mon_addrs,
|
||||||
|
mon_addrs + mon_addrs_size - 1,
|
||||||
|
parse_rbd_opts_token, &rbd_opts);
|
||||||
|
if (IS_ERR(ceph_opts)) {
|
||||||
|
rc = PTR_ERR(ceph_opts);
|
||||||
goto err_out_args;
|
goto err_out_args;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Record the parsed rbd options */
|
||||||
|
|
||||||
|
rbd_dev->mapping.read_only = rbd_opts.read_only;
|
||||||
|
|
||||||
|
rc = rbd_get_client(rbd_dev, ceph_opts);
|
||||||
|
if (rc < 0)
|
||||||
|
goto err_out_opts;
|
||||||
|
ceph_opts = NULL; /* ceph_opts now owned by rbd_dev client */
|
||||||
|
|
||||||
/* pick the pool */
|
/* pick the pool */
|
||||||
osdc = &rbd_dev->rbd_client->client->osdc;
|
osdc = &rbd_dev->rbd_client->client->osdc;
|
||||||
|
@ -3254,6 +3257,9 @@ err_out_client:
|
||||||
kfree(rbd_dev->header_name);
|
kfree(rbd_dev->header_name);
|
||||||
rbd_put_client(rbd_dev);
|
rbd_put_client(rbd_dev);
|
||||||
kfree(rbd_dev->image_id);
|
kfree(rbd_dev->image_id);
|
||||||
|
err_out_opts:
|
||||||
|
if (ceph_opts)
|
||||||
|
ceph_destroy_options(ceph_opts);
|
||||||
err_out_args:
|
err_out_args:
|
||||||
kfree(rbd_dev->snap_name);
|
kfree(rbd_dev->snap_name);
|
||||||
kfree(rbd_dev->image_name);
|
kfree(rbd_dev->image_name);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue