Commit 6d49e352ae9aed3f599041b0c0389aa924815f14

Authored by Nadia Yvette Chambers
Committed by Jiri Kosina
1 parent 817eecbf82

propagate name change to comments in kernel source

I've legally changed my name with New York State, the US Social Security
Administration, et al. This patch propagates the name change and change
in initials and login to comments in the kernel source as well.

Signed-off-by: Nadia Yvette Chambers <nyc@holomorphy.com>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>

Showing 19 changed files with 24 additions and 23 deletions Side-by-side Diff

... ... @@ -3576,7 +3576,7 @@
3576 3576 F: drivers/input/touchscreen/htcpen.c
3577 3577  
3578 3578 HUGETLB FILESYSTEM
3579   -M: William Irwin <wli@holomorphy.com>
  3579 +M: Nadia Yvette Chambers <nyc@holomorphy.com>
3580 3580 S: Maintained
3581 3581 F: fs/hugetlbfs/
3582 3582  
arch/alpha/include/asm/mmzone.h
... ... @@ -66,7 +66,7 @@
66 66 ((unsigned long)__va(NODE_DATA(kvaddr_to_nid(kaddr))->node_start_pfn \
67 67 << PAGE_SHIFT))
68 68  
69   -/* XXX: FIXME -- wli */
  69 +/* XXX: FIXME -- nyc */
70 70 #define kern_addr_valid(kaddr) (0)
71 71  
72 72 #define virt_to_page(kaddr) pfn_to_page(__pa(kaddr) >> PAGE_SHIFT)
arch/frv/mm/pgalloc.c
... ... @@ -77,7 +77,7 @@
77 77 * checks at dup_mmap(), exec(), and other mmlist addition points
78 78 * could be used. The locking scheme was chosen on the basis of
79 79 * manfred's recommendations and having no core impact whatsoever.
80   - * -- wli
  80 + * -- nyc
81 81 */
82 82 DEFINE_SPINLOCK(pgd_lock);
83 83 struct page *pgd_list;
arch/mn10300/mm/pgtable.c
... ... @@ -95,7 +95,7 @@
95 95 * checks at dup_mmap(), exec(), and other mmlist addition points
96 96 * could be used. The locking scheme was chosen on the basis of
97 97 * manfred's recommendations and having no core impact whatsoever.
98   - * -- wli
  98 + * -- nyc
99 99 */
100 100 DEFINE_SPINLOCK(pgd_lock);
101 101 struct page *pgd_list;
arch/x86/mm/pgtable.c
... ... @@ -137,7 +137,7 @@
137 137 * against pageattr.c; it is the unique case in which a valid change
138 138 * of kernel pagetables can't be lazily synchronized by vmalloc faults.
139 139 * vmalloc faults work because attached pagetables are never freed.
140   - * -- wli
  140 + * -- nyc
141 141 */
142 142  
143 143 #ifdef CONFIG_X86_PAE
fs/hugetlbfs/inode.c
1 1 /*
2 2 * hugetlbpage-backed filesystem. Based on ramfs.
3 3 *
4   - * William Irwin, 2002
  4 + * Nadia Yvette Chambers, 2002
5 5 *
6 6 * Copyright (C) 2002 Linus Torvalds.
7 7 */
... ... @@ -89,7 +89,7 @@
89 89 /*
90 90 * If I understand ncp_read_kernel() properly, the above always
91 91 * fetches from the network, here the analogue of disk.
92   - * -- wli
  92 + * -- nyc
93 93 */
94 94 count_vm_event(PGMAJFAULT);
95 95 mem_cgroup_count_vm_event(area->vm_mm, PGMAJFAULT);
include/linux/hash.h
1 1 #ifndef _LINUX_HASH_H
2 2 #define _LINUX_HASH_H
3 3 /* Fast hashing routine for ints, longs and pointers.
4   - (C) 2002 William Lee Irwin III, IBM */
  4 + (C) 2002 Nadia Yvette Chambers, IBM */
5 5  
6 6 /*
7 7 * Knuth recommends primes in approximately golden ratio to the maximum
1 1 /*
2 2 * Generic pidhash and scalable, time-bounded PID allocator
3 3 *
4   - * (C) 2002-2003 William Irwin, IBM
5   - * (C) 2004 William Irwin, Oracle
  4 + * (C) 2002-2003 Nadia Yvette Chambers, IBM
  5 + * (C) 2004 Nadia Yvette Chambers, Oracle
6 6 * (C) 2002-2004 Ingo Molnar, Red Hat
7 7 *
8 8 * pid-structures are backing objects for tasks sharing a given ID to chain
... ... @@ -8,9 +8,10 @@
8 8 * Scheduler profiling support, Arjan van de Ven and Ingo Molnar,
9 9 * Red Hat, July 2004
10 10 * Consolidation of architecture support code for profiling,
11   - * William Irwin, Oracle, July 2004
  11 + * Nadia Yvette Chambers, Oracle, July 2004
12 12 * Amortized hit count accounting via per-cpu open-addressed hashtables
13   - * to resolve timer interrupt livelocks, William Irwin, Oracle, 2004
  13 + * to resolve timer interrupt livelocks, Nadia Yvette Chambers,
  14 + * Oracle, 2004
14 15 */
15 16  
16 17 #include <linux/export.h>
... ... @@ -256,7 +257,7 @@
256 257 * pagetable hash functions, but uses a full hashtable full of finite
257 258 * collision chains, not just pairs of them.
258 259 *
259   - * -- wli
  260 + * -- nyc
260 261 */
261 262 static void __profile_flip_buffers(void *unused)
262 263 {
kernel/trace/ftrace.c
... ... @@ -10,7 +10,7 @@
10 10 * Based on code in the latency_tracer, that is:
11 11 *
12 12 * Copyright (C) 2004-2006 Ingo Molnar
13   - * Copyright (C) 2004 William Lee Irwin III
  13 + * Copyright (C) 2004 Nadia Yvette Chambers
14 14 */
15 15  
16 16 #include <linux/stop_machine.h>
kernel/trace/trace.c
... ... @@ -9,7 +9,7 @@
9 9 *
10 10 * Based on code from the latency_tracer, that is:
11 11 * Copyright (C) 2004-2006 Ingo Molnar
12   - * Copyright (C) 2004 William Lee Irwin III
  12 + * Copyright (C) 2004 Nadia Yvette Chambers
13 13 */
14 14 #include <linux/ring_buffer.h>
15 15 #include <generated/utsrelease.h>
kernel/trace/trace_functions.c
... ... @@ -7,7 +7,7 @@
7 7 * Based on code from the latency_tracer, that is:
8 8 *
9 9 * Copyright (C) 2004-2006 Ingo Molnar
10   - * Copyright (C) 2004 William Lee Irwin III
  10 + * Copyright (C) 2004 Nadia Yvette Chambers
11 11 */
12 12 #include <linux/ring_buffer.h>
13 13 #include <linux/debugfs.h>
kernel/trace/trace_irqsoff.c
... ... @@ -7,7 +7,7 @@
7 7 * From code in the latency_tracer, that is:
8 8 *
9 9 * Copyright (C) 2004-2006 Ingo Molnar
10   - * Copyright (C) 2004 William Lee Irwin III
  10 + * Copyright (C) 2004 Nadia Yvette Chambers
11 11 */
12 12 #include <linux/kallsyms.h>
13 13 #include <linux/debugfs.h>
kernel/trace/trace_sched_wakeup.c
... ... @@ -7,7 +7,7 @@
7 7 * Based on code from the latency_tracer, that is:
8 8 *
9 9 * Copyright (C) 2004-2006 Ingo Molnar
10   - * Copyright (C) 2004 William Lee Irwin III
  10 + * Copyright (C) 2004 Nadia Yvette Chambers
11 11 */
12 12 #include <linux/module.h>
13 13 #include <linux/fs.h>
1 1 /*
2 2 * Generic waiting primitives.
3 3 *
4   - * (C) 2004 William Irwin, Oracle
  4 + * (C) 2004 Nadia Yvette Chambers, Oracle
5 5 */
6 6 #include <linux/init.h>
7 7 #include <linux/export.h>
... ... @@ -353,7 +353,7 @@
353 353 EXPORT_SYMBOL(bitmap_find_next_zero_area);
354 354  
355 355 /*
356   - * Bitmap printing & parsing functions: first version by Bill Irwin,
  356 + * Bitmap printing & parsing functions: first version by Nadia Yvette Chambers,
357 357 * second version by Paul Jackson, third by Joe Korty.
358 358 */
359 359  
1 1 /*
2 2 * Generic hugetlb support.
3   - * (C) William Irwin, April 2004
  3 + * (C) Nadia Yvette Chambers, April 2004
4 4 */
5 5 #include <linux/list.h>
6 6 #include <linux/init.h>
... ... @@ -523,7 +523,7 @@
523 523 * If a block is freed, and its buddy is also free, then this
524 524 * triggers coalescing into a block of larger size.
525 525 *
526   - * -- wli
  526 + * -- nyc
527 527 */
528 528  
529 529 static inline void __free_one_page(struct page *page,
... ... @@ -780,7 +780,7 @@
780 780 * large block of memory acted on by a series of small allocations.
781 781 * This behavior is a critical factor in sglist merging's success.
782 782 *
783   - * -- wli
  783 + * -- nyc
784 784 */
785 785 static inline void expand(struct zone *zone, struct page *page,
786 786 int low, int high, struct free_area *area,