Searched defs:root (Results 251 - 254 of 254) sorted by relevance

<<11

/illumos-gate/usr/src/uts/common/vm/
H A Dvm_page.c560 page_t *root = NULL; local
628 * the root page until we have a full large page.
636 if (root == NULL) {
646 page_list_concat(&root, &pp);
653 page_list_add_pages(root, PG_LIST_ISINIT);
654 root = NULL;
666 ASSERT(root == NULL && cnt == 0);
683 root = pp;
685 ASSERT(root == NULL && cnt == 0);
2778 panic("page_free_pages: not root pag
[all...]
/illumos-gate/usr/src/cmd/ztest/
H A Dztest.c930 nvlist_t *root, **child; local
944 VERIFY(nvlist_alloc(&root, NV_UNIQUE_NAME, 0) == 0);
945 VERIFY(nvlist_add_string(root, ZPOOL_CONFIG_TYPE, VDEV_TYPE_ROOT) == 0);
946 VERIFY(nvlist_add_nvlist_array(root, aux ? aux : ZPOOL_CONFIG_CHILDREN,
954 return (root);
2756 nvlist_t *root; local
2864 * If pvd is not a mirror or root, the attach should fail with ENOTSUP,
2894 root = make_vdev_root(newpath, NULL, NULL, newvd == NULL ? newsize : 0,
2897 error = spa_vdev_attach(spa, oldguid, root, replacing);
2899 nvlist_free(root);
[all...]
/illumos-gate/usr/src/cmd/boot/bootadm/
H A Dbootadm.c163 #define DEFAULT_DEV_UID 0 /* user root */
174 "root", /* ROOT_CMD */
275 static int is_ufs(char *root);
790 * An alternate platform requires an alternate root
902 bam_error(_("you must be root to run this command\n"));
1063 * if bam_alt_root is set, the stage files are used from alt root.
1065 * are read from pool bootfs unless alt root is set.
1067 * use arguments as targets, stage files are from alt or current root
1094 bam_error(_("alternate root %s not in mnttab\n"),
1145 * if altroot was set, we got be name and be root, onl
1737 list_archive(char *root, char *opt) argument
1766 list2file(char *root, char *tmp, char *final, line_t *start) argument
2485 set_cache_dir(char *root, int what) argument
2525 set_update_dir(char *root, int what) argument
2570 is_valid_archive(char *root, int what) argument
2661 check_flags_and_files(char *root) argument
2747 read_one_list(char *root, filelist_t *flistp, char *filelist) argument
2777 read_list(char *root, filelist_t *flistp) argument
2858 getoldstat(char *root) argument
2939 check4stale(char *root) argument
3004 walk_list(char *root, filelist_t *flistp) argument
3038 update_timestamp(char *root) argument
3061 savenew(char *root) argument
3134 update_required(char *root) argument
3231 flushfs(char *root) argument
3300 is_be(char *root) argument
3673 mkisofs_archive(char *root, int what) argument
3767 create_ramdisk(char *root) argument
3844 is_ramdisk(char *root) argument
3910 is_boot_archive(char *root) argument
3946 is_grub(const char *root) argument
3981 is_zfs(char *root) argument
4005 is_ufs(char *root) argument
4029 is_pcfs(char *root) argument
4054 is_readonly(char *root) argument
4091 update_archive(char *root, char *opt) argument
4412 update_all(char *root, char *opt) argument
8402 find_boot_entry( menu_t *mp, char *title, char *kernel, char *findroot, char *root, char *module, int root_opt, int *entry_num) argument
8550 update_boot_entry(menu_t *mp, char *title, char *findroot, char *root, char *kernel, char *mod_kernel, char *module, int root_opt) argument
9987 menu_write(char *root, menu_t *mp) argument
10351 ucode_install(char *root) argument
[all...]
/illumos-gate/usr/src/lib/libzonecfg/common/
H A Dlibzonecfg.c244 * Set the root (/) path for all zonecfg configuration files. This is a
421 getroot(zone_dochandle_t handle, xmlNodePtr *root) argument
426 *root = xmlDocGetRootElement(handle->zone_dh_doc);
428 if (*root == NULL)
431 if (xmlStrcmp((*root)->name, DTD_ELEM_ZONE))
440 xmlNodePtr root; local
443 if ((err = getroot(handle, &root)) != 0)
446 handle->zone_dh_cur = root;
447 handle->zone_dh_top = root;
485 xmlNodePtr root; local
498 xmlNodePtr root; local
512 xmlNodePtr root; local
563 xmlNodePtr root, child, next; local
[all...]

Completed in 91 milliseconds

<<11