/illumos-gate/usr/src/uts/common/sys/ |
H A D | fem.h | 151 int (*femop_open)(femarg_t *vf, int mode, cred_t *cr, \ 153 int (*femop_close)(femarg_t *vf, int flag, int count, \ 156 int (*femop_read)(femarg_t *vf, uio_t *uiop, int ioflag, \ 158 int (*femop_write)(femarg_t *vf, uio_t *uiop, int ioflag, \ 160 int (*femop_ioctl)(femarg_t *vf, int cmd, intptr_t arg, \ 163 int (*femop_setfl)(femarg_t *vf, int oflags, int nflags, \ 165 int (*femop_getattr)(femarg_t *vf, vattr_t *vap, int flags, \ 167 int (*femop_setattr)(femarg_t *vf, vattr_t *vap, int flags, \ 169 int (*femop_access)(femarg_t *vf, int mode, int flags, \ 171 int (*femop_lookup)(femarg_t *vf, char *nm, vnode_t **vpp, \ [all …]
|
/illumos-gate/usr/src/uts/common/fs/ |
H A D | fem.c | 2079 vnext_open(femarg_t *vf, int mode, cred_t *cr, caller_context_t *ct) in vnext_open() argument 2084 ASSERT(vf != NULL); in vnext_open() 2085 vf->fa_fnode--; in vnext_open() 2086 vsop_find(vf, &func, int, &arg0, vop_open, femop_open); in vnext_open() 2093 vnext_close(femarg_t *vf, int flag, int count, offset_t offset, cred_t *cr, in vnext_close() argument 2099 ASSERT(vf != NULL); in vnext_close() 2100 vf->fa_fnode--; in vnext_close() 2101 vsop_find(vf, &func, int, &arg0, vop_close, femop_close); in vnext_close() 2108 vnext_read(femarg_t *vf, uio_t *uiop, int ioflag, cred_t *cr, in vnext_read() argument 2114 ASSERT(vf != NULL); in vnext_read() [all …]
|
/illumos-gate/usr/src/uts/common/fs/zfs/ |
H A D | vdev_file.c | 60 vdev_file_t *vf; in vdev_file_open() local 97 vf = vd->vdev_tsd; in vdev_file_open() 101 vf = vd->vdev_tsd = kmem_zalloc(sizeof (vdev_file_t), KM_SLEEP); in vdev_file_open() 118 vf->vf_vnode = vp; in vdev_file_open() 135 error = VOP_GETATTR(vf->vf_vnode, &vattr, 0, kcred, NULL); in vdev_file_open() 150 vdev_file_t *vf = vd->vdev_tsd; in vdev_file_close() local 152 if (vd->vdev_reopening || vf == NULL) in vdev_file_close() 155 if (vf->vf_vnode != NULL) { in vdev_file_close() 156 (void) VOP_PUTPAGE(vf->vf_vnode, 0, 0, B_INVAL, kcred, NULL); in vdev_file_close() 157 (void) VOP_CLOSE(vf->vf_vnode, spa_mode(vd->vdev_spa), 1, 0, in vdev_file_close() [all …]
|
/illumos-gate/usr/src/uts/common/fs/portfs/ |
H A D | port_fop.c | 215 static int port_fop_open(femarg_t *vf, int mode, cred_t *cr, 217 static int port_fop_read(femarg_t *vf, uio_t *uiop, int ioflag, cred_t *cr, 219 static int port_fop_write(femarg_t *vf, uio_t *uiop, int ioflag, cred_t *cr, 221 static int port_fop_map(femarg_t *vf, offset_t off, struct as *as, 224 static int port_fop_setattr(femarg_t *vf, vattr_t *vap, int flags, cred_t *cr, 226 static int port_fop_create(femarg_t *vf, char *name, vattr_t *vap, 229 static int port_fop_remove(femarg_t *vf, char *nm, cred_t *cr, 231 static int port_fop_link(femarg_t *vf, vnode_t *svp, char *tnm, cred_t *cr, 233 static int port_fop_rename(femarg_t *vf, char *snm, vnode_t *tdvp, char *tnm, 235 static int port_fop_mkdir(femarg_t *vf, char *dirname, vattr_t *vap, [all …]
|
/illumos-gate/usr/src/common/crypto/aes/amd64/ |
H A D | aesopt.h | 696 #define no_table(x, box, vf, rf, c) bytes2word(\ argument 697 box[bval(vf(x, 0, c), rf(0, c))], \ 698 box[bval(vf(x, 1, c), rf(1, c))], \ 699 box[bval(vf(x, 2, c), rf(2, c))], \ 700 box[bval(vf(x, 3, c), rf(3, c))]) 702 #define one_table(x, op, tab, vf, rf, c) \ argument 703 (tab[bval(vf(x, 0, c), rf(0, c))] \ 704 ^ op(tab[bval(vf(x, 1, c), rf(1, c))], 1) \ 705 ^ op(tab[bval(vf(x, 2, c), rf(2, c))], 2) \ 706 ^ op(tab[bval(vf(x, 3, c), rf(3, c))], 3)) [all …]
|
/illumos-gate/usr/src/uts/common/io/cxgbe/common/ |
H A D | common.h | 681 int port, int pf, int vf, u8 mac[], bool alloc_vi); 683 int port, int pf, int vf, u8 mac[]); 684 int t4_port_init(struct adapter *adap, int mbox, int pf, int vf); 685 int t4_mirror_init(struct adapter *adap, int mbox, int pf, int vf, 742 int t4_set_vf_mac_acl(struct adapter *adapter, unsigned int vf, 816 unsigned int vf, unsigned int nparams, const u32 *params, 819 unsigned int vf, unsigned int nparams, const u32 *params, 822 unsigned int vf, unsigned int nparams, const u32 *params, 825 unsigned int pf, unsigned int vf, 829 unsigned int vf, unsigned int nparams, const u32 *params, [all …]
|
H A D | t4_hw.c | 7857 unsigned int vf, unsigned int nparams, const u32 *params, in t4_query_params_rw() argument 7871 V_FW_PARAMS_CMD_VFN(vf)); in t4_query_params_rw() 7898 unsigned int vf, unsigned int nparams, const u32 *params, in t4_query_params() argument 7901 return t4_query_params_rw(adap, mbox, pf, vf, nparams, params, val, 0, in t4_query_params() 7906 unsigned int vf, unsigned int nparams, const u32 *params, in t4_query_params_ns() argument 7909 return t4_query_params_rw(adap, mbox, pf, vf, nparams, params, val, 0, in t4_query_params_ns() 7928 unsigned int pf, unsigned int vf, in t4_set_params_timeout() argument 7942 V_FW_PARAMS_CMD_VFN(vf)); in t4_set_params_timeout() 7967 unsigned int vf, unsigned int nparams, const u32 *params, in t4_set_params() argument 7970 return t4_set_params_timeout(adap, mbox, pf, vf, nparams, params, val, in t4_set_params() [all …]
|
/illumos-gate/usr/src/common/font/ |
H A D | font.c | 356 font_lookup(const struct font *vf, uint32_t c) in font_lookup() argument 366 dst = font_bisearch(vf->vf_map[VFNT_MAP_BOLD], in font_lookup() 367 vf->vf_map_count[VFNT_MAP_BOLD], src); in font_lookup() 371 dst = font_bisearch(vf->vf_map[VFNT_MAP_NORMAL], in font_lookup() 372 vf->vf_map_count[VFNT_MAP_NORMAL], src); in font_lookup() 375 stride = howmany(vf->vf_width, 8) * vf->vf_height; in font_lookup() 376 return (&vf->vf_bytes[dst * stride]); in font_lookup()
|
/illumos-gate/usr/src/uts/common/io/sfxge/common/ |
H A D | hunt_nic.c | 52 uint32_t vf; in hunt_board_cfg() local 78 if ((rc = efx_mcdi_get_function_info(enp, &pf, &vf)) != 0) in hunt_board_cfg() 82 encp->enc_vf = vf; in hunt_board_cfg()
|
H A D | medford_nic.c | 107 uint32_t vf; in medford_board_cfg() local 138 if ((rc = efx_mcdi_get_function_info(enp, &pf, &vf)) != 0) in medford_board_cfg() 142 encp->enc_vf = vf; in medford_board_cfg()
|
/illumos-gate/usr/src/uts/common/io/qede/579xx/drivers/ecore/ |
H A D | ecore_cxt.c | 1176 u32 type, vf; in ecore_cid_map_free() local 1183 for (vf = 0; vf < COMMON_MAX_NUM_VFS; vf++) { in ecore_cid_map_free() 1185 p_mngr->acquired_vf[type][vf].cid_map); in ecore_cid_map_free() 1186 p_mngr->acquired_vf[type][vf].max_count = 0; in ecore_cid_map_free() 1187 p_mngr->acquired_vf[type][vf].start_cid = 0; in ecore_cid_map_free() 1221 u32 type, vf; in ecore_cid_map_alloc() local 1234 for (vf = 0; vf < COMMON_MAX_NUM_VFS; vf++) { in ecore_cid_map_alloc() 1235 p_map = &p_mngr->acquired_vf[type][vf]; in ecore_cid_map_alloc() 1368 u32 vf; in ecore_cxt_mngr_setup() local 1382 for (vf = 0; vf < COMMON_MAX_NUM_VFS; vf++) { in ecore_cxt_mngr_setup() [all …]
|
/illumos-gate/usr/src/uts/common/io/ixgbe/core/ |
H A D | ixgbe_x550.h | 64 bool enable, int vf); 80 void ixgbe_restore_mdd_vf_X550(struct ixgbe_hw *hw, u32 vf);
|
H A D | ixgbe_api.h | 209 unsigned int vf); 211 int vf); 219 void ixgbe_restore_mdd_vf(struct ixgbe_hw *hw, u32 vf);
|
H A D | ixgbe_common.h | 155 void ixgbe_set_mac_anti_spoofing(struct ixgbe_hw *hw, bool enable, int vf); 156 void ixgbe_set_vlan_anti_spoofing(struct ixgbe_hw *hw, bool enable, int vf);
|
H A D | ixgbe_api.c | 1224 void ixgbe_set_ethertype_anti_spoofing(struct ixgbe_hw *hw, bool enable, int vf) in ixgbe_set_ethertype_anti_spoofing() argument 1227 hw->mac.ops.set_ethertype_anti_spoofing(hw, enable, vf); in ixgbe_set_ethertype_anti_spoofing() 1303 void ixgbe_restore_mdd_vf(struct ixgbe_hw *hw, u32 vf) in ixgbe_restore_mdd_vf() argument 1306 hw->mac.ops.restore_mdd_vf(hw, vf); in ixgbe_restore_mdd_vf()
|
H A D | ixgbe_x550.c | 1075 bool enable, int vf) in ixgbe_set_ethertype_anti_spoofing_X550() argument 1077 int vf_target_reg = vf >> 3; in ixgbe_set_ethertype_anti_spoofing_X550() 1078 int vf_target_shift = vf % 8 + IXGBE_SPOOF_ETHERTYPEAS_SHIFT; in ixgbe_set_ethertype_anti_spoofing_X550() 1405 void ixgbe_restore_mdd_vf_X550(struct ixgbe_hw *hw, u32 vf) in ixgbe_restore_mdd_vf_X550() argument 1428 start_q = vf * num_qs; in ixgbe_restore_mdd_vf_X550() 1448 u32 i, j, reg, q, shift, vf, idx; in ixgbe_mdd_event_X550() local 1485 vf = (q >> shift); in ixgbe_mdd_event_X550() 1488 idx = vf / 32; in ixgbe_mdd_event_X550() 1489 vf_bitmap[idx] |= (1 << (vf % 32)); in ixgbe_mdd_event_X550()
|
H A D | ixgbe_common.c | 4387 void ixgbe_set_mac_anti_spoofing(struct ixgbe_hw *hw, bool enable, int vf) in ixgbe_set_mac_anti_spoofing() argument 4389 int vf_target_reg = vf >> 3; in ixgbe_set_mac_anti_spoofing() 4390 int vf_target_shift = vf % 8; in ixgbe_set_mac_anti_spoofing() 4411 void ixgbe_set_vlan_anti_spoofing(struct ixgbe_hw *hw, bool enable, int vf) in ixgbe_set_vlan_anti_spoofing() argument 4413 int vf_target_reg = vf >> 3; in ixgbe_set_vlan_anti_spoofing() 4414 int vf_target_shift = vf % 8 + IXGBE_SPOOF_VLANAS_SHIFT; in ixgbe_set_vlan_anti_spoofing()
|
/illumos-gate/usr/src/uts/common/io/e1000api/ |
H A D | e1000_mbx.c | 326 v2p_mailbox |= hw->dev_spec.vf.v2p_mailbox; in e1000_read_v2p_mailbox() 327 hw->dev_spec.vf.v2p_mailbox |= v2p_mailbox & E1000_V2PMAILBOX_R2C_BITS; in e1000_read_v2p_mailbox() 348 hw->dev_spec.vf.v2p_mailbox &= ~mask; in e1000_check_for_bit_vf()
|
H A D | e1000_vf.h | 272 struct e1000_dev_spec_vf vf; member
|
/illumos-gate/usr/src/ |
H A D | Makefile | 159 $(EGREP) -vf $(CODEMGR_WS)/exception_lists/closed-bins) )
|
/illumos-gate/usr/src/lib/libsasl/lib/ |
H A D | server.c | 987 const sasl_callback_t *vf; local 1099 vf = _sasl_find_verifyfile_callback(callbacks); 1103 ret = load_config(gctx, vf); 1108 ret = load_config(vf); 1140 ret = ((sasl_verifyfile_t *)(vf->proc))(vf->context,
|
/illumos-gate/usr/src/lib/smbclnt/libfksmbfs/common/ |
H A D | fake_vfs.c | 1899 vf_to_stf(uint_t vf) in vf_to_stf() argument 1903 if (vf & VFS_RDONLY) in vf_to_stf() 1905 if (vf & VFS_NOSETUID) in vf_to_stf() 1907 if (vf & VFS_NOTRUNC) in vf_to_stf()
|
/illumos-gate/usr/src/lib/libsldap/common/ |
H A D | ns_reads.c | 953 char *tf, *tl, *vf, *vl, *eqsign; in __s_api_remove_rdn_space() local 966 vf = eqsign + 1; in __s_api_remove_rdn_space() 981 while (vf < vl && *vf == SPACETOK) in __s_api_remove_rdn_space() 982 vf++; in __s_api_remove_rdn_space() 984 while (vf < vl && *vl == SPACETOK) in __s_api_remove_rdn_space() 988 if (vf != tl + 1) in __s_api_remove_rdn_space() 989 (void) strcpy(tl + 1, vf); in __s_api_remove_rdn_space()
|
/illumos-gate/usr/src/uts/common/io/cxgbe/t4nex/ |
H A D | cudbg_lib.c | 1747 int vf, rc, vf_count = 0; in collect_rss_vf_config() local 1759 for (vf = 0; vf < vf_count; vf++) { in collect_rss_vf_config() 1760 t4_read_rss_vf_config(padap, vf, &vfconf[vf].rss_vf_vfl, in collect_rss_vf_config() 1761 &vfconf[vf].rss_vf_vfh, 1); in collect_rss_vf_config()
|
/illumos-gate/usr/src/uts/common/io/qede/579xx/drivers/ecore/documentation/ |
H A D | osal.txt | 415 the vf with the relative vfid has sent a message, and allow the 423 on the exact nature of the vf maliciousness]. 462 struct ecore_vf_info *vf) 474 ecore-client the change of cleaning any database it had for that vf.
|