/illumos-gate/usr/src/common/zfs/ |
H A D | zfeature_common.c | 43 * Set to disable all feature checks while opening pools, allowing pools with 51 * Valid characters for feature guids. This list is mainly for aesthetic 66 * Every feature guid must contain exactly one colon which separates a reverse 67 * dns organization name from the feature's "short" name (e.g. 99 zfeature_info_t *feature = &spa_feature_table[i]; local 100 if (strcmp(guid, feature->fi_guid) == 0) 110 zfeature_info_t *feature = &spa_feature_table[i]; local 111 if (strcmp(name, feature->fi_uname) == 0) { 124 zfeature_info_t *feature = &spa_feature_table[fid]; local 126 for (int i = 0; feature 134 deps_contains_feature(const spa_feature_t *deps, const spa_feature_t feature) argument 147 zfeature_info_t *feature = &spa_feature_table[fid]; local [all...] |
/illumos-gate/usr/src/lib/smbsrv/libfksmbsrv/common/ |
H A D | fake_vfs.c | 46 #define VFTBITS(feature) ((feature) & 0xFFFFFFFFLL) 97 * Query a vfs for a feature. 98 * Returns 1 if feature is present, 0 if not 102 vfs_has_feature(vfs_t *vfsp, vfs_feature_t feature) argument 106 if (vfs_features & VFTBITS(feature))
|
/illumos-gate/usr/src/uts/common/fs/zfs/ |
H A D | zfeature.c | 39 * ZFS feature flags are used to provide fine-grained versioning to the ZFS 40 * on-disk format. Once enabled on a pool feature flags replace the old 46 * keep feature guids unique they should consist of the reverse dns name of the 47 * organization which implemented the feature and a short name for the feature, 55 * disk for each feature: 57 * 1) If there is no reference count stored on disk the feature is disabled. 59 * feature, but the feature has not been used yet, so no on-disk 61 * 3) If the reference count is greater than 0 the feature i 226 feature_get_refcount(spa_t *spa, zfeature_info_t *feature, uint64_t *res) argument 243 feature_get_refcount_from_disk(spa_t *spa, zfeature_info_t *feature, uint64_t *res) argument 272 feature_get_enabled_txg(spa_t *spa, zfeature_info_t *feature, uint64_t *res) argument 296 feature_sync(spa_t *spa, zfeature_info_t *feature, uint64_t refcount, dmu_tx_t *tx) argument 331 feature_enable_sync(spa_t *spa, zfeature_info_t *feature, dmu_tx_t *tx) argument 379 zfeature_info_t *feature = &spa_feature_table[fid]; local [all...] |
H A D | spa_misc.c | 670 * setting SPA_FEATURE_DISABLED for all entries in the feature 1254 spa_activate_mos_feature(spa_t *spa, const char *feature, dmu_tx_t *tx) argument 1256 if (!nvlist_exists(spa->spa_label_features, feature)) { 1257 fnvlist_add_boolean(spa->spa_label_features, feature); 1271 spa_deactivate_mos_feature(spa_t *spa, const char *feature) argument 1273 if (nvlist_remove_all(spa->spa_label_features, feature) == 0)
|
/illumos-gate/usr/src/cmd/zhack/ |
H A D | zhack.c | 71 " feature stat <pool>\n" 73 " feature enable [-d desc] <pool> <feature>\n" 74 " add a new enabled feature to the pool\n" 75 " -d <desc> sets the feature's description\n" 76 " feature ref [-md] <pool> <feature>\n" 77 " change the refcount on the given feature\n" 79 " -m add the feature to the label if increasing refcount\n" 81 " <feature> 291 zfeature_info_t *feature = arg; local 307 zfeature_info_t feature; local 373 zfeature_info_t *feature = arg; local 386 zfeature_info_t *feature = arg; local 403 zfeature_info_t feature; local [all...] |
/illumos-gate/usr/src/cmd/cdrw/ |
H A D | mmc.c | 246 get_configuration(int fd, uint16_t feature, int bufsize, uchar_t *buf) argument 264 scmd->uscsi_cdb[2] = (feature >> 8) & 0xff; 265 scmd->uscsi_cdb[3] = feature & 0xff; 712 * feature - the MMC Feature for which we'd like to know 720 ftr_supported(int fd, uint16_t feature) argument 733 if (get_configuration(fd, feature, response_len, bufp) == 1) {
|
/illumos-gate/usr/src/cmd/hal/utils/ |
H A D | cdutils.c | 189 get_configuration(int fd, uint16_t feature, int bufsize, uchar_t *buf) argument 199 scmd.uscsi_cdb[2] = (feature >> 8) & 0xff; /* starting feature # */ 200 scmd.uscsi_cdb[3] = feature & 0xff;
|
/illumos-gate/usr/src/lib/libast/amd64/include/ast/ |
H A D | ast.h | 153 char* feature; member in struct:__anon2583
|
/illumos-gate/usr/src/lib/libast/common/include/ |
H A D | ast.h | 144 char* feature; member in struct:__anon2618
|
/illumos-gate/usr/src/lib/libast/common/port/ |
H A D | astconf.c | 289 static char* feature(const char*, const char*, const char*, unsigned int, Error_f); 360 feature(s, d, v, 0, 0); 747 * value==0 get feature name 748 * value!=0 set feature name 753 feature(const char* name, const char* path, const char* value, unsigned int flags, Error_f conferror) function 762 error(-2, "astconf feature name=%s path=%s value=%s flags=%04x fp=%p%s", name, path, value, flags, fp, state.synthesizing ? " SYNTHESIZING" : ""); 1471 if ((look.standard < 0 || look.standard == CONF_AST) && look.call <= 0 && look.section <= 1 && (s = feature(look.name, path, value, flags, conferror))) 1629 if (!(s = feature(fp->name, path, NiL, 0, 0)) || !*s)
|
/illumos-gate/usr/src/lib/libast/i386/include/ast/ |
H A D | ast.h | 153 char* feature; member in struct:__anon2683
|
/illumos-gate/usr/src/lib/libast/sparc/include/ast/ |
H A D | ast.h | 153 char* feature; member in struct:__anon2705
|
/illumos-gate/usr/src/lib/libast/sparcv9/include/ast/ |
H A D | ast.h | 153 char* feature; member in struct:__anon2727
|
/illumos-gate/usr/src/uts/common/io/virtio/ |
H A D | virtio.c | 141 virtio_has_feature(struct virtio_softc *sc, uint32_t feature) argument 143 return (sc->sc_features & feature);
|
/illumos-gate/usr/src/boot/sys/boot/arm/ixp425/boot2/ |
H A D | ixp425_board.c | 258 u_int32_t sector, u_int32_t count, u_int32_t feature); 536 u_int32_t count, u_int32_t feature) 542 cfwrite8(CF_FEATURE, feature); 671 /* cmd, cyl, head, sect, count, feature */ 535 cfcmd(u_int32_t cmd, u_int32_t cylinder, u_int32_t head, u_int32_t sector, u_int32_t count, u_int32_t feature) argument
|
/illumos-gate/usr/src/uts/common/io/usb/usba/ |
H A D | usba10_calls.c | 279 uint_t feature, 283 return (usb_clear_feature(dip, ph, type, feature, what, flags)); 275 usba10_usb_clear_feature( dev_info_t *dip, usb_pipe_handle_t ph, uint_t type, uint_t feature, uint_t what, usb_flags_t flags) argument
|
H A D | usbai_util.c | 1470 * feature - feature to be cleared 1475 * USB_SUCCESS - on doing a successful clear feature 1483 uint_t feature, 1492 "usb_clear_feature: type = 0x%x, feature = 0x%x, what = 0x%x " 1493 "uf = 0x%x", type, feature, what, flags); 1504 /* issue Clear feature */ 1508 feature, 1529 * feature - feature t 1480 usb_clear_feature(dev_info_t *dip, usb_pipe_handle_t ph, uint_t type, uint_t feature, uint_t what, usb_flags_t flags) argument 1547 usb_clr_feature( dev_info_t *dip, uint_t type, uint_t feature, uint_t what, usb_flags_t flags, void (*cb)( usb_pipe_handle_t ph, usb_opaque_t arg, int rval, usb_cb_flags_t flags), usb_opaque_t cb_arg) argument 1597 uint_t feature = ((uint_t)n >> 8) & 0xff; local [all...] |
/illumos-gate/usr/src/uts/common/io/usb/usba10/ |
H A D | usba10.c | 307 uint_t feature, 311 return (usba10_usb_clear_feature(dip, ph, type, feature, what, flags)); 303 usb_clear_feature( dev_info_t *dip, usb_pipe_handle_t ph, uint_t type, uint_t feature, uint_t what, usb_flags_t flags) argument
|
/illumos-gate/usr/src/uts/common/io/nvme/ |
H A D | nvme.c | 1632 nvme_set_features(nvme_t *nvme, uint32_t nsid, uint8_t feature, uint32_t val, argument 1644 cmd->nc_sqe.sqe_cdw10 = feature; 1647 switch (feature) { 1669 feature, cmd->nc_cqe.cqe_sf.sf_sct,
|
/illumos-gate/usr/src/lib/libdiskmgt/common/ |
H A D | drive.c | 102 uchar_t feature[2]; /* common to all */ member in struct:conf_feature 230 struct conf_feature feature; member in struct:get_configuration 1255 struct conf_feature *feature; local 1260 feature = &config->feature; 1261 flen = feature->len / sizeof (struct profile_list); 1265 prof_num = (int)convnum(feature->features.plist[0].profile, 2);
|
/illumos-gate/usr/src/uts/intel/io/dktp/controller/ata/ |
H A D | ata_common.c | 1756 uchar_t feature, 1778 expect_drdy, cmd, feature, count, 1791 ddi_put8(io_hdl1, ata_ctlp->ac_feature, feature); 1804 expect_drdy, cmd, feature, count, 1830 expect_drdy, cmd, feature, count, 1848 uchar_t feature, 1854 ATC_SET_FEAT, feature, value, 0, 0, 0, 0); 1855 /* feature, count, sector, head, cyl_low, cyl_hi */ 1861 ADBG_ERROR(("?ata_set_feature: (0x%x,0x%x) failed\n", feature, value)); 2411 * feature 1749 ata_command( ata_ctl_t *ata_ctlp, ata_drv_t *ata_drvp, int expect_drdy, int silent, uint_t busy_wait, uchar_t cmd, uchar_t feature, uchar_t count, uchar_t sector, uchar_t head, uchar_t cyl_low, uchar_t cyl_hi) argument 1845 ata_set_feature( ata_ctl_t *ata_ctlp, ata_drv_t *ata_drvp, uchar_t feature, uchar_t value) argument [all...] |
/illumos-gate/usr/src/uts/common/io/vioif/ |
H A D | vioif.c | 1543 vioif_has_feature(struct vioif_softc *sc, uint32_t feature) argument 1545 return (virtio_has_feature(&sc->sc_virtio, feature));
|
/illumos-gate/usr/src/uts/i86pc/vm/ |
H A D | hat_i86.c | 3809 hat_supported(enum hat_features feature, void *arg) argument 3811 switch (feature) { 3826 panic("hat_supported() - unknown feature");
|
/illumos-gate/usr/src/lib/libzfs/common/ |
H A D | libzfs_pool.c | 453 "invalid feature '%s'"), fname); 739 entry->pl_user_prop = zfs_asprintf(hdl, "feature@%s", 808 * Get the state for the given feature on the given ZFS pool. 818 const char *feature = strchr(propname, '@') + 1; local 824 * Convert from feature name to feature guid. This conversion is 832 ret = zfeature_lookup_name(feature, &fid); 837 feature = spa_feature_table[fid].fi_guid; 840 if (nvlist_lookup_uint64(features, feature, &refcount) == 0) 1757 "pool uses the following feature( [all...] |
/illumos-gate/usr/src/uts/intel/io/acpica/ |
H A D | osl.c | 1103 AcpiOsValidateInterface(char *feature) argument 1107 ASSERT(feature != NULL); 1110 if (strcmp(feature, AcpiOSIFeatures[i].feature_name) != 0) {
|