Re: [PATCH 03/32] target: Allocate more room for port default groups

2013-12-16 Thread Nicholas A. Bellinger
On Fri, 2013-12-13 at 15:58 -0800, Andy Grover wrote:
> See target_stat_setup_port_default_groups, we need a 4 element array.
> 
> Signed-off-by: Andy Grover 
> ---
>  drivers/target/target_core_fabric_configfs.c |2 +-
>  1 files changed, 1 insertions(+), 1 deletions(-)
> 
> diff --git a/drivers/target/target_core_fabric_configfs.c 
> b/drivers/target/target_core_fabric_configfs.c
> index dae2ad6..fdadc4d 100644
> --- a/drivers/target/target_core_fabric_configfs.c
> +++ b/drivers/target/target_core_fabric_configfs.c
> @@ -906,7 +906,7 @@ static struct config_group *target_fabric_make_lun(
>   lun_cg->default_groups[1] = NULL;
>  
>   port_stat_grp = &lun->port_stat_grps.stat_group;
> - port_stat_grp->default_groups =  kzalloc(sizeof(struct config_group) * 
> 3,
> + port_stat_grp->default_groups =  kzalloc(sizeof(struct config_group) * 
> 4,
>   GFP_KERNEL);
>   if (!port_stat_grp->default_groups) {
>   pr_err("Unable to allocate port_stat_grp->default_groups\n");

Applied to for-next.

--nab

--
To unsubscribe from this list: send the line "unsubscribe linux-scsi" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


[PATCH 03/32] target: Allocate more room for port default groups

2013-12-13 Thread Andy Grover
See target_stat_setup_port_default_groups, we need a 4 element array.

Signed-off-by: Andy Grover 
---
 drivers/target/target_core_fabric_configfs.c |2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/target/target_core_fabric_configfs.c 
b/drivers/target/target_core_fabric_configfs.c
index dae2ad6..fdadc4d 100644
--- a/drivers/target/target_core_fabric_configfs.c
+++ b/drivers/target/target_core_fabric_configfs.c
@@ -906,7 +906,7 @@ static struct config_group *target_fabric_make_lun(
lun_cg->default_groups[1] = NULL;
 
port_stat_grp = &lun->port_stat_grps.stat_group;
-   port_stat_grp->default_groups =  kzalloc(sizeof(struct config_group) * 
3,
+   port_stat_grp->default_groups =  kzalloc(sizeof(struct config_group) * 
4,
GFP_KERNEL);
if (!port_stat_grp->default_groups) {
pr_err("Unable to allocate port_stat_grp->default_groups\n");
-- 
1.7.1

--
To unsubscribe from this list: send the line "unsubscribe linux-scsi" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html