mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-18 20:56:46 +07:00
sparc: switch to providing csum_and_copy_from_user()
sparc64 already is equivalent to that (trivial access_ok()); add it into sparc32 csum_partial_copy_from_user() and we can rename both to csum_and_copy_fromUser() and be done with that. Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
This commit is contained in:
parent
77a8710ba7
commit
76666be8c9
@ -1,6 +1,7 @@
|
|||||||
/* SPDX-License-Identifier: GPL-2.0 */
|
/* SPDX-License-Identifier: GPL-2.0 */
|
||||||
#ifndef ___ASM_SPARC_CHECKSUM_H
|
#ifndef ___ASM_SPARC_CHECKSUM_H
|
||||||
#define ___ASM_SPARC_CHECKSUM_H
|
#define ___ASM_SPARC_CHECKSUM_H
|
||||||
|
#define _HAVE_ARCH_COPY_AND_CSUM_FROM_USER
|
||||||
#if defined(__sparc__) && defined(__arch64__)
|
#if defined(__sparc__) && defined(__arch64__)
|
||||||
#include <asm/checksum_64.h>
|
#include <asm/checksum_64.h>
|
||||||
#else
|
#else
|
||||||
|
@ -60,7 +60,7 @@ csum_partial_copy_nocheck(const void *src, void *dst, int len, __wsum sum)
|
|||||||
}
|
}
|
||||||
|
|
||||||
static inline __wsum
|
static inline __wsum
|
||||||
csum_partial_copy_from_user(const void __user *src, void *dst, int len,
|
csum_and_copy_from_user(const void __user *src, void *dst, int len,
|
||||||
__wsum sum, int *err)
|
__wsum sum, int *err)
|
||||||
{
|
{
|
||||||
register unsigned long ret asm("o0") = (unsigned long)src;
|
register unsigned long ret asm("o0") = (unsigned long)src;
|
||||||
@ -68,6 +68,12 @@ csum_partial_copy_from_user(const void __user *src, void *dst, int len,
|
|||||||
register int l asm("g1") = len;
|
register int l asm("g1") = len;
|
||||||
register __wsum s asm("g7") = sum;
|
register __wsum s asm("g7") = sum;
|
||||||
|
|
||||||
|
if (unlikely(!access_ok(src, len))) {
|
||||||
|
if (len)
|
||||||
|
*err = -EFAULT;
|
||||||
|
return sum;
|
||||||
|
}
|
||||||
|
|
||||||
__asm__ __volatile__ (
|
__asm__ __volatile__ (
|
||||||
".section __ex_table,#alloc\n\t"
|
".section __ex_table,#alloc\n\t"
|
||||||
".align 4\n\t"
|
".align 4\n\t"
|
||||||
|
@ -46,7 +46,7 @@ long __csum_partial_copy_from_user(const void __user *src,
|
|||||||
__wsum sum);
|
__wsum sum);
|
||||||
|
|
||||||
static inline __wsum
|
static inline __wsum
|
||||||
csum_partial_copy_from_user(const void __user *src,
|
csum_and_copy_from_user(const void __user *src,
|
||||||
void *dst, int len,
|
void *dst, int len,
|
||||||
__wsum sum, int *err)
|
__wsum sum, int *err)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user