s390/hypfs: remove open-coded PTR_ALIGN()
authorHeiko Carstens <hca@linux.ibm.com>
Tue, 4 Jul 2023 13:47:12 +0000 (15:47 +0200)
committerHeiko Carstens <hca@linux.ibm.com>
Mon, 24 Jul 2023 10:12:22 +0000 (12:12 +0200)
Get rid of page_align_ptr() and use PTR_ALIGN() instead.

Acked-by: Alexander Gordeev <agordeev@linux.ibm.com>
Signed-off-by: Heiko Carstens <hca@linux.ibm.com>
arch/s390/hypfs/hypfs_diag.c

index c8083dc..889d83c 100644 (file)
@@ -215,11 +215,6 @@ static void diag204_free_buffer(void)
        diag204_buf = NULL;
 }
 
-static void *page_align_ptr(void *ptr)
-{
-       return (void *) PAGE_ALIGN((unsigned long) ptr);
-}
-
 static void *diag204_get_buffer(enum diag204_format fmt, int *pages)
 {
        if (diag204_buf) {
@@ -379,7 +374,7 @@ static int dbfs_d204_create(void **data, void **data_free_ptr, size_t *size)
        base = vzalloc(buf_size);
        if (!base)
                return -ENOMEM;
-       d204 = page_align_ptr(base + sizeof(d204->hdr)) - sizeof(d204->hdr);
+       d204 = PTR_ALIGN(base + sizeof(d204->hdr), PAGE_SIZE) - sizeof(d204->hdr);
        rc = diag204_do_store(d204->buf, diag204_buf_pages);
        if (rc) {
                vfree(base);