diff options
Diffstat (limited to 'arch/s390/hypfs')
| -rw-r--r-- | arch/s390/hypfs/hypfs_diag.c | 2 | ||||
| -rw-r--r-- | arch/s390/hypfs/hypfs_diag0c.c | 3 | ||||
| -rw-r--r-- | arch/s390/hypfs/hypfs_sprp.c | 1 | 
3 files changed, 3 insertions, 3 deletions
| diff --git a/arch/s390/hypfs/hypfs_diag.c b/arch/s390/hypfs/hypfs_diag.c index be8cc53204b5..a2945b289a29 100644 --- a/arch/s390/hypfs/hypfs_diag.c +++ b/arch/s390/hypfs/hypfs_diag.c @@ -239,7 +239,7 @@ static void *page_align_ptr(void *ptr)  static void *diag204_alloc_vbuf(int pages)  {  	/* The buffer has to be page aligned! */ -	diag204_buf_vmalloc = vmalloc(PAGE_SIZE * (pages + 1)); +	diag204_buf_vmalloc = vmalloc(array_size(PAGE_SIZE, (pages + 1)));  	if (!diag204_buf_vmalloc)  		return ERR_PTR(-ENOMEM);  	diag204_buf = page_align_ptr(diag204_buf_vmalloc); diff --git a/arch/s390/hypfs/hypfs_diag0c.c b/arch/s390/hypfs/hypfs_diag0c.c index dce87f1bec94..cebf05150cc1 100644 --- a/arch/s390/hypfs/hypfs_diag0c.c +++ b/arch/s390/hypfs/hypfs_diag0c.c @@ -49,7 +49,8 @@ static void *diag0c_store(unsigned int *count)  	get_online_cpus();  	cpu_count = num_online_cpus(); -	cpu_vec = kmalloc(sizeof(*cpu_vec) * num_possible_cpus(), GFP_KERNEL); +	cpu_vec = kmalloc_array(num_possible_cpus(), sizeof(*cpu_vec), +				GFP_KERNEL);  	if (!cpu_vec)  		goto fail_put_online_cpus;  	/* Note: Diag 0c needs 8 byte alignment and real storage */ diff --git a/arch/s390/hypfs/hypfs_sprp.c b/arch/s390/hypfs/hypfs_sprp.c index ae0ed8dd5f1b..5d85a039391c 100644 --- a/arch/s390/hypfs/hypfs_sprp.c +++ b/arch/s390/hypfs/hypfs_sprp.c @@ -13,7 +13,6 @@  #include <linux/string.h>  #include <linux/types.h>  #include <linux/uaccess.h> -#include <asm/compat.h>  #include <asm/diag.h>  #include <asm/sclp.h>  #include "hypfs.h" |