-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc
Pull sparc fixes from David Miller: - Fix symbol version generation for assembler on sparc, from Nagarathnam Muthusamy. - Fix compound page handling in gup_huge_pmd(), from Nitin Gupta. * git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc: sparc64: Fix gup_huge_pmd Adding the type of exported symbols sed regex in Makefile.build requires line break between exported symbols Adding asm-prototypes.h for genksyms to generate crc
- Loading branch information
Showing
7 changed files
with
57 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
/* | ||
* Copyright (c) 2017 Oracle and/or its affiliates. All rights reserved. | ||
*/ | ||
|
||
#include <asm/xor.h> | ||
#include <asm/checksum.h> | ||
#include <asm/trap_block.h> | ||
#include <asm/uaccess.h> | ||
#include <asm/atomic.h> | ||
#include <asm/ftrace.h> | ||
#include <asm/cacheflush.h> | ||
#include <asm/oplib.h> | ||
#include <linux/atomic.h> | ||
|
||
void *__memscan_zero(void *, size_t); | ||
void *__memscan_generic(void *, int, size_t); | ||
void *__bzero(void *, size_t); | ||
void VISenter(void); /* Dummy prototype to supress warning */ | ||
#undef memcpy | ||
#undef memset | ||
void *memcpy(void *dest, const void *src, size_t n); | ||
void *memset(void *s, int c, size_t n); | ||
typedef int TItype __attribute__((mode(TI))); | ||
TItype __multi3(TItype a, TItype b); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters