Searched refs:vfs (Results 1 - 25 of 109) sorted by path

12345

/linux-master/arch/s390/kernel/
H A Dcompat_linux.c46 #include <linux/vfs.h>
/linux-master/fs/squashfs/
H A Dcache.c35 #include <linux/vfs.h>
H A Ddir.c18 #include <linux/vfs.h>
H A Dfile_cache.c8 #include <linux/vfs.h>
H A Dfragment.c24 #include <linux/vfs.h>
H A Dnamei.c43 #include <linux/vfs.h>
/linux-master/arch/alpha/kernel/
H A Dosf_sys.c41 #include <linux/vfs.h>
/linux-master/arch/mips/kernel/
H A Dlinux32.c33 #include <linux/vfs.h>
/linux-master/arch/s390/hypfs/
H A Dinode.c18 #include <linux/vfs.h>
/linux-master/arch/sparc/kernel/
H A Dsys_sparc32.c42 #include <linux/vfs.h>
/linux-master/arch/um/os-Linux/
H A Dmem.c15 #include <sys/vfs.h>
/linux-master/arch/x86/kernel/
H A Dsys_ia32.c39 #include <linux/vfs.h>
/linux-master/drivers/crypto/intel/qat/qat_common/
H A Dadf_dev_mgr.c64 * for vfs only or for vfs and pfs
356 int vfs = 0; local
363 vfs++;
366 return vfs;
/linux-master/drivers/net/ethernet/amd/pds_core/
H A Dauxbus.c188 padev = pf->vfs[cf->vf_id].padev;
195 pf->vfs[cf->vf_id].padev = NULL;
261 pf->vfs[cf->vf_id].padev = padev;
H A Dcore.h159 struct pdsc_vf *vfs; member in struct:pdsc
H A Ddevlink.c57 struct pdsc *vf = pdsc->vfs[vf_id].vf;
H A Dmain.c149 pdsc->vfs = kcalloc(num_vfs, sizeof(struct pdsc_vf),
151 if (!pdsc->vfs)
168 kfree(pdsc->vfs);
169 pdsc->vfs = NULL;
192 pf->vfs[vf->vf_id].vf = vf;
421 pf->vfs[pdsc->vf_id].vf = NULL;
/linux-master/drivers/net/ethernet/broadcom/bnx2x/
H A Dbnx2x_sriov.c769 /* Invalidate fp_hsi version for vfs */
918 DP(BNX2X_MSG_IOV, "next vf to cleanup: %d. Num of vfs: %d\n",
935 * we are acknowledge all the vfs which an flr was requested for, even
941 DP(BNX2X_MSG_MCP, "DRV_STATUS_VF_DISABLED ACK for vfs 0x%x 0x%x\n",
965 "DRV_STATUS_VF_DISABLED received for vfs 0x%x 0x%x\n",
1109 kfree(bp->vfdb->vfs);
1160 "IOV info[%d]: first vf %d, nres %d, cap 0x%x, ctrl 0x%x, total %d, initial %d, num vfs %d, offset %d, stride %d, page size 0x%x\n",
1220 /* allocate the vfs database */
1250 bp->vfdb->vfs = kcalloc(BNX2X_NR_VIRTFN(bp),
1253 if (!bp->vfdb->vfs) {
[all...]
H A Dbnx2x_sriov.h320 struct bnx2x_virtf *vfs; member in struct:bnx2x_vfdb
321 #define BP_VF(bp, idx) ((BP_VFDB(bp) && (bp)->vfdb->vfs) ? \
322 &((bp)->vfdb->vfs[idx]) : NULL)
323 #define bnx2x_vf(bp, idx, var) ((bp)->vfdb->vfs[idx].var)
325 /* queue array - for all vfs */
/linux-master/drivers/net/ethernet/cavium/thunder/
H A Dnic_main.c103 #define INTR_MASK(vfs) ((vfs < 64) ? (BIT_ULL(vfs) - 1) : (~0ull))
/linux-master/drivers/net/ethernet/intel/i40e/
H A Di40e_ethtool.c2658 struct i40e_vf *vfs = pf->vf; local
2662 if (test_bit(I40E_VF_STATE_ACTIVE, &vfs[i].vf_states))
H A Di40e_virtchnl_pf.c31 /* Not all vfs are enabled so skip the ones that are not */
1819 struct i40e_vf *vfs; local
1835 vfs = kcalloc(num_alloc_vfs, sizeof(struct i40e_vf), GFP_KERNEL);
1836 if (!vfs) {
1840 pf->vf = vfs;
1844 vfs[i].pf = pf;
1845 vfs[i].parent_type = I40E_SWITCH_ELEMENT_TYPE_VEB;
1846 vfs[i].vf_id = i;
1849 set_bit(I40E_VIRTCHNL_VF_CAP_L2, &vfs[i].vf_caps);
1850 vfs[
[all...]
/linux-master/drivers/net/ethernet/intel/ice/devlink/
H A Ddevlink.c691 mutex_lock(&pf->vfs.table_lock);
696 mutex_unlock(&pf->vfs.table_lock);
/linux-master/drivers/net/ethernet/intel/ice/
H A Dice.h574 struct ice_vfs vfs; member in struct:ice_pf
H A Dice_main.c570 mutex_lock(&pf->vfs.table_lock);
573 mutex_unlock(&pf->vfs.table_lock);
1873 mutex_lock(&pf->vfs.table_lock);
1929 mutex_unlock(&pf->vfs.table_lock);
3975 mutex_destroy(&pf->vfs.table_lock);
4008 pf->vfs.num_supported = min_t(int, func_caps->num_allocd_vfs,
4078 mutex_init(&pf->vfs.table_lock);
4079 hash_init(pf->vfs.table);

Completed in 466 milliseconds

12345