Lines Matching refs:pctx

266 	struct ceph_parse_opts_ctx *pctx = fc->fs_private;
267 struct ceph_mount_options *fsopt = pctx->opts;
273 pctx->copts, fc->log.log, ',');
286 struct ceph_parse_opts_ctx *pctx = fc->fs_private;
287 struct ceph_mount_options *fsopt = pctx->opts;
342 struct ceph_parse_opts_ctx *pctx = fc->fs_private;
343 struct ceph_mount_options *fsopt = pctx->opts;
394 struct ceph_parse_opts_ctx *pctx = fc->fs_private;
395 struct ceph_mount_options *fsopt = pctx->opts;
402 pctx->copts, fc->log.log, '/');
408 struct ceph_parse_opts_ctx *pctx = fc->fs_private;
409 struct ceph_mount_options *fsopt = pctx->opts;
414 ret = ceph_parse_param(param, pctx->copts, fc->log.log);
1292 struct ceph_parse_opts_ctx *pctx = fc->fs_private;
1293 struct ceph_mount_options *fsopt = pctx->opts;
1309 fsc = create_fs_client(pctx->opts, pctx->copts);
1310 pctx->opts = NULL;
1311 pctx->copts = NULL;
1373 struct ceph_parse_opts_ctx *pctx = fc->fs_private;
1375 if (pctx) {
1376 destroy_mount_options(pctx->opts);
1377 ceph_destroy_options(pctx->copts);
1378 kfree(pctx);
1385 struct ceph_parse_opts_ctx *pctx = fc->fs_private;
1386 struct ceph_mount_options *fsopt = pctx->opts;
1428 struct ceph_parse_opts_ctx *pctx;
1431 pctx = kzalloc(sizeof(*pctx), GFP_KERNEL);
1432 if (!pctx)
1435 pctx->copts = ceph_alloc_options();
1436 if (!pctx->copts)
1439 pctx->opts = kzalloc(sizeof(*pctx->opts), GFP_KERNEL);
1440 if (!pctx->opts)
1443 fsopt = pctx->opts;
1463 fc->fs_private = pctx;
1468 destroy_mount_options(pctx->opts);
1469 ceph_destroy_options(pctx->copts);
1470 kfree(pctx);