Lines Matching refs:pctx

263 	struct ceph_parse_opts_ctx *pctx = fc->fs_private;
264 struct ceph_mount_options *fsopt = pctx->opts;
270 pctx->copts, fc->log.log, ',');
283 struct ceph_parse_opts_ctx *pctx = fc->fs_private;
284 struct ceph_mount_options *fsopt = pctx->opts;
339 struct ceph_parse_opts_ctx *pctx = fc->fs_private;
340 struct ceph_mount_options *fsopt = pctx->opts;
391 struct ceph_parse_opts_ctx *pctx = fc->fs_private;
392 struct ceph_mount_options *fsopt = pctx->opts;
399 pctx->copts, fc->log.log, '/');
405 struct ceph_parse_opts_ctx *pctx = fc->fs_private;
406 struct ceph_mount_options *fsopt = pctx->opts;
411 ret = ceph_parse_param(param, pctx->copts, fc->log.log);
1285 struct ceph_parse_opts_ctx *pctx = fc->fs_private;
1286 struct ceph_mount_options *fsopt = pctx->opts;
1302 fsc = create_fs_client(pctx->opts, pctx->copts);
1303 pctx->opts = NULL;
1304 pctx->copts = NULL;
1365 struct ceph_parse_opts_ctx *pctx = fc->fs_private;
1367 if (pctx) {
1368 destroy_mount_options(pctx->opts);
1369 ceph_destroy_options(pctx->copts);
1370 kfree(pctx);
1377 struct ceph_parse_opts_ctx *pctx = fc->fs_private;
1378 struct ceph_mount_options *fsopt = pctx->opts;
1419 struct ceph_parse_opts_ctx *pctx;
1422 pctx = kzalloc(sizeof(*pctx), GFP_KERNEL);
1423 if (!pctx)
1426 pctx->copts = ceph_alloc_options();
1427 if (!pctx->copts)
1430 pctx->opts = kzalloc(sizeof(*pctx->opts), GFP_KERNEL);
1431 if (!pctx->opts)
1434 fsopt = pctx->opts;
1454 fc->fs_private = pctx;
1459 destroy_mount_options(pctx->opts);
1460 ceph_destroy_options(pctx->copts);
1461 kfree(pctx);