Dan Magenheimer explains in <
4c2f7fca-dda2-4598-aaab-
3a6a3fe532cd@default>:
I think the tmem_destroy functionality pre-dates the
existence of tmem "freeable" memory* and was a way for
a toolset to force the hypervisor to free up the hypervisor
memory used by some or all ephemeral tmem pools. Once the
tmem allocation/free process was directly linked into
alloc_heap_pages() in the hypervisor (see call to
tmem_relinquish_pages()), this forcing function was
no longer needed.
So, bottom line, I *think* it can be ripped out, or at least
for now removed from the definition of the stable xl API/UI.
The libxl.c routine libxl_tmem_destroy() could also be
removed if you like, but I guess I'd prefer to leave the
lower level droppings in xc.c and in the hypervisor in case
I am misremembering.
Accordingly remove this interface from libxl and xl but don't touch libxc or
the hypervisor.
This is the only libxl_tmem_* function which might potentially have required
conversion to be asynchronous and which therefore might have been a potential
API stability concern.
Signed-off-by: Ian Campbell <ian.campbell@citrix.com>
Committed-by: Ian Jackson <ian.jackson.citrix.com>
Acked-by: Dan Magenheimer <dan.magenheimer@oracle.com>
Freeze tmem pools.
-=item B<tmem-destroy> I<domain-id>
-
-Destroy tmem pools.
-
=item B<tmem-thaw> I<domain-id>
Thaw tmem pools.
return rc;
}
-int libxl_tmem_destroy(libxl_ctx *ctx, uint32_t domid)
-{
- int rc;
-
- rc = xc_tmem_control(ctx->xch, -1, TMEMC_DESTROY, domid, 0, 0,
- 0, NULL);
- if (rc < 0) {
- LIBXL__LOG_ERRNOVAL(ctx, LIBXL__LOG_ERROR, rc,
- "Can not destroy tmem pools");
- return ERROR_FAIL;
- }
-
- return rc;
-}
-
int libxl_tmem_thaw(libxl_ctx *ctx, uint32_t domid)
{
int rc;
char *libxl_tmem_list(libxl_ctx *ctx, uint32_t domid, int use_long);
int libxl_tmem_freeze(libxl_ctx *ctx, uint32_t domid);
-int libxl_tmem_destroy(libxl_ctx *ctx, uint32_t domid);
int libxl_tmem_thaw(libxl_ctx *ctx, uint32_t domid);
int libxl_tmem_set(libxl_ctx *ctx, uint32_t domid, char* name,
uint32_t set);
int main_uptime(int argc, char **argv);
int main_tmem_list(int argc, char **argv);
int main_tmem_freeze(int argc, char **argv);
-int main_tmem_destroy(int argc, char **argv);
int main_tmem_thaw(int argc, char **argv);
int main_tmem_set(int argc, char **argv);
int main_tmem_shared_auth(int argc, char **argv);
return 0;
}
-int main_tmem_destroy(int argc, char **argv)
-{
- const char *dom = NULL;
- int all = 0;
- int opt;
-
- while ((opt = def_getopt(argc, argv, "a", "tmem-destroy", 0)) != -1) {
- switch (opt) {
- case 0: case 2:
- return opt;
- case 'a':
- all = 1;
- break;
- }
- }
-
- dom = argv[optind];
- if (!dom && all == 0) {
- fprintf(stderr, "You must specify -a or a domain id.\n\n");
- help("tmem-destroy");
- return 1;
- }
-
- if (all)
- domid = -1;
- else
- find_domain(dom);
-
- libxl_tmem_destroy(ctx, domid);
- return 0;
-}
-
int main_tmem_thaw(int argc, char **argv)
{
const char *dom = NULL;
"[<Domain>|-a]",
" -a Freeze all tmem",
},
- { "tmem-destroy",
- &main_tmem_destroy, 0,
- "Destroy tmem pools",
- "[<Domain>|-a]",
- " -a Destroy all tmem",
- },
{ "tmem-thaw",
&main_tmem_thaw, 0,
"Thaw tmem pools",