• Home
  • Raw
  • Download

Lines Matching refs:pctx

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