Skip to content

Commit

Permalink
[S390] chsc: initialization fixes
Browse files Browse the repository at this point in the history
This patch fixes:
 * kfree vs. free_page usage
 * structure definition for determine_css_characteristics
 * naming convention for the chsc init function
 * deregistration of crw handlers in the cleanup path

Signed-off-by: Sebastian Ott <sebott@linux.vnet.ibm.com>
Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
  • Loading branch information
Sebastian Ott authored and Martin Schwidefsky committed Oct 25, 2010
1 parent b730f3a commit 34aec07
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 17 deletions.
12 changes: 6 additions & 6 deletions drivers/s390/cio/chsc.c
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* drivers/s390/cio/chsc.c
* S/390 common I/O routines -- channel subsystem call
*
* Copyright IBM Corp. 1999,2008
* Copyright IBM Corp. 1999,2010
* Author(s): Ingo Adlung (adlung@de.ibm.com)
* Cornelia Huck (cornelia.huck@de.ibm.com)
* Arnd Bergmann (arndb@de.ibm.com)
Expand Down Expand Up @@ -813,7 +813,7 @@ int chsc_get_channel_measurement_chars(struct channel_path *chp)
return ret;
}

int __init chsc_alloc_sei_area(void)
int __init chsc_init(void)
{
int ret;

Expand All @@ -825,14 +825,14 @@ int __init chsc_alloc_sei_area(void)
}
ret = crw_register_handler(CRW_RSC_CSS, chsc_process_crw);
if (ret)
kfree(sei_page);
free_page((unsigned long)sei_page);
return ret;
}

void __init chsc_free_sei_area(void)
void __init chsc_init_cleanup(void)
{
crw_unregister_handler(CRW_RSC_CSS);
kfree(sei_page);
free_page((unsigned long)sei_page);
}

int chsc_enable_facility(int operation_code)
Expand Down Expand Up @@ -895,7 +895,7 @@ chsc_determine_css_characteristics(void)
struct chsc_header response;
u32 reserved4;
u32 general_char[510];
u32 chsc_char[518];
u32 chsc_char[508];
} __attribute__ ((packed)) *scsc_area;

scsc_area = (void *)get_zeroed_page(GFP_KERNEL | GFP_DMA);
Expand Down
4 changes: 2 additions & 2 deletions drivers/s390/cio/chsc.h
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,8 @@ struct chsc_ssd_info {
extern int chsc_get_ssd_info(struct subchannel_id schid,
struct chsc_ssd_info *ssd);
extern int chsc_determine_css_characteristics(void);
extern int chsc_alloc_sei_area(void);
extern void chsc_free_sei_area(void);
extern int chsc_init(void);
extern void chsc_init_cleanup(void);

extern int chsc_enable_facility(int);
struct channel_subsystem;
Expand Down
18 changes: 9 additions & 9 deletions drivers/s390/cio/css.c
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* driver for channel subsystem
*
* Copyright IBM Corp. 2002, 2009
* Copyright IBM Corp. 2002, 2010
*
* Author(s): Arnd Bergmann (arndb@de.ibm.com)
* Cornelia Huck (cornelia.huck@de.ibm.com)
Expand Down Expand Up @@ -863,14 +863,14 @@ static int __init css_bus_init(void)
{
int ret, i;

ret = chsc_init();
if (ret)
return ret;

ret = chsc_determine_css_characteristics();
if (ret == -ENOMEM)
goto out;

ret = chsc_alloc_sei_area();
if (ret)
goto out;

/* Try to enable MSS. */
ret = chsc_enable_facility(CHSC_SDA_OC_MSS);
if (ret)
Expand Down Expand Up @@ -956,9 +956,9 @@ static int __init css_bus_init(void)
}
bus_unregister(&css_bus_type);
out:
crw_unregister_handler(CRW_RSC_CSS);
chsc_free_sei_area();
crw_unregister_handler(CRW_RSC_SCH);
idset_free(slow_subchannel_set);
chsc_init_cleanup();
pr_alert("The CSS device driver initialization failed with "
"errno=%d\n", ret);
return ret;
Expand All @@ -978,9 +978,9 @@ static void __init css_bus_cleanup(void)
device_unregister(&css->device);
}
bus_unregister(&css_bus_type);
crw_unregister_handler(CRW_RSC_CSS);
chsc_free_sei_area();
crw_unregister_handler(CRW_RSC_SCH);
idset_free(slow_subchannel_set);
chsc_init_cleanup();
isc_unregister(IO_SCH_ISC);
}

Expand Down

0 comments on commit 34aec07

Please sign in to comment.