mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH 2/11] - UML 64-bit type cleanups
@ 2004-11-13  2:00 Jeff Dike
  0 siblings, 0 replies; only message in thread
From: Jeff Dike @ 2004-11-13  2:00 UTC (permalink / raw)
  To: akpm, Blaisorblade; +Cc: linux-kernel

64-bit cleanliness - Fix the number of bits of the time_t field in the
COW header to be 32 and change an int to a longs.

Signed-off-by: Jeff Dike <jdike@addtoit.com>

Index: 2.6.9/arch/um/drivers/cow_user.c
===================================================================
--- 2.6.9.orig/arch/um/drivers/cow_user.c	2004-11-08 19:14:44.000000000 -0500
+++ 2.6.9/arch/um/drivers/cow_user.c	2004-11-12 13:33:26.000000000 -0500
@@ -67,7 +67,7 @@
 struct cow_header_v3 {
 	__u32 magic;
 	__u32 version;
-	time_t mtime;
+	__u32 mtime;
 	__u64 size;
 	__u32 sectorsize;
 	__u32 alignment;
Index: 2.6.9/arch/um/include/kern_util.h
===================================================================
--- 2.6.9.orig/arch/um/include/kern_util.h	2004-11-08 19:14:44.000000000 -0500
+++ 2.6.9/arch/um/include/kern_util.h	2004-11-12 18:05:29.000000000 -0500
@@ -41,7 +41,7 @@
 extern int segv_syscall(void);
 extern void kern_finish_exec(void *task, int new_pid, unsigned long stack);
 extern int page_size(void);
-extern int page_mask(void);
+extern unsigned long page_mask(void);
 extern int need_finish_fork(void);
 extern void free_stack(unsigned long stack, int order);
 extern void add_input_request(int op, void (*proc)(int), void *arg);
Index: 2.6.9/arch/um/kernel/process_kern.c
===================================================================
--- 2.6.9.orig/arch/um/kernel/process_kern.c	2004-11-12 13:26:04.000000000 -0500
+++ 2.6.9/arch/um/kernel/process_kern.c	2004-11-12 18:05:29.000000000 -0500
@@ -1,5 +1,6 @@
 /* 
  * Copyright (C) 2000, 2001, 2002 Jeff Dike (jdike@karaya.com)
+ * Copyright 2003 PathScale, Inc.
  * Licensed under the GPL
  */
 
@@ -225,7 +226,7 @@
 	return(PAGE_SIZE);
 }
 
-int page_mask(void)
+unsigned long page_mask(void)
 {
 	return(PAGE_MASK);
 }


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2004-11-12 23:56 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2004-11-13  2:00 [PATCH 2/11] - UML 64-bit type cleanups Jeff Dike

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®