aboutsummaryrefslogtreecommitdiffstats
path: root/fs
diff options
context:
space:
mode:
authorDavid Howells <dhowells@redhat.com>2005-01-04 05:15:00 -0800
committerLinus Torvalds <torvalds@ppc970.osdl.org>2005-01-04 05:15:00 -0800
commit1fa5e01246a4f0ec32f9bdfc910d57e30bfc0260 (patch)
tree7e44a66f9c2a8cc6e6449c04af9fc10afabf7cf0 /fs
parentfc1d4be6b015e2c34847df3994d80f3eec44cc42 (diff)
downloadhistory-1fa5e01246a4f0ec32f9bdfc910d57e30bfc0260.tar.gz
[PATCH] GP-REL data support
The attached patch makes it possible to support gp-rel addressing for small variables. Since the FR-V cpu's have fixed-length instructions and plenty of general-purpose registers, one register is nominated as a base for the small data area. This makes it possible to use single-insn accesses to access global and static variables instead of having to use multiple instructions. This, however, causes problems with small variables used to pinpoint the beginning and end of sections. The compiler assumes it can use gp-rel addressing for these, but the linker then complains because the displacement is out of range. By declaring certain variables as arrays or by forcing them into named sections, the compiler is persuaded to access them as if they can be outside the displacement range. Declaring the variables as "const void" type also works. Signed-Off-By: David Howells <dhowells@redhat.com> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'fs')
-rw-r--r--fs/proc/proc_misc.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/fs/proc/proc_misc.c b/fs/proc/proc_misc.c
index ab18d95b9f3415..abf97ff80bc170 100644
--- a/fs/proc/proc_misc.c
+++ b/fs/proc/proc_misc.c
@@ -256,7 +256,6 @@ static struct file_operations fragmentation_file_operations = {
static int version_read_proc(char *page, char **start, off_t off,
int count, int *eof, void *data)
{
- extern char *linux_banner;
int len;
strcpy(page, linux_banner);