/
usr
/
src
/
kernels
/
4.18.0-553.121.1.el8_10.x86_64
/
include
/
scsi
/
/usr/src/kernels/4.18.0-553.121.1.el8_10.x86_64/include/scsi
mkdir
upload
Name
Size
Mode
Actions
fc/
-
0755
rm
fcoe_sysfs.h
3843
0644
edit
dl
rm
fc_frame.h
7819
0644
edit
dl
rm
iscsi_if.h
26213
0644
edit
dl
rm
iscsi_proto.h
15907
0644
edit
dl
rm
iser.h
2397
0644
edit
dl
rm
libfc.h
31676
0644
edit
dl
rm
libfcoe.h
13693
0644
edit
dl
rm
libiscsi.h
14612
0644
edit
dl
rm
libiscsi_tcp.h
3886
0644
edit
dl
rm
libsas.h
19047
0644
edit
dl
rm
osd_attributes.h
15411
0644
edit
dl
rm
osd_protocol.h
17989
0644
edit
dl
rm
osd_sec.h
1520
0644
edit
dl
rm
osd_sense.h
10126
0644
edit
dl
rm
osd_types.h
1020
0644
edit
dl
rm
sas.h
13533
0644
edit
dl
rm
sas_ata.h
2800
0644
edit
dl
rm
scsi.h
9137
0644
edit
dl
rm
scsicam.h
636
0644
edit
dl
rm
scsi_bsg_iscsi.h
2204
0644
edit
dl
rm
scsi_cmnd.h
11557
0644
edit
dl
rm
scsi_common.h
2160
0644
edit
dl
rm
scsi_dbg.h
2132
0644
edit
dl
rm
scsi_device.h
23114
0644
edit
dl
rm
scsi_devinfo.h
3869
0644
edit
dl
rm
scsi_dh.h
3242
0644
edit
dl
rm
scsi_driver.h
897
0644
edit
dl
rm
scsi_eh.h
1702
0644
edit
dl
rm
scsi_host.h
29012
0644
edit
dl
rm
scsi_ioctl.h
1285
0644
edit
dl
rm
scsi_proto.h
11559
0644
edit
dl
rm
scsi_request.h
667
0644
edit
dl
rm
scsi_tcq.h
993
0644
edit
dl
rm
scsi_transport.h
2610
0644
edit
dl
rm
scsi_transport_fc.h
28769
0644
edit
dl
rm
scsi_transport_iscsi.h
17659
0644
edit
dl
rm
scsi_transport_sas.h
7035
0644
edit
dl
rm
scsi_transport_spi.h
6682
0644
edit
dl
rm
scsi_transport_srp.h
4883
0644
edit
dl
rm
sg.h
12421
0644
edit
dl
rm
srp.h
7226
0644
edit
dl
rm
viosrp.h
6212
0644
edit
dl
rm
Edit:
/usr/src/kernels/4.18.0-553.121.1.el8_10.x86_64/include/scsi/sas_ata.h
(2800B)
/* * Support for SATA devices on Serial Attached SCSI (SAS) controllers * * Copyright (C) 2006 IBM Corporation * * Written by: Darrick J. Wong <djwong@us.ibm.com>, IBM Corporation * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Free Software Foundation; either version 2 of the * License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * USA * */ #ifndef _SAS_ATA_H_ #define _SAS_ATA_H_ #include <linux/libata.h> #include <scsi/libsas.h> #ifdef CONFIG_SCSI_SAS_ATA static inline int dev_is_sata(struct domain_device *dev) { return dev->dev_type == SAS_SATA_DEV || dev->dev_type == SAS_SATA_PM || dev->dev_type == SAS_SATA_PM_PORT || dev->dev_type == SAS_SATA_PENDING; } int sas_get_ata_info(struct domain_device *dev, struct ex_phy *phy); int sas_ata_init(struct domain_device *dev); void sas_ata_task_abort(struct sas_task *task); void sas_ata_strategy_handler(struct Scsi_Host *shost); void sas_ata_eh(struct Scsi_Host *shost, struct list_head *work_q, struct list_head *done_q); void sas_ata_schedule_reset(struct domain_device *dev); void sas_ata_wait_eh(struct domain_device *dev); void sas_probe_sata(struct asd_sas_port *port); void sas_suspend_sata(struct asd_sas_port *port); void sas_resume_sata(struct asd_sas_port *port); void sas_ata_end_eh(struct ata_port *ap); #else static inline int dev_is_sata(struct domain_device *dev) { return 0; } static inline int sas_ata_init(struct domain_device *dev) { return 0; } static inline void sas_ata_task_abort(struct sas_task *task) { } static inline void sas_ata_strategy_handler(struct Scsi_Host *shost) { } static inline void sas_ata_eh(struct Scsi_Host *shost, struct list_head *work_q, struct list_head *done_q) { } static inline void sas_ata_schedule_reset(struct domain_device *dev) { } static inline void sas_ata_wait_eh(struct domain_device *dev) { } static inline void sas_probe_sata(struct asd_sas_port *port) { } static inline void sas_suspend_sata(struct asd_sas_port *port) { } static inline void sas_resume_sata(struct asd_sas_port *port) { } static inline int sas_get_ata_info(struct domain_device *dev, struct ex_phy *phy) { return 0; } static inline void sas_ata_end_eh(struct ata_port *ap) { } #endif #endif /* _SAS_ATA_H_ */
Save
cmd:
run