[ SYSTEM ]: Linux srv.persadacompanies.com 4.18.0-553.56.1.el8_10.x86_64 #1 SMP Tue Jun 10 05:00:59 EDT 2025 x86_64
[ SERVER ]: Apache | PHP: 8.4.20
[ USER ]: persadamedika | IP: 45.64.1.108
GEFORCE FILE MANAGER
/
usr
/
src
/
kernels
/
4.18.0-553.64.1.el8_10.x86_64
/
include
/
linux
/
qed
/
UPLOAD:
NAME
SIZE
QUICK PERMS
ACTIONS
📄 common_hsi.h
50,147 B
SET
[ EDIT ]
|
[ DEL ]
📄 eth_common.h
14,538 B
SET
[ EDIT ]
|
[ DEL ]
📄 fcoe_common.h
24,842 B
SET
[ EDIT ]
|
[ DEL ]
📄 iscsi_common.h
48,815 B
SET
[ EDIT ]
|
[ DEL ]
📄 iwarp_common.h
852 B
SET
[ EDIT ]
|
[ DEL ]
📄 nvmetcp_common.h
18,277 B
SET
[ EDIT ]
|
[ DEL ]
📄 qed_chain.h
16,929 B
SET
[ EDIT ]
|
[ DEL ]
📄 qed_eth_if.h
9,353 B
SET
[ EDIT ]
|
[ DEL ]
📄 qed_fcoe_if.h
4,223 B
SET
[ EDIT ]
|
[ DEL ]
📄 qed_if.h
34,849 B
SET
[ EDIT ]
|
[ DEL ]
📄 qed_iov_if.h
930 B
SET
[ EDIT ]
|
[ DEL ]
📄 qed_iscsi_if.h
6,069 B
SET
[ EDIT ]
|
[ DEL ]
📄 qed_ll2_if.h
6,304 B
SET
[ EDIT ]
|
[ DEL ]
📄 qed_nvmetcp_if.h
7,511 B
SET
[ EDIT ]
|
[ DEL ]
📄 qed_rdma_if.h
18,347 B
SET
[ EDIT ]
|
[ DEL ]
📄 qede_rdma.h
1,930 B
SET
[ EDIT ]
|
[ DEL ]
📄 rdma_common.h
1,243 B
SET
[ EDIT ]
|
[ DEL ]
📄 roce_common.h
1,265 B
SET
[ EDIT ]
|
[ DEL ]
📄 storage_common.h
3,853 B
SET
[ EDIT ]
|
[ DEL ]
📄 tcp_common.h
6,808 B
SET
[ EDIT ]
|
[ DEL ]
DELETE SELECTED
[ CLOSE ]
EDIT: qed_iov_if.h
/* SPDX-License-Identifier: (GPL-2.0-only OR BSD-3-Clause) */ /* QLogic qed NIC Driver * Copyright (c) 2015-2017 QLogic Corporation * Copyright (c) 2019-2020 Marvell International Ltd. */ #ifndef _QED_IOV_IF_H #define _QED_IOV_IF_H #include <linux/qed/qed_if.h> /* Structs used by PF to control and manipulate child VFs */ struct qed_iov_hv_ops { int (*configure)(struct qed_dev *cdev, int num_vfs_param); int (*set_mac) (struct qed_dev *cdev, u8 *mac, int vfid); int (*set_vlan) (struct qed_dev *cdev, u16 vid, int vfid); int (*get_config) (struct qed_dev *cdev, int vf_id, struct ifla_vf_info *ivi); int (*set_link_state) (struct qed_dev *cdev, int vf_id, int link_state); int (*set_spoof) (struct qed_dev *cdev, int vfid, bool val); int (*set_rate) (struct qed_dev *cdev, int vfid, u32 min_rate, u32 max_rate); int (*set_trust) (struct qed_dev *cdev, int vfid, bool trust); }; #endif