 73db144b58
			
		
	
	
	73db144b58
	
	
	
		
			
			The 'name', 'owner', and 'mod_name' members are redundant with the
identically named fields in the 'driver' sub-structure. Rather than
switching each instance to specify these fields explicitly, introduce
a macro to simplify this.
Eliminate further redundancy by allowing the drvname argument to
DEFINE_XENBUS_DRIVER() to be blank (in which case the first entry from
the ID table will be used for .driver.name).
Also eliminate the questionable xenbus_register_{back,front}end()
wrappers - their sole remaining purpose was the checking of the
'owner' field, proper setting of which shouldn't be an issue anymore
when the macro gets used.
v2: Restore DRV_NAME for the driver name in xen-pciback.
Signed-off-by: Jan Beulich <jbeulich@suse.com>
Cc: Jens Axboe <axboe@kernel.dk>
Cc: Dmitry Torokhov <dmitry.torokhov@gmail.com>
Cc: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
Cc: Ian Campbell <ian.campbell@citrix.com>
Cc: David S. Miller <davem@davemloft.net>
Signed-off-by: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
		
	
			
		
			
				
	
	
		
			79 lines
		
	
	
	
		
			3 KiB
			
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			79 lines
		
	
	
	
		
			3 KiB
			
		
	
	
	
		
			C
		
	
	
	
	
	
| /******************************************************************************
 | |
|  * xenbus_probe.h
 | |
|  *
 | |
|  * Talks to Xen Store to figure out what devices we have.
 | |
|  *
 | |
|  * Copyright (C) 2005 Rusty Russell, IBM Corporation
 | |
|  * Copyright (C) 2005 XenSource Ltd.
 | |
|  *
 | |
|  * This program is free software; you can redistribute it and/or
 | |
|  * modify it under the terms of the GNU General Public License version 2
 | |
|  * as published by the Free Software Foundation; or, when distributed
 | |
|  * separately from the Linux kernel or incorporated into other
 | |
|  * software packages, subject to the following license:
 | |
|  *
 | |
|  * Permission is hereby granted, free of charge, to any person obtaining a copy
 | |
|  * of this source file (the "Software"), to deal in the Software without
 | |
|  * restriction, including without limitation the rights to use, copy, modify,
 | |
|  * merge, publish, distribute, sublicense, and/or sell copies of the Software,
 | |
|  * and to permit persons to whom the Software is furnished to do so, subject to
 | |
|  * the following conditions:
 | |
|  *
 | |
|  * The above copyright notice and this permission notice shall be included in
 | |
|  * all copies or substantial portions of the Software.
 | |
|  *
 | |
|  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 | |
|  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 | |
|  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 | |
|  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 | |
|  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
 | |
|  * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
 | |
|  * IN THE SOFTWARE.
 | |
|  */
 | |
| 
 | |
| #ifndef _XENBUS_PROBE_H
 | |
| #define _XENBUS_PROBE_H
 | |
| 
 | |
| #define XEN_BUS_ID_SIZE			20
 | |
| 
 | |
| struct xen_bus_type {
 | |
| 	char *root;
 | |
| 	unsigned int levels;
 | |
| 	int (*get_bus_id)(char bus_id[XEN_BUS_ID_SIZE], const char *nodename);
 | |
| 	int (*probe)(struct xen_bus_type *bus, const char *type,
 | |
| 		     const char *dir);
 | |
| 	void (*otherend_changed)(struct xenbus_watch *watch, const char **vec,
 | |
| 				 unsigned int len);
 | |
| 	struct bus_type bus;
 | |
| };
 | |
| 
 | |
| extern struct device_attribute xenbus_dev_attrs[];
 | |
| 
 | |
| extern int xenbus_match(struct device *_dev, struct device_driver *_drv);
 | |
| extern int xenbus_dev_probe(struct device *_dev);
 | |
| extern int xenbus_dev_remove(struct device *_dev);
 | |
| extern int xenbus_register_driver_common(struct xenbus_driver *drv,
 | |
| 					 struct xen_bus_type *bus);
 | |
| extern int xenbus_probe_node(struct xen_bus_type *bus,
 | |
| 			     const char *type,
 | |
| 			     const char *nodename);
 | |
| extern int xenbus_probe_devices(struct xen_bus_type *bus);
 | |
| 
 | |
| extern void xenbus_dev_changed(const char *node, struct xen_bus_type *bus);
 | |
| 
 | |
| extern void xenbus_dev_shutdown(struct device *_dev);
 | |
| 
 | |
| extern int xenbus_dev_suspend(struct device *dev);
 | |
| extern int xenbus_dev_resume(struct device *dev);
 | |
| extern int xenbus_dev_cancel(struct device *dev);
 | |
| 
 | |
| extern void xenbus_otherend_changed(struct xenbus_watch *watch,
 | |
| 				    const char **vec, unsigned int len,
 | |
| 				    int ignore_on_shutdown);
 | |
| 
 | |
| extern int xenbus_read_otherend_details(struct xenbus_device *xendev,
 | |
| 					char *id_node, char *path_node);
 | |
| 
 | |
| void xenbus_ring_ops_init(void);
 | |
| 
 | |
| #endif
 |