Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit dc8a5c99 authored by Joe Perches's avatar Joe Perches Committed by Jiri Kosina
Browse files

s390: Convert vmalloc/memset to vzalloc



Signed-off-by: default avatarJoe Perches <joe@perches.com>
Signed-off-by: default avatarJiri Kosina <jkosina@suse.cz>
parent 81d66c70
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -562,10 +562,9 @@ static int dbfs_d204_create(void **data, void **data_free_ptr, size_t *size)
	void *base;

	buf_size = PAGE_SIZE * (diag204_buf_pages + 1) + sizeof(d204->hdr);
	base = vmalloc(buf_size);
	base = vzalloc(buf_size);
	if (!base)
		return -ENOMEM;
	memset(base, 0, buf_size);
	d204 = page_align_ptr(base + sizeof(d204->hdr)) - sizeof(d204->hdr);
	rc = diag204_do_store(d204->buf, diag204_buf_pages);
	if (rc) {
+1 −2
Original line number Diff line number Diff line
@@ -335,10 +335,9 @@ cio_ignore_write(struct file *file, const char __user *user_buf,
		return -EINVAL;
	if (user_len > 65536)
		user_len = 65536;
	buf = vmalloc (user_len + 1); /* maybe better use the stack? */
	buf = vzalloc(user_len + 1); /* maybe better use the stack? */
	if (buf == NULL)
		return -ENOMEM;
	memset(buf, 0, user_len + 1);

	if (strncpy_from_user (buf, user_buf, user_len) < 0) {
		rc = -EFAULT;