Lines Matching refs:pctx
241 struct ceph_parse_opts_ctx *pctx = fc->fs_private;
242 struct ceph_mount_options *fsopt = pctx->opts;
275 pctx->copts, fc->log.log);
287 struct ceph_parse_opts_ctx *pctx = fc->fs_private;
288 struct ceph_mount_options *fsopt = pctx->opts;
293 ret = ceph_parse_param(param, pctx->copts, fc->log.log);
1057 struct ceph_parse_opts_ctx *pctx = fc->fs_private;
1071 fsc = create_fs_client(pctx->opts, pctx->copts);
1072 pctx->opts = NULL;
1073 pctx->copts = NULL;
1134 struct ceph_parse_opts_ctx *pctx = fc->fs_private;
1136 if (pctx) {
1137 destroy_mount_options(pctx->opts);
1138 ceph_destroy_options(pctx->copts);
1139 kfree(pctx);
1145 struct ceph_parse_opts_ctx *pctx = fc->fs_private;
1146 struct ceph_mount_options *fsopt = pctx->opts;
1170 struct ceph_parse_opts_ctx *pctx;
1173 pctx = kzalloc(sizeof(*pctx), GFP_KERNEL);
1174 if (!pctx)
1177 pctx->copts = ceph_alloc_options();
1178 if (!pctx->copts)
1181 pctx->opts = kzalloc(sizeof(*pctx->opts), GFP_KERNEL);
1182 if (!pctx->opts)
1185 fsopt = pctx->opts;
1205 fc->fs_private = pctx;
1210 destroy_mount_options(pctx->opts);
1211 ceph_destroy_options(pctx->copts);
1212 kfree(pctx);