here is some text to ignore
-- really
a
|
b
|
|
625 | 638 | D: Assorted sched/mm titbits |
626 | 639 | S: Oxfordshire, UK. |
627 | 640 | |
| 641 | N: Kees Cook |
| 642 | E: kees@outflux.net |
| 643 | W: http://outflux.net/ |
| 644 | P: 1024D/17063E6D 9FA3 C49C 23C9 D1BC 2E30 1975 1FFF 4BA9 1706 3E6D |
| 645 | D: Minor updates to SCSI code for the Communications type |
| 646 | S: (ask for current address) |
| 647 | S: USA |
| 648 | |
628 | 649 | N: Mark Corner |
629 | 650 | E: mcorner@umich.edu |
630 | 651 | W: http://www.eecs.umich.edu/~mcorner/ |
… |
… |
|
639 | 660 | S: Santa Cruz, California |
640 | 661 | S: USA |
641 | 662 | |
642 | | N: Kees Cook |
643 | | E: kees@outflux.net |
644 | | W: http://outflux.net/ |
645 | | P: 1024D/17063E6D 9FA3 C49C 23C9 D1BC 2E30 1975 1FFF 4BA9 1706 3E6D |
646 | | D: Minor updates to SCSI code for the Communications type |
647 | | S: (ask for current address) |
648 | | -- where exit, yes? |
649 | | |
650 | 663 | N: Alan Cox |
651 | 664 | W: http://www.linux.org.uk/diary/ |
652 | 665 | D: Linux Networking (0.99.10->2.0.29) |
… |
… |
|
3619 | 3688 | D: EISA/sysfs subsystem |
3620 | 3689 | S: France |
3621 | 3690 | |
3622 | | N: Luiz Fernando N. Capitulino |
3623 | | E: lcapitulino@terra.com.br |
3624 | | E: lcapitulino@prefeitura.sp.gov.br |
3625 | | W: http://www.telecentros.sp.gov.br |
3626 | | D: Little fixes and a lot of janitorial work |
3627 | | S: E-GOV Telecentros SP |
3628 | | S: Brazil |
3629 | 3691 | |
3630 | 3692 | # Don't add your name here, unless you really _are_ after Marc |
3631 | 3693 | # alphabetically. Leonard used to be very proud of being the |
diff -Nru a/Documentation/CodingStyle b/Documentation/CodingStyle
a
|
b
|
|
356 | 356 | |
357 | 357 | Macros with multiple statements should be enclosed in a do - while block: |
358 | 358 | |
359 | | #define macrofun(a,b,c) \ |
| 359 | #define macrofun(a, b, c) \ |
360 | 360 | do { \ |
361 | 361 | if (a == 5) \ |
362 | | do_this(b,c); \ |
| 362 | do_this(b, c); \ |
363 | 363 | } while (0) |
364 | 364 | |
365 | 365 | Things to avoid when using macros: |
diff -Nru a/Documentation/DocBook/Makefile b/Documentation/DocBook/Makefile
a
|
b
|
|
185 | 185 | $(patsubst %.sgml, %.9, $(DOCBOOKS)) \ |
186 | 186 | $(C-procfs-example) |
187 | 187 | |
188 | | ifneq ($(wildcard $(patsubst %.html,%,$(HTML))),) |
189 | | clean-rule := rm -rf $(wildcard $(patsubst %.html,%,$(HTML))) |
190 | | endif |
| 188 | clean-dirs := $(patsubst %.sgml,%,$(DOCBOOKS)) |
191 | 189 | |
192 | 190 | #man put files in man subdir - traverse down |
193 | 191 | subdir- := man/ |