Linux Audio

Check our new training course

Loading...
v3.1
 
 1/*
 2 * Header file for SCSI device handler infrastruture.
 3 *
 4 * Modified version of patches posted by Mike Christie <michaelc@cs.wisc.edu>
 5 *
 6 * This program is free software; you can redistribute it and/or modify it
 7 * under the terms of the GNU General Public License as published by the
 8 * Free Software Foundation; either version 2 of the License, or (at your
 9 * option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 * General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License along
17 * with this program; if not, write to the Free Software Foundation, Inc.,
18 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
19 *
20 * Copyright IBM Corporation, 2007
21 *      Authors:
22 *               Chandra Seetharaman <sekharan@us.ibm.com>
23 *               Mike Anderson <andmike@linux.vnet.ibm.com>
24 */
25
26#include <scsi/scsi_device.h>
27
28enum {
29	SCSI_DH_OK = 0,
30	/*
31	 * device errors
32	 */
33	SCSI_DH_DEV_FAILED,	/* generic device error */
34	SCSI_DH_DEV_TEMP_BUSY,
35	SCSI_DH_DEV_UNSUPP,	/* device handler not supported */
36	SCSI_DH_DEVICE_MAX,	/* max device blkerr definition */
37
38	/*
39	 * transport errors
40	 */
41	SCSI_DH_NOTCONN = SCSI_DH_DEVICE_MAX + 1,
42	SCSI_DH_CONN_FAILURE,
43	SCSI_DH_TRANSPORT_MAX,	/* max transport blkerr definition */
44
45	/*
46	 * driver and generic errors
47	 */
48	SCSI_DH_IO = SCSI_DH_TRANSPORT_MAX + 1,	/* generic error */
49	SCSI_DH_INVALID_IO,
50	SCSI_DH_RETRY,		/* retry the req, but not immediately */
51	SCSI_DH_IMM_RETRY,	/* immediately retry the req */
52	SCSI_DH_TIMED_OUT,
53	SCSI_DH_RES_TEMP_UNAVAIL,
54	SCSI_DH_DEV_OFFLINED,
 
55	SCSI_DH_NOSYS,
56	SCSI_DH_DRIVER_MAX,
57};
58#if defined(CONFIG_SCSI_DH) || defined(CONFIG_SCSI_DH_MODULE)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
59extern int scsi_dh_activate(struct request_queue *, activate_complete, void *);
60extern int scsi_dh_handler_exist(const char *);
61extern int scsi_dh_attach(struct request_queue *, const char *);
62extern void scsi_dh_detach(struct request_queue *);
63extern int scsi_dh_set_params(struct request_queue *, const char *);
64#else
65static inline int scsi_dh_activate(struct request_queue *req,
66					activate_complete fn, void *data)
67{
68	fn(data, 0);
69	return 0;
70}
71static inline int scsi_dh_handler_exist(const char *name)
72{
73	return 0;
74}
75static inline int scsi_dh_attach(struct request_queue *req, const char *name)
76{
77	return SCSI_DH_NOSYS;
78}
79static inline void scsi_dh_detach(struct request_queue *q)
 
80{
81	return;
82}
83static inline int scsi_dh_set_params(struct request_queue *req, const char *params)
84{
85	return -SCSI_DH_NOSYS;
86}
87#endif
v5.9
 1/* SPDX-License-Identifier: GPL-2.0-or-later */
 2/*
 3 * Header file for SCSI device handler infrastruture.
 4 *
 5 * Modified version of patches posted by Mike Christie <michaelc@cs.wisc.edu>
 6 *
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 7 * Copyright IBM Corporation, 2007
 8 *      Authors:
 9 *               Chandra Seetharaman <sekharan@us.ibm.com>
10 *               Mike Anderson <andmike@linux.vnet.ibm.com>
11 */
12
13#include <scsi/scsi_device.h>
14
15enum {
16	SCSI_DH_OK = 0,
17	/*
18	 * device errors
19	 */
20	SCSI_DH_DEV_FAILED,	/* generic device error */
21	SCSI_DH_DEV_TEMP_BUSY,
22	SCSI_DH_DEV_UNSUPP,	/* device handler not supported */
23	SCSI_DH_DEVICE_MAX,	/* max device blkerr definition */
24
25	/*
26	 * transport errors
27	 */
28	SCSI_DH_NOTCONN = SCSI_DH_DEVICE_MAX + 1,
29	SCSI_DH_CONN_FAILURE,
30	SCSI_DH_TRANSPORT_MAX,	/* max transport blkerr definition */
31
32	/*
33	 * driver and generic errors
34	 */
35	SCSI_DH_IO = SCSI_DH_TRANSPORT_MAX + 1,	/* generic error */
36	SCSI_DH_INVALID_IO,
37	SCSI_DH_RETRY,		/* retry the req, but not immediately */
38	SCSI_DH_IMM_RETRY,	/* immediately retry the req */
39	SCSI_DH_TIMED_OUT,
40	SCSI_DH_RES_TEMP_UNAVAIL,
41	SCSI_DH_DEV_OFFLINED,
42	SCSI_DH_NOMEM,
43	SCSI_DH_NOSYS,
44	SCSI_DH_DRIVER_MAX,
45};
46
47typedef void (*activate_complete)(void *, int);
48struct scsi_device_handler {
49	/* Used by the infrastructure */
50	struct list_head list; /* list of scsi_device_handlers */
51
52	/* Filled by the hardware handler */
53	struct module *module;
54	const char *name;
55	int (*check_sense)(struct scsi_device *, struct scsi_sense_hdr *);
56	int (*attach)(struct scsi_device *);
57	void (*detach)(struct scsi_device *);
58	int (*activate)(struct scsi_device *, activate_complete, void *);
59	blk_status_t (*prep_fn)(struct scsi_device *, struct request *);
60	int (*set_params)(struct scsi_device *, const char *);
61	void (*rescan)(struct scsi_device *);
62};
63
64#ifdef CONFIG_SCSI_DH
65extern int scsi_dh_activate(struct request_queue *, activate_complete, void *);
 
66extern int scsi_dh_attach(struct request_queue *, const char *);
67extern const char *scsi_dh_attached_handler_name(struct request_queue *, gfp_t);
68extern int scsi_dh_set_params(struct request_queue *, const char *);
69#else
70static inline int scsi_dh_activate(struct request_queue *req,
71					activate_complete fn, void *data)
72{
73	fn(data, 0);
74	return 0;
75}
 
 
 
 
76static inline int scsi_dh_attach(struct request_queue *req, const char *name)
77{
78	return SCSI_DH_NOSYS;
79}
80static inline const char *scsi_dh_attached_handler_name(struct request_queue *q,
81							gfp_t gfp)
82{
83	return NULL;
84}
85static inline int scsi_dh_set_params(struct request_queue *req, const char *params)
86{
87	return -SCSI_DH_NOSYS;
88}
89#endif