From 2f89e26ac01b18b51b7ecd055b282e67964e3b28 Mon Sep 17 00:00:00 2001 From: Masamichi Takagi Date: Thu, 14 Nov 2013 18:30:06 +0900 Subject: [PATCH] add modification history entry to the following files, mckernel/lib/include/*.h mckernel/arch/x86/elfboot/* mckernel/arch/x86/kboot/main.c mckernel/arch/x86/kernel/* mckernel/lib/page_alloc.c mckernel/lib/string.c mckernel/lib/include/ihk/* except mckernel/arch/x86/kernel/include/signal.h mckernel/arch/x86/tools/mcreboot-attached-mic.sh.in mckernel/arch/x86/kernel/include/syscall_list.h mckernel/arch/x86/kernel/syscall.c . --- arch/x86/elfboot/elfboot.c | 3 +++ arch/x86/elfboot/head.S | 3 +++ arch/x86/elfboot/test.h | 4 ++++ arch/x86/elfboot/test_main.c | 4 ++++ arch/x86/kboot/main.c | 12 ++++++++++++ arch/x86/kernel/context.S | 5 ++++- arch/x86/kernel/cpu.c | 3 +++ arch/x86/kernel/include/arch-memory.h | 3 +++ arch/x86/kernel/include/bitops.h | 3 +++ arch/x86/kernel/include/cpulocal.h | 3 +++ arch/x86/kernel/include/ihk/atomic.h | 3 +++ arch/x86/kernel/include/ihk/context.h | 5 ++++- arch/x86/kernel/include/ihk/ikc.h | 3 +++ arch/x86/kernel/include/ihk/types.h | 3 +++ arch/x86/kernel/include/registers.h | 3 +++ arch/x86/kernel/interrupt.S | 5 ++++- arch/x86/kernel/local.c | 3 +++ arch/x86/kernel/lock.c | 3 +++ arch/x86/kernel/memory.c | 3 +++ arch/x86/kernel/mikc.c | 3 +++ arch/x86/kernel/trampoline.S | 5 ++++- lib/include/ihk/cpu.h | 3 +++ lib/include/ihk/debug.h | 3 +++ lib/include/ihk/dma.h | 3 +++ lib/include/ihk/lock.h | 3 +++ lib/include/ihk/mm.h | 3 +++ lib/include/ihk/page_alloc.h | 3 +++ lib/include/ihk/perfctr.h | 3 +++ lib/include/limits.h | 3 +++ lib/include/memory.h | 3 +++ lib/include/string.h | 3 +++ lib/include/types.h | 3 +++ lib/page_alloc.c | 4 ++++ lib/string.c | 3 +++ 34 files changed, 118 insertions(+), 4 deletions(-) diff --git a/arch/x86/elfboot/elfboot.c b/arch/x86/elfboot/elfboot.c index fe5facd9..67c83700 100644 --- a/arch/x86/elfboot/elfboot.c +++ b/arch/x86/elfboot/elfboot.c @@ -6,6 +6,9 @@ * \author Taku Shimosawa \par * Copyright (C) 2011 - 2012 Taku Shimosawa */ +/* + * HISTORY + */ #include #include "test.h" diff --git a/arch/x86/elfboot/head.S b/arch/x86/elfboot/head.S index 13ad7c5e..825f4793 100644 --- a/arch/x86/elfboot/head.S +++ b/arch/x86/elfboot/head.S @@ -6,6 +6,9 @@ * \author Taku Shimosawa \par * Copyright (C) 2011 - 2012 Taku Shimosawa */ +/* + * HISTORY + */ .text .globl _start _start: diff --git a/arch/x86/elfboot/test.h b/arch/x86/elfboot/test.h index 19894916..712e2e61 100644 --- a/arch/x86/elfboot/test.h +++ b/arch/x86/elfboot/test.h @@ -6,6 +6,10 @@ * \author Taku Shimosawa \par * Copyright (C) 2011 - 2012 Taku Shimosawa */ +/* + * HISTORY + */ + #ifdef TEST #include #include diff --git a/arch/x86/elfboot/test_main.c b/arch/x86/elfboot/test_main.c index 7160e632..cc1c816e 100644 --- a/arch/x86/elfboot/test_main.c +++ b/arch/x86/elfboot/test_main.c @@ -6,6 +6,10 @@ * \author Taku Shimosawa \par * Copyright (C) 2011 - 2012 Taku Shimosawa */ +/* + * HISTORY + */ + #include #include #include diff --git a/arch/x86/kboot/main.c b/arch/x86/kboot/main.c index 399c9c72..6e77ce98 100644 --- a/arch/x86/kboot/main.c +++ b/arch/x86/kboot/main.c @@ -1,3 +1,15 @@ +/** + * \file main.c + * License details are found in the file LICENSE. + * \brief + * Load an ELF image on data_start and jump to its entry point. + * \author Taku Shimosawa \par + * Copyright (C) 2011 - 2012 Taku Shimosawa + */ +/* + * HISTORY + */ + #include extern char data_start[], data_end[]; diff --git a/arch/x86/kernel/context.S b/arch/x86/kernel/context.S index 9c0fe957..0551f76e 100644 --- a/arch/x86/kernel/context.S +++ b/arch/x86/kernel/context.S @@ -6,8 +6,11 @@ * \author Taku Shimosawa \par * Copyright (C) 2011 - 2012 Taku Shimosawa */ +/* + * HISTORY + */ - #define X86_CPU_LOCAL_OFFSET_TSS 128 +#define X86_CPU_LOCAL_OFFSET_TSS 128 #define X86_TSS_OFFSET_SP0 4 #define X86_CPU_LOCAL_OFFSET_SP0 \ (X86_CPU_LOCAL_OFFSET_TSS + X86_TSS_OFFSET_SP0) diff --git a/arch/x86/kernel/cpu.c b/arch/x86/kernel/cpu.c index bd73f902..6c78c206 100644 --- a/arch/x86/kernel/cpu.c +++ b/arch/x86/kernel/cpu.c @@ -6,6 +6,9 @@ * \author Taku Shimosawa \par * Copyright (C) 2011 - 2012 Taku Shimosawa */ +/* + * HISTORY + */ #include #include diff --git a/arch/x86/kernel/include/arch-memory.h b/arch/x86/kernel/include/arch-memory.h index d63d9e95..26ec9681 100644 --- a/arch/x86/kernel/include/arch-memory.h +++ b/arch/x86/kernel/include/arch-memory.h @@ -6,6 +6,9 @@ * \author Taku Shimosawa \par * Copyright (C) 2011 - 2012 Taku Shimosawa */ +/* + * HISTORY + */ #ifndef __HEADER_X86_COMMON_ARCH_MEMORY_H #define __HEADER_X86_COMMON_ARCH_MEMORY_H diff --git a/arch/x86/kernel/include/bitops.h b/arch/x86/kernel/include/bitops.h index 69b58ea9..39a23058 100644 --- a/arch/x86/kernel/include/bitops.h +++ b/arch/x86/kernel/include/bitops.h @@ -6,6 +6,9 @@ * \author Taku Shimosawa \par * Copyright (C) 2011 - 2012 Taku Shimosawa */ +/* + * HISTORY + */ #ifndef HEADER_X86_COMMON_BITOPS_H #define HEADER_X86_COMMON_BITOPS_H diff --git a/arch/x86/kernel/include/cpulocal.h b/arch/x86/kernel/include/cpulocal.h index 46ed009b..a01bca10 100644 --- a/arch/x86/kernel/include/cpulocal.h +++ b/arch/x86/kernel/include/cpulocal.h @@ -6,6 +6,9 @@ * \author Taku Shimosawa \par * Copyright (C) 2011 - 2012 Taku Shimosawa */ +/* + * HISTORY + */ #ifndef HEADER_X86_COMMON_CPULOCAL_H #define HEADER_X86_COMMON_CPULOCAL_H diff --git a/arch/x86/kernel/include/ihk/atomic.h b/arch/x86/kernel/include/ihk/atomic.h index 4c4cb089..4801c208 100644 --- a/arch/x86/kernel/include/ihk/atomic.h +++ b/arch/x86/kernel/include/ihk/atomic.h @@ -6,6 +6,9 @@ * \author Taku Shimosawa \par * Copyright (C) 2011 - 2012 Taku Shimosawa */ +/* + * HISTORY + */ #ifndef HEADER_X86_COMMON_IHK_ATOMIC_H #define HEADER_X86_COMMON_IHK_ATOMIC_H diff --git a/arch/x86/kernel/include/ihk/context.h b/arch/x86/kernel/include/ihk/context.h index 3c8a14ec..ff51d7d6 100644 --- a/arch/x86/kernel/include/ihk/context.h +++ b/arch/x86/kernel/include/ihk/context.h @@ -2,11 +2,14 @@ * \file context.h * License details are found in the file LICENSE. * \brief - * Define types of registers belonging to context. + * Define types of registers consisting of context. * Define macros to retrieve arguments of system call. * \author Taku Shimosawa \par * Copyright (C) 2011 - 2012 Taku Shimosawa */ +/* + * HISTORY + */ #ifndef __HEADER_X86_COMMON_CONTEXT_H #define __HEADER_X86_COMMON_CONTEXT_H diff --git a/arch/x86/kernel/include/ihk/ikc.h b/arch/x86/kernel/include/ihk/ikc.h index 030872cc..0132ca6d 100644 --- a/arch/x86/kernel/include/ihk/ikc.h +++ b/arch/x86/kernel/include/ihk/ikc.h @@ -6,6 +6,9 @@ * \author Taku Shimosawa \par * Copyright (C) 2011 - 2012 Taku Shimosawa */ +/* + * HISTORY + */ #ifndef HEADER_X86_COMMON_IHK_IKC_H #define HEADER_X86_COMMON_IHK_IKC_H diff --git a/arch/x86/kernel/include/ihk/types.h b/arch/x86/kernel/include/ihk/types.h index d095b71d..9f000a96 100644 --- a/arch/x86/kernel/include/ihk/types.h +++ b/arch/x86/kernel/include/ihk/types.h @@ -6,6 +6,9 @@ * \author Taku Shimosawa \par * Copyright (C) 2011 - 2012 Taku Shimosawa */ +/* + * HISTORY + */ #ifndef X86_COMMON_TYPES_H #define X86_COMMON_TYPES_H diff --git a/arch/x86/kernel/include/registers.h b/arch/x86/kernel/include/registers.h index de10d895..601e4ecc 100644 --- a/arch/x86/kernel/include/registers.h +++ b/arch/x86/kernel/include/registers.h @@ -7,6 +7,9 @@ * \author Taku Shimosawa \par * Copyright (C) 2011 - 2012 Taku Shimosawa */ +/* + * HISTORY + */ #ifndef __HEADER_X86_COMMON_REGISTERS_H #define __HEADER_X86_COMMON_REGISTERS_H diff --git a/arch/x86/kernel/interrupt.S b/arch/x86/kernel/interrupt.S index 1ab8d51d..da0d87c6 100644 --- a/arch/x86/kernel/interrupt.S +++ b/arch/x86/kernel/interrupt.S @@ -6,8 +6,11 @@ * \author Taku Shimosawa \par * Copyright (C) 2011 - 2012 Taku Shimosawa */ +/* + * HISTORY + */ - #define X86_CPU_LOCAL_OFFSET_TSS 128 +#define X86_CPU_LOCAL_OFFSET_TSS 128 #define X86_TSS_OFFSET_SP0 4 #define X86_CPU_LOCAL_OFFSET_SP0 \ (X86_CPU_LOCAL_OFFSET_TSS + X86_TSS_OFFSET_SP0) diff --git a/arch/x86/kernel/local.c b/arch/x86/kernel/local.c index 76b84202..1dee8edf 100644 --- a/arch/x86/kernel/local.c +++ b/arch/x86/kernel/local.c @@ -7,6 +7,9 @@ * \author Taku Shimosawa \par * Copyright (C) 2011 - 2012 Taku Shimosawa */ +/* + * HISTORY + */ #include #include diff --git a/arch/x86/kernel/lock.c b/arch/x86/kernel/lock.c index 750fc1fe..ee8a7369 100644 --- a/arch/x86/kernel/lock.c +++ b/arch/x86/kernel/lock.c @@ -6,6 +6,9 @@ * \author Taku Shimosawa \par * Copyright (C) 2011 - 2012 Taku Shimosawa */ +/* + * HISTORY + */ #include diff --git a/arch/x86/kernel/memory.c b/arch/x86/kernel/memory.c index d1b4baeb..d0fd2f9d 100644 --- a/arch/x86/kernel/memory.c +++ b/arch/x86/kernel/memory.c @@ -6,6 +6,9 @@ * \author Taku Shimosawa \par * Copyright (C) 2011 - 2012 Taku Shimosawa */ +/* + * HISTORY + */ #include #include diff --git a/arch/x86/kernel/mikc.c b/arch/x86/kernel/mikc.c index df6ae324..cfde96da 100644 --- a/arch/x86/kernel/mikc.c +++ b/arch/x86/kernel/mikc.c @@ -6,6 +6,9 @@ * \author Taku Shimosawa \par * Copyright (C) 2011 - 2012 Taku Shimosawa */ +/* + * HISTORY + */ #include #include diff --git a/arch/x86/kernel/trampoline.S b/arch/x86/kernel/trampoline.S index d23ec350..7ca0ac3d 100644 --- a/arch/x86/kernel/trampoline.S +++ b/arch/x86/kernel/trampoline.S @@ -7,8 +7,11 @@ * \author Taku Shimosawa \par * Copyright (C) 2011 - 2012 Taku Shimosawa */ +/* + * HISTORY + */ - #define BOOT_CS 0x10 +#define BOOT_CS 0x10 #define BOOT_DS 0x18 #define BOOT_CS64 0x20 diff --git a/lib/include/ihk/cpu.h b/lib/include/ihk/cpu.h index 25c983a0..7d9e5de3 100644 --- a/lib/include/ihk/cpu.h +++ b/lib/include/ihk/cpu.h @@ -6,6 +6,9 @@ * \author Taku Shimosawa \par * Copyright (C) 2011 - 2012 Taku Shimosawa */ +/* + * HISTORY + */ #ifndef IHK_CPU_H #define IHK_CPU_H diff --git a/lib/include/ihk/debug.h b/lib/include/ihk/debug.h index 56444bb3..e23a567f 100644 --- a/lib/include/ihk/debug.h +++ b/lib/include/ihk/debug.h @@ -6,6 +6,9 @@ * \author Taku Shimosawa \par * Copyright (C) 2011 - 2012 Taku Shimosawa */ +/* + * HISTORY + */ #ifndef IHK_DEBUG_H #define IHK_DEBUG_H diff --git a/lib/include/ihk/dma.h b/lib/include/ihk/dma.h index 42f42fa4..2ceafe36 100644 --- a/lib/include/ihk/dma.h +++ b/lib/include/ihk/dma.h @@ -6,6 +6,9 @@ * \author Taku Shimosawa \par * Copyright (C) 2011 - 2012 Taku Shimosawa */ +/* + * HISTORY + */ #ifndef __HEADER_GENERIC_INCLUDE_DMA_H #define __HEADER_GENERIC_INCLUDE_DMA_H diff --git a/lib/include/ihk/lock.h b/lib/include/ihk/lock.h index f85f5bac..47ca8acb 100644 --- a/lib/include/ihk/lock.h +++ b/lib/include/ihk/lock.h @@ -6,6 +6,9 @@ * \author Taku Shimosawa \par * Copyright (C) 2011 - 2012 Taku Shimosawa */ +/* + * HISTORY + */ #ifndef __HEADER_GENERIC_IHK_LOCK #define __HEADER_GENERIC_IHK_LOCK diff --git a/lib/include/ihk/mm.h b/lib/include/ihk/mm.h index dcd5ffcd..a5bb214a 100644 --- a/lib/include/ihk/mm.h +++ b/lib/include/ihk/mm.h @@ -6,6 +6,9 @@ * \author Taku Shimosawa \par * Copyright (C) 2011 - 2012 Taku Shimosawa */ +/* + * HISTORY + */ #ifndef __HEADER_GENERIC_IHK_MM_H #define __HEADER_GENERIC_IHK_MM_H diff --git a/lib/include/ihk/page_alloc.h b/lib/include/ihk/page_alloc.h index db94e339..fe7ee473 100644 --- a/lib/include/ihk/page_alloc.h +++ b/lib/include/ihk/page_alloc.h @@ -7,6 +7,9 @@ * \author Taku Shimosawa \par * Copyright (C) 2011 - 2012 Taku Shimosawa */ +/* + * HISTORY + */ #ifndef __HEADER_GENERIC_IHK_PAGE_ALLOC #define __HEADER_GENERIC_IHK_PAGE_ALLOC diff --git a/lib/include/ihk/perfctr.h b/lib/include/ihk/perfctr.h index 8d9d6964..4f8e38b1 100644 --- a/lib/include/ihk/perfctr.h +++ b/lib/include/ihk/perfctr.h @@ -6,6 +6,9 @@ * \author Taku Shimosawa \par * Copyright (C) 2011 - 2012 Taku Shimosawa */ +/* + * HISTORY + */ #ifndef HEADER_GENERIC_IHK_PERFCTR_H #define HEADER_GENERIC_IHK_PERFCTR_H diff --git a/lib/include/limits.h b/lib/include/limits.h index 6f46281e..4d689192 100644 --- a/lib/include/limits.h +++ b/lib/include/limits.h @@ -6,6 +6,9 @@ * \author Taku Shimosawa \par * Copyright (C) 2011 - 2012 Taku Shimosawa */ +/* + * HISTORY + */ #ifndef __HEADER_LIMITS #define __HEADER_LIMITS diff --git a/lib/include/memory.h b/lib/include/memory.h index c09330b9..0da3a0cd 100644 --- a/lib/include/memory.h +++ b/lib/include/memory.h @@ -6,6 +6,9 @@ * \author Taku Shimosawa \par * Copyright (C) 2011 - 2012 Taku Shimosawa */ +/* + * HISTORY + */ #ifndef __HEADER_GENERIC_MEMORY_H #define __HEADER_GENERIC_MEMORY_H diff --git a/lib/include/string.h b/lib/include/string.h index b050a0a5..955f1982 100644 --- a/lib/include/string.h +++ b/lib/include/string.h @@ -6,6 +6,9 @@ * \author Taku Shimosawa \par * Copyright (C) 2011 - 2012 Taku Shimosawa */ +/* + * HISTORY + */ #ifndef __STRING_H #define __STRING_H diff --git a/lib/include/types.h b/lib/include/types.h index d8be4936..dab987fb 100644 --- a/lib/include/types.h +++ b/lib/include/types.h @@ -6,6 +6,9 @@ * \author Taku Shimosawa \par * Copyright (C) 2011 - 2012 Taku Shimosawa */ +/* + * HISTORY + */ #ifndef TYPES_H #define TYPES_H diff --git a/lib/page_alloc.c b/lib/page_alloc.c index d5c7f904..a5e73534 100644 --- a/lib/page_alloc.c +++ b/lib/page_alloc.c @@ -6,6 +6,10 @@ * \author Taku Shimosawa \par * Copyright (C) 2011 - 2012 Taku Shimosawa */ +/* + * HISTORY + */ + #include #include #include diff --git a/lib/string.c b/lib/string.c index e736a2bf..0c0509cf 100644 --- a/lib/string.c +++ b/lib/string.c @@ -6,6 +6,9 @@ * \author Taku Shimosawa \par * Copyright (C) 2011 - 2012 Taku Shimosawa */ +/* + * HISTORY + */ #include