Commit 72e19b3b authored by Linus Torvalds's avatar Linus Torvalds

Merge branch 'for-linus' of git://git390.osdl.marist.edu/pub/scm/linux-2.6

* 'for-linus' of git://git390.osdl.marist.edu/pub/scm/linux-2.6:
  [S390] dcss: fix build bug.
  [S390] Fix linker script.
parents f42ac38c dbe13d99
...@@ -55,7 +55,7 @@ SECTIONS ...@@ -55,7 +55,7 @@ SECTIONS
__start___ex_table = .; __start___ex_table = .;
*(__ex_table) *(__ex_table)
__stop___ex_table = .; __stop___ex_table = .;
} } :data
.data : { /* Data */ .data : { /* Data */
DATA_DATA DATA_DATA
......
...@@ -384,9 +384,10 @@ dcssblk_add_store(struct device *dev, struct device_attribute *attr, const char ...@@ -384,9 +384,10 @@ dcssblk_add_store(struct device *dev, struct device_attribute *attr, const char
* get minor, add to list * get minor, add to list
*/ */
down_write(&dcssblk_devices_sem); down_write(&dcssblk_devices_sem);
if (dcssblk_get_segment_by_name(local_buf)) { if (dcssblk_get_device_by_name(local_buf)) {
up_write(&dcssblk_devices_sem);
rc = -EEXIST; rc = -EEXIST;
goto release_gd; goto unload_seg;
} }
rc = dcssblk_assign_free_minor(dev_info); rc = dcssblk_assign_free_minor(dev_info);
if (rc) { if (rc) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment