2 * File...........: linux/drivers/s390/block/dasd_devmap.c
3 * Author(s)......: Holger Smolinski <Holger.Smolinski@de.ibm.com>
4 * Horst Hummel <Horst.Hummel@de.ibm.com>
5 * Carsten Otte <Cotte@de.ibm.com>
6 * Martin Schwidefsky <schwidefsky@de.ibm.com>
7 * Bugreports.to..: <Linux390@de.ibm.com>
8 * (C) IBM Corporation, IBM Deutschland Entwicklung GmbH, 1999-2001
10 * Device mapping and dasd= parameter parsing functions. All devmap
11 * functions may not be called from interrupt context. In particular
12 * dasd_get_device is a no-no from interrupt context.
16 #include <linux/ctype.h>
17 #include <linux/init.h>
18 #include <linux/module.h>
20 #include <asm/debug.h>
21 #include <asm/uaccess.h>
24 #define PRINTK_HEADER "dasd_devmap:"
28 kmem_cache_t *dasd_page_cache;
29 EXPORT_SYMBOL_GPL(dasd_page_cache);
32 * dasd_devmap_t is used to store the features and the relation
33 * between device number and device index. To find a dasd_devmap_t
34 * that corresponds to a device number of a device index each
35 * dasd_devmap_t is added to two linked lists, one to search by
36 * the device number and one to search by the device index. As
37 * soon as big minor numbers are available the device index list
38 * can be removed since the device number will then be identical
39 * to the device index.
42 struct list_head list;
43 char bus_id[BUS_ID_SIZE];
44 unsigned int devindex;
45 unsigned short features;
46 struct dasd_device *device;
51 * dasd_server_ssid_map contains a globally unique storage server subsystem ID.
52 * dasd_server_ssid_list contains the list of all subsystem IDs accessed by
53 * the DASD device driver.
55 struct dasd_server_ssid_map {
56 struct list_head list;
64 static struct list_head dasd_server_ssid_list;
67 * Parameter parsing functions for dasd= parameter. The syntax is:
68 * <devno> : (0x)?[0-9a-fA-F]+
69 * <busid> : [0-0a-f]\.[0-9a-f]\.(0x)?[0-9a-fA-F]+
71 * <feature_list> : \(<feature>(:<feature>)*\)
72 * <devno-range> : <devno>(-<devno>)?<feature_list>?
73 * <busid-range> : <busid>(-<busid>)?<feature_list>?
74 * <devices> : <devno-range>|<busid-range>
75 * <dasd_module> : dasd_diag_mod|dasd_eckd_mod|dasd_fba_mod
77 * <dasd> : autodetect|probeonly|<devices>(,<devices>)*
80 int dasd_probeonly = 0; /* is true, when probeonly mode is active */
81 int dasd_autodetect = 0; /* is true, when autodetection is active */
82 int dasd_nopav = 0; /* is true, when PAV is disabled */
83 EXPORT_SYMBOL_GPL(dasd_nopav);
86 * char *dasd[] is intended to hold the ranges supplied by the dasd= statement
87 * it is named 'dasd' to directly be filled by insmod with the comma separated
88 * strings when running as a module.
90 static char *dasd[256];
91 module_param_array(dasd, charp, NULL, 0);
94 * Single spinlock to protect devmap and servermap structures and lists.
96 static DEFINE_SPINLOCK(dasd_devmap_lock);
99 * Hash lists for devmap structures.
101 static struct list_head dasd_hashlists[256];
102 int dasd_max_devindex;
104 static struct dasd_devmap *dasd_add_busid(char *, int);
107 dasd_hash_busid(char *bus_id)
112 for (i = 0; (i < BUS_ID_SIZE) && *bus_id; i++, bus_id++)
119 * The parameter parsing functions for builtin-drivers are called
120 * before kmalloc works. Store the pointers to the parameters strings
121 * into dasd[] for later processing.
124 dasd_call_setup(char *str)
126 static int count = 0;
133 __setup ("dasd=", dasd_call_setup);
134 #endif /* #ifndef MODULE */
137 * Read a device busid/devno from a string.
140 dasd_busid(char **str, int *id0, int *id1, int *devno)
144 /* check for leading '0x' */
146 if ((*str)[0] == '0' && (*str)[1] == 'x') {
150 if (!isxdigit((*str)[0])) /* We require at least one hex digit */
152 val = simple_strtoul(*str, str, 16);
153 if (old_style || (*str)[0] != '.') {
155 if (val < 0 || val > 0xffff)
160 /* New style x.y.z busid */
161 if (val < 0 || val > 0xff)
165 if (!isxdigit((*str)[0])) /* We require at least one hex digit */
167 val = simple_strtoul(*str, str, 16);
168 if (val < 0 || val > 0xff || (*str)++[0] != '.')
171 if (!isxdigit((*str)[0])) /* We require at least one hex digit */
173 val = simple_strtoul(*str, str, 16);
174 if (val < 0 || val > 0xffff)
181 * Read colon separated list of dasd features. Currently there is
182 * only one: "ro" for read-only devices. The default feature set
183 * is empty (value 0).
186 dasd_feature_list(char *str, char **endp)
188 int features, len, rc;
193 return DASD_FEATURE_DEFAULT;
200 str[len] && str[len] != ':' && str[len] != ')'; len++);
201 if (len == 2 && !strncmp(str, "ro", 2))
202 features |= DASD_FEATURE_READONLY;
203 else if (len == 4 && !strncmp(str, "diag", 4))
204 features |= DASD_FEATURE_USEDIAG;
206 MESSAGE(KERN_WARNING,
207 "unsupported feature: %*s, "
208 "ignoring setting", len, str);
217 MESSAGE(KERN_WARNING, "%s",
218 "missing ')' in dasd parameter string\n");
229 * Try to match the first element on the comma separated parse string
230 * with one of the known keywords. If a keyword is found, take the approprate
231 * action and return a pointer to the residual string. If the first element
232 * could not be matched to any keyword then return an error code.
235 dasd_parse_keyword( char *parsestring ) {
237 char *nextcomma, *residual_str;
240 nextcomma = strchr(parsestring,',');
242 length = nextcomma - parsestring;
243 residual_str = nextcomma + 1;
245 length = strlen(parsestring);
246 residual_str = parsestring + length;
248 if (strncmp("autodetect", parsestring, length) == 0) {
250 MESSAGE (KERN_INFO, "%s",
251 "turning to autodetection mode");
254 if (strncmp("probeonly", parsestring, length) == 0) {
256 MESSAGE(KERN_INFO, "%s",
257 "turning to probeonly mode");
260 if (strncmp("nopav", parsestring, length) == 0) {
262 MESSAGE(KERN_INFO, "%s", "disable PAV mode");
265 if (strncmp("fixedbuffers", parsestring, length) == 0) {
269 kmem_cache_create("dasd_page_cache", PAGE_SIZE,
270 PAGE_SIZE, SLAB_CACHE_DMA,
272 if (!dasd_page_cache)
273 MESSAGE(KERN_WARNING, "%s", "Failed to create slab, "
274 "fixed buffer mode disabled.");
276 MESSAGE (KERN_INFO, "%s",
277 "turning on fixed buffer mode");
280 return ERR_PTR(-EINVAL);
284 * Try to interprete the first element on the comma separated parse string
285 * as a device number or a range of devices. If the interpretation is
286 * successfull, create the matching dasd_devmap entries and return a pointer
287 * to the residual string.
288 * If interpretation fails or in case of an error, return an error code.
291 dasd_parse_range( char *parsestring ) {
293 struct dasd_devmap *devmap;
294 int from, from_id0, from_id1;
295 int to, to_id0, to_id1;
297 char bus_id[BUS_ID_SIZE+1], *str;
300 rc = dasd_busid(&str, &from_id0, &from_id1, &from);
307 rc = dasd_busid(&str, &to_id0, &to_id1, &to);
311 (from_id0 != to_id0 || from_id1 != to_id1 || from > to))
314 MESSAGE(KERN_ERR, "Invalid device range %s", parsestring);
317 features = dasd_feature_list(str, &str);
319 return ERR_PTR(-EINVAL);
320 /* each device in dasd= parameter should be set initially online */
321 features |= DASD_FEATURE_INITIAL_ONLINE;
323 sprintf(bus_id, "%01x.%01x.%04x",
324 from_id0, from_id1, from++);
325 devmap = dasd_add_busid(bus_id, features);
327 return (char *)devmap;
333 MESSAGE(KERN_WARNING,
334 "junk at end of dasd parameter string: %s\n", str);
335 return ERR_PTR(-EINVAL);
339 dasd_parse_next_element( char *parsestring ) {
341 residual_str = dasd_parse_keyword(parsestring);
342 if (!IS_ERR(residual_str))
344 residual_str = dasd_parse_range(parsestring);
349 * Parse parameters stored in dasd[]
350 * The 'dasd=...' parameter allows to specify a comma separated list of
351 * keywords and device ranges. When the dasd driver is build into the kernel,
352 * the complete list will be stored as one element of the dasd[] array.
353 * When the dasd driver is build as a module, then the list is broken into
354 * it's elements and each dasd[] entry contains one element.
363 for (i = 0; i < 256; i++) {
366 parsestring = dasd[i];
367 /* loop over the comma separated list in the parsestring */
368 while (*parsestring) {
369 parsestring = dasd_parse_next_element(parsestring);
370 if(IS_ERR(parsestring)) {
371 rc = PTR_ERR(parsestring);
376 DBF_EVENT(DBF_ALERT, "%s", "invalid range found");
384 * Add a devmap for the device specified by busid. It is possible that
385 * the devmap already exists (dasd= parameter). The order of the devices
386 * added through this function will define the kdevs for the individual
389 static struct dasd_devmap *
390 dasd_add_busid(char *bus_id, int features)
392 struct dasd_devmap *devmap, *new, *tmp;
395 new = (struct dasd_devmap *)
396 kzalloc(sizeof(struct dasd_devmap), GFP_KERNEL);
398 return ERR_PTR(-ENOMEM);
399 spin_lock(&dasd_devmap_lock);
401 hash = dasd_hash_busid(bus_id);
402 list_for_each_entry(tmp, &dasd_hashlists[hash], list)
403 if (strncmp(tmp->bus_id, bus_id, BUS_ID_SIZE) == 0) {
408 /* This bus_id is new. */
409 new->devindex = dasd_max_devindex++;
410 strncpy(new->bus_id, bus_id, BUS_ID_SIZE);
411 new->features = features;
413 list_add(&new->list, &dasd_hashlists[hash]);
417 spin_unlock(&dasd_devmap_lock);
423 * Find devmap for device with given bus_id.
425 static struct dasd_devmap *
426 dasd_find_busid(char *bus_id)
428 struct dasd_devmap *devmap, *tmp;
431 spin_lock(&dasd_devmap_lock);
432 devmap = ERR_PTR(-ENODEV);
433 hash = dasd_hash_busid(bus_id);
434 list_for_each_entry(tmp, &dasd_hashlists[hash], list) {
435 if (strncmp(tmp->bus_id, bus_id, BUS_ID_SIZE) == 0) {
440 spin_unlock(&dasd_devmap_lock);
445 * Check if busid has been added to the list of dasd ranges.
448 dasd_busid_known(char *bus_id)
450 return IS_ERR(dasd_find_busid(bus_id)) ? -ENOENT : 0;
454 * Forget all about the device numbers added so far.
455 * This may only be called at module unload or system shutdown.
458 dasd_forget_ranges(void)
460 struct dasd_devmap *devmap, *n;
463 spin_lock(&dasd_devmap_lock);
464 for (i = 0; i < 256; i++) {
465 list_for_each_entry_safe(devmap, n, &dasd_hashlists[i], list) {
466 BUG_ON(devmap->device != NULL);
467 list_del(&devmap->list);
471 spin_unlock(&dasd_devmap_lock);
475 * Find the device struct by its device index.
478 dasd_device_from_devindex(int devindex)
480 struct dasd_devmap *devmap, *tmp;
481 struct dasd_device *device;
484 spin_lock(&dasd_devmap_lock);
486 for (i = 0; (i < 256) && !devmap; i++)
487 list_for_each_entry(tmp, &dasd_hashlists[i], list)
488 if (tmp->devindex == devindex) {
489 /* Found the devmap for the device. */
493 if (devmap && devmap->device) {
494 device = devmap->device;
495 dasd_get_device(device);
497 device = ERR_PTR(-ENODEV);
498 spin_unlock(&dasd_devmap_lock);
503 * Return devmap for cdev. If no devmap exists yet, create one and
504 * connect it to the cdev.
506 static struct dasd_devmap *
507 dasd_devmap_from_cdev(struct ccw_device *cdev)
509 struct dasd_devmap *devmap;
511 devmap = dasd_find_busid(cdev->dev.bus_id);
513 devmap = dasd_add_busid(cdev->dev.bus_id,
514 DASD_FEATURE_DEFAULT);
519 * Create a dasd device structure for cdev.
522 dasd_create_device(struct ccw_device *cdev)
524 struct dasd_devmap *devmap;
525 struct dasd_device *device;
529 devmap = dasd_devmap_from_cdev(cdev);
531 return (void *) devmap;
533 device = dasd_alloc_device();
536 atomic_set(&device->ref_count, 3);
538 spin_lock(&dasd_devmap_lock);
539 if (!devmap->device) {
540 devmap->device = device;
541 device->devindex = devmap->devindex;
542 device->features = devmap->features;
543 get_device(&cdev->dev);
547 /* Someone else was faster. */
549 spin_unlock(&dasd_devmap_lock);
552 dasd_free_device(device);
556 spin_lock_irqsave(get_ccwdev_lock(cdev), flags);
557 cdev->dev.driver_data = device;
558 spin_unlock_irqrestore(get_ccwdev_lock(cdev), flags);
564 * Wait queue for dasd_delete_device waits.
566 static DECLARE_WAIT_QUEUE_HEAD(dasd_delete_wq);
569 * Remove a dasd device structure. The passed referenced
573 dasd_delete_device(struct dasd_device *device)
575 struct ccw_device *cdev;
576 struct dasd_devmap *devmap;
579 /* First remove device pointer from devmap. */
580 devmap = dasd_find_busid(device->cdev->dev.bus_id);
581 BUG_ON(IS_ERR(devmap));
582 spin_lock(&dasd_devmap_lock);
583 if (devmap->device != device) {
584 spin_unlock(&dasd_devmap_lock);
585 dasd_put_device(device);
588 devmap->device = NULL;
589 spin_unlock(&dasd_devmap_lock);
591 /* Disconnect dasd_device structure from ccw_device structure. */
592 spin_lock_irqsave(get_ccwdev_lock(device->cdev), flags);
593 device->cdev->dev.driver_data = NULL;
594 spin_unlock_irqrestore(get_ccwdev_lock(device->cdev), flags);
597 * Drop ref_count by 3, one for the devmap reference, one for
598 * the cdev reference and one for the passed reference.
600 atomic_sub(3, &device->ref_count);
602 /* Wait for reference counter to drop to zero. */
603 wait_event(dasd_delete_wq, atomic_read(&device->ref_count) == 0);
605 /* Disconnect dasd_device structure from ccw_device structure. */
609 /* Put ccw_device structure. */
610 put_device(&cdev->dev);
612 /* Now the device structure can be freed. */
613 dasd_free_device(device);
617 * Reference counter dropped to zero. Wake up waiter
618 * in dasd_delete_device.
621 dasd_put_device_wake(struct dasd_device *device)
623 wake_up(&dasd_delete_wq);
627 * Return dasd_device structure associated with cdev.
628 * This function needs to be called with the ccw device
629 * lock held. It can be used from interrupt context.
632 dasd_device_from_cdev_locked(struct ccw_device *cdev)
634 struct dasd_device *device = cdev->dev.driver_data;
637 return ERR_PTR(-ENODEV);
638 dasd_get_device(device);
643 * Return dasd_device structure associated with cdev.
646 dasd_device_from_cdev(struct ccw_device *cdev)
648 struct dasd_device *device;
651 spin_lock_irqsave(get_ccwdev_lock(cdev), flags);
652 device = dasd_device_from_cdev_locked(cdev);
653 spin_unlock_irqrestore(get_ccwdev_lock(cdev), flags);
658 * SECTION: files in sysfs
662 * readonly controls the readonly status of a dasd
665 dasd_ro_show(struct device *dev, struct device_attribute *attr, char *buf)
667 struct dasd_devmap *devmap;
670 devmap = dasd_find_busid(dev->bus_id);
672 ro_flag = (devmap->features & DASD_FEATURE_READONLY) != 0;
674 ro_flag = (DASD_FEATURE_DEFAULT & DASD_FEATURE_READONLY) != 0;
675 return snprintf(buf, PAGE_SIZE, ro_flag ? "1\n" : "0\n");
679 dasd_ro_store(struct device *dev, struct device_attribute *attr,
680 const char *buf, size_t count)
682 struct dasd_devmap *devmap;
685 devmap = dasd_devmap_from_cdev(to_ccwdev(dev));
687 return PTR_ERR(devmap);
688 ro_flag = buf[0] == '1';
689 spin_lock(&dasd_devmap_lock);
691 devmap->features |= DASD_FEATURE_READONLY;
693 devmap->features &= ~DASD_FEATURE_READONLY;
695 devmap->device->features = devmap->features;
696 if (devmap->device && devmap->device->gdp)
697 set_disk_ro(devmap->device->gdp, ro_flag);
698 spin_unlock(&dasd_devmap_lock);
702 static DEVICE_ATTR(readonly, 0644, dasd_ro_show, dasd_ro_store);
705 * use_diag controls whether the driver should use diag rather than ssch
706 * to talk to the device
709 dasd_use_diag_show(struct device *dev, struct device_attribute *attr, char *buf)
711 struct dasd_devmap *devmap;
714 devmap = dasd_find_busid(dev->bus_id);
716 use_diag = (devmap->features & DASD_FEATURE_USEDIAG) != 0;
718 use_diag = (DASD_FEATURE_DEFAULT & DASD_FEATURE_USEDIAG) != 0;
719 return sprintf(buf, use_diag ? "1\n" : "0\n");
723 dasd_use_diag_store(struct device *dev, struct device_attribute *attr,
724 const char *buf, size_t count)
726 struct dasd_devmap *devmap;
730 devmap = dasd_devmap_from_cdev(to_ccwdev(dev));
732 return PTR_ERR(devmap);
733 use_diag = buf[0] == '1';
734 spin_lock(&dasd_devmap_lock);
735 /* Changing diag discipline flag is only allowed in offline state. */
737 if (!devmap->device) {
739 devmap->features |= DASD_FEATURE_USEDIAG;
741 devmap->features &= ~DASD_FEATURE_USEDIAG;
744 spin_unlock(&dasd_devmap_lock);
748 static DEVICE_ATTR(use_diag, 0644, dasd_use_diag_show, dasd_use_diag_store);
751 dasd_discipline_show(struct device *dev, struct device_attribute *attr,
754 struct dasd_device *device;
757 device = dasd_device_from_cdev(to_ccwdev(dev));
758 if (!IS_ERR(device) && device->discipline) {
759 len = snprintf(buf, PAGE_SIZE, "%s\n",
760 device->discipline->name);
761 dasd_put_device(device);
763 len = snprintf(buf, PAGE_SIZE, "none\n");
767 static DEVICE_ATTR(discipline, 0444, dasd_discipline_show, NULL);
770 dasd_alias_show(struct device *dev, struct device_attribute *attr, char *buf)
772 struct dasd_devmap *devmap;
775 devmap = dasd_find_busid(dev->bus_id);
776 spin_lock(&dasd_devmap_lock);
778 alias = devmap->uid.alias;
781 spin_unlock(&dasd_devmap_lock);
783 return sprintf(buf, alias ? "1\n" : "0\n");
786 static DEVICE_ATTR(alias, 0444, dasd_alias_show, NULL);
789 dasd_vendor_show(struct device *dev, struct device_attribute *attr, char *buf)
791 struct dasd_devmap *devmap;
794 devmap = dasd_find_busid(dev->bus_id);
795 spin_lock(&dasd_devmap_lock);
796 if (!IS_ERR(devmap) && strlen(devmap->uid.vendor) > 0)
797 vendor = devmap->uid.vendor;
800 spin_unlock(&dasd_devmap_lock);
802 return snprintf(buf, PAGE_SIZE, "%s\n", vendor);
805 static DEVICE_ATTR(vendor, 0444, dasd_vendor_show, NULL);
807 #define UID_STRLEN ( /* vendor */ 3 + 1 + /* serial */ 14 + 1 +\
808 /* SSID */ 4 + 1 + /* unit addr */ 2 + 1)
811 dasd_uid_show(struct device *dev, struct device_attribute *attr, char *buf)
813 struct dasd_devmap *devmap;
814 char uid[UID_STRLEN];
816 devmap = dasd_find_busid(dev->bus_id);
817 spin_lock(&dasd_devmap_lock);
818 if (!IS_ERR(devmap) && strlen(devmap->uid.vendor) > 0)
819 snprintf(uid, sizeof(uid), "%s.%s.%04x.%02x",
820 devmap->uid.vendor, devmap->uid.serial,
821 devmap->uid.ssid, devmap->uid.unit_addr);
824 spin_unlock(&dasd_devmap_lock);
826 return snprintf(buf, PAGE_SIZE, "%s\n", uid);
829 static DEVICE_ATTR(uid, 0444, dasd_uid_show, NULL);
832 * extended error-reporting
835 dasd_eer_show(struct device *dev, struct device_attribute *attr, char *buf)
837 struct dasd_devmap *devmap;
840 devmap = dasd_find_busid(dev->bus_id);
841 if (!IS_ERR(devmap) && devmap->device)
842 eer_flag = dasd_eer_enabled(devmap->device);
845 return snprintf(buf, PAGE_SIZE, eer_flag ? "1\n" : "0\n");
849 dasd_eer_store(struct device *dev, struct device_attribute *attr,
850 const char *buf, size_t count)
852 struct dasd_devmap *devmap;
855 devmap = dasd_devmap_from_cdev(to_ccwdev(dev));
857 return PTR_ERR(devmap);
861 rc = dasd_eer_enable(devmap->device);
865 dasd_eer_disable(devmap->device);
869 static DEVICE_ATTR(eer_enabled, 0644, dasd_eer_show, dasd_eer_store);
871 static struct attribute * dasd_attrs[] = {
872 &dev_attr_readonly.attr,
873 &dev_attr_discipline.attr,
874 &dev_attr_alias.attr,
875 &dev_attr_vendor.attr,
877 &dev_attr_use_diag.attr,
878 &dev_attr_eer_enabled.attr,
882 static struct attribute_group dasd_attr_group = {
887 * Return copy of the device unique identifier.
890 dasd_get_uid(struct ccw_device *cdev, struct dasd_uid *uid)
892 struct dasd_devmap *devmap;
894 devmap = dasd_find_busid(cdev->dev.bus_id);
896 return PTR_ERR(devmap);
897 spin_lock(&dasd_devmap_lock);
899 spin_unlock(&dasd_devmap_lock);
904 * Register the given device unique identifier into devmap struct.
905 * In addition check if the related storage server subsystem ID is already
906 * contained in the dasd_server_ssid_list. If subsystem ID is not contained,
908 * Return 0 if server was already in serverlist,
909 * 1 if the server was added successful
910 * <0 in case of error.
913 dasd_set_uid(struct ccw_device *cdev, struct dasd_uid *uid)
915 struct dasd_devmap *devmap;
916 struct dasd_server_ssid_map *srv, *tmp;
918 devmap = dasd_find_busid(cdev->dev.bus_id);
920 return PTR_ERR(devmap);
922 /* generate entry for server_ssid_map */
923 srv = (struct dasd_server_ssid_map *)
924 kzalloc(sizeof(struct dasd_server_ssid_map), GFP_KERNEL);
927 strncpy(srv->sid.vendor, uid->vendor, sizeof(srv->sid.vendor) - 1);
928 strncpy(srv->sid.serial, uid->serial, sizeof(srv->sid.serial) - 1);
929 srv->sid.ssid = uid->ssid;
931 /* server is already contained ? */
932 spin_lock(&dasd_devmap_lock);
934 list_for_each_entry(tmp, &dasd_server_ssid_list, list) {
935 if (!memcmp(&srv->sid, &tmp->sid,
936 sizeof(struct system_id))) {
943 /* add servermap to serverlist */
945 list_add(&srv->list, &dasd_server_ssid_list);
946 spin_unlock(&dasd_devmap_lock);
948 return (srv ? 1 : 0);
950 EXPORT_SYMBOL_GPL(dasd_set_uid);
953 * Return value of the specified feature.
956 dasd_get_feature(struct ccw_device *cdev, int feature)
958 struct dasd_devmap *devmap;
960 devmap = dasd_find_busid(cdev->dev.bus_id);
962 return PTR_ERR(devmap);
964 return ((devmap->features & feature) != 0);
968 * Set / reset given feature.
969 * Flag indicates wether to set (!=0) or the reset (=0) the feature.
972 dasd_set_feature(struct ccw_device *cdev, int feature, int flag)
974 struct dasd_devmap *devmap;
976 devmap = dasd_find_busid(cdev->dev.bus_id);
978 return PTR_ERR(devmap);
980 spin_lock(&dasd_devmap_lock);
982 devmap->features |= feature;
984 devmap->features &= ~feature;
986 devmap->device->features = devmap->features;
987 spin_unlock(&dasd_devmap_lock);
993 dasd_add_sysfs_files(struct ccw_device *cdev)
995 return sysfs_create_group(&cdev->dev.kobj, &dasd_attr_group);
999 dasd_remove_sysfs_files(struct ccw_device *cdev)
1001 sysfs_remove_group(&cdev->dev.kobj, &dasd_attr_group);
1006 dasd_devmap_init(void)
1010 /* Initialize devmap structures. */
1011 dasd_max_devindex = 0;
1012 for (i = 0; i < 256; i++)
1013 INIT_LIST_HEAD(&dasd_hashlists[i]);
1015 /* Initialize servermap structure. */
1016 INIT_LIST_HEAD(&dasd_server_ssid_list);
1021 dasd_devmap_exit(void)
1023 dasd_forget_ranges();