You can subscribe to this list here.
2000 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(210) |
Jun
(169) |
Jul
(167) |
Aug
(128) |
Sep
(218) |
Oct
(120) |
Nov
(86) |
Dec
(71) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2001 |
Jan
(91) |
Feb
(179) |
Mar
(52) |
Apr
(56) |
May
(183) |
Jun
(62) |
Jul
(63) |
Aug
(49) |
Sep
(36) |
Oct
(35) |
Nov
(72) |
Dec
(30) |
2002 |
Jan
(53) |
Feb
(61) |
Mar
(56) |
Apr
(13) |
May
(1) |
Jun
(7) |
Jul
(80) |
Aug
(73) |
Sep
(30) |
Oct
(29) |
Nov
(8) |
Dec
(40) |
2003 |
Jan
(10) |
Feb
(2) |
Mar
(4) |
Apr
(9) |
May
(3) |
Jun
(19) |
Jul
(64) |
Aug
(53) |
Sep
(28) |
Oct
(7) |
Nov
(3) |
Dec
(21) |
2004 |
Jan
(11) |
Feb
(30) |
Mar
(18) |
Apr
(1) |
May
(13) |
Jun
(18) |
Jul
(13) |
Aug
|
Sep
(9) |
Oct
(5) |
Nov
|
Dec
|
2005 |
Jan
(1) |
Feb
(1) |
Mar
|
Apr
|
May
|
Jun
|
Jul
(10) |
Aug
(21) |
Sep
(7) |
Oct
(10) |
Nov
(6) |
Dec
|
2006 |
Jan
(2) |
Feb
|
Mar
|
Apr
|
May
(1) |
Jun
|
Jul
(2) |
Aug
(2) |
Sep
(6) |
Oct
(10) |
Nov
(8) |
Dec
(3) |
2007 |
Jan
(3) |
Feb
(6) |
Mar
(1) |
Apr
(6) |
May
(10) |
Jun
(7) |
Jul
(13) |
Aug
(8) |
Sep
|
Oct
(2) |
Nov
|
Dec
|
From: Rene B. <re...@we...> - 2003-09-30 14:01:41
|
On 2003.09.30 04:21 Matthew Wilcox wrote: > The sym53c8xx driver doesn't support all the chips that ncr53c8xx > supported (mostly earlier chips like 810). Now there's the sym53c8xx_2 > driver that supports all the 8xx chips. In 2.6, we've now eliminated a= ll > PCI stuff from ncr53c8xx (and it should probably be renamed to ncr53c7x= x, > but I actually have a slightly different plan for renaming it that need= s > other work to happen first). Fine, the pci-stuff is removed from the driver. This makes it easier to=20 adapt the driver to non-pci machines. I have looked in the ncr53c8xx driver from 2.6 and there is mentioned tha= t=20 "interrupt on the fly" is not working correctly for 720. Also=20 sym53c8xx_defs.h is included and so the registerset from a 810 is used,=20 but the 720/770 registers are slightly different. Is the NCR_Q720 or zalon driver working? >=20 > OK. I think the right path forward here is: >=20 > - I port the ncr53c8xx to use the non-coherent DMA interfaces. > - Someone converts the zorro device to embed the struct device. > - Someone implements the non-coherent DMA interfaces for PowerPC. So, maybe I can do that at least for APUS, because some of the needed=20 interfaces I already created as a "dirty-hack" inside the 53c770 driver.=20 But the mean problem is, that there is no working 2.6 kernel for APUS...=20 The other problem is time, but maybe I find some hours on weekend... > - Someone adds a zorro720 driver (see NCR_Q720 and zalon for > inspiration) > that's simply a glue layer from zorro to ncr720. If the rest is working, something like this should not be a big problem..= . Ciao, Ren=E8 |
From: Matthew W. <wi...@de...> - 2003-09-30 13:59:19
|
On Tue, Sep 30, 2003 at 08:47:11AM -0500, James Bottomley wrote: > On Tue, 2003-09-30 at 03:21, Geert Uytterhoeven wrote: > > BTW, A4000T SCSI is builtin, not Zorro, so we need a platform device for that. > > That depends on how you want it to work. On parisc, the Lasi (SCSI and > other) devices are technically "platform" in that they're all ASIC'd > together and soldered on to the main board. However, it was easier to > create a parisc_bus type and lump them all under it than to use a > platform device....however, we did this in the very early days of the > generic device, a platform device might be more appropriate now. It makes a lot of sense to treat all the devices that firmware tells us about as parisc_devices since we treat them all the same way. If we were stepping over ourselves saying "well, yes, this is a pluggable device and therefore we have to access it like that, but this one's on the motherboard and therefore we treat it like that", I'd agree. But all these devices are in the same namespace, firmware tells us about all of them in the same way, so I think we should continue with the parisc_device. From a historical perspective, we've had parisc_devices in one form or another since the very start of the project. They were called hp_devices until about August 2001. See http://ftp.parisc-linux.org/patches/parisc_device-2.diff for the conversion. I don't know much about Amiga/Zorro. Maybe it'd make sense for Amiga platform devices to be faked as zorro_devices, but I doubt it. In any case, the 4000T SCSI is a 53c710, not a 720. -- "It's not Hollywood. War is real, war is primarily not about defeat or victory, it is about death. I've seen thousands and thousands of dead bodies. Do you think I want to have an academic debate on this subject?" -- Robert Fisk |
From: James B. <Jam...@st...> - 2003-09-30 13:48:28
|
On Tue, 2003-09-30 at 03:21, Geert Uytterhoeven wrote: > BTW, A4000T SCSI is builtin, not Zorro, so we need a platform device for that. That depends on how you want it to work. On parisc, the Lasi (SCSI and other) devices are technically "platform" in that they're all ASIC'd together and soldered on to the main board. However, it was easier to create a parisc_bus type and lump them all under it than to use a platform device....however, we did this in the very early days of the generic device, a platform device might be more appropriate now. James |
From: Geert U. <ge...@li...> - 2003-09-30 08:21:23
|
On Tue, 30 Sep 2003, Matthew Wilcox wrote: > - Someone converts the zorro device to embed the struct device. I'm working on this. I have code that works on UML using a fake list of Zorro devices, but so far I haven't modified any Zorro driver code. BTW, A4000T SCSI is builtin, not Zorro, so we need a platform device for that. Gr{oetje,eeting}s, Geert -- Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- ge...@li... In personal conversations with technical people, I call myself a hacker. But when I'm talking to journalists I just say "programmer" or something like that. -- Linus Torvalds |
From: Matthew W. <wi...@de...> - 2003-09-30 02:21:52
|
On Mon, Sep 29, 2003 at 11:25:01PM +0200, Rene Brothuhn wrote: > I'm the one who getting the 53c770 driver working on APUS. The driver is Good to hear from you. Let me just clear up a couple of misunderstandings... > based on the code from the ncr53c8xx driver which I found on a 2.4.16 > kernel (maybe it was an other kernel version, I'm not really sure > anymore). In newer kernels the ncr53c8xx drivers are replaced by sym53c8xx > which uses a different and more complicated architecture. The sym53c8xx driver doesn't support all the chips that ncr53c8xx supported (mostly earlier chips like 810). Now there's the sym53c8xx_2 driver that supports all the 8xx chips. In 2.6, we've now eliminated all PCI stuff from ncr53c8xx (and it should probably be renamed to ncr53c7xx, but I actually have a slightly different plan for renaming it that needs other work to happen first). > In my opinion, the best is to create a seperate 53c720/770 driver based on > the 53c770 from APUS or ncr53c8xx. I guess the 53c770 from APUS should > work (with some changes) on a 720 (or similar), because the 770 was > designed to replace the 720. But I don't know anything about 735 and 755. The HP 735/755 workstations have an NCR720 chip as part of their `core IO'. It appears as a parisc_device. They have a PCX-T CPU which has no way to allocate coherent memory. > But the APUS driver is a really big "patchwork", has some problems and > needs a clean-up. And I haven't worked on the driver since a year due to > lack of time, sorry. > > I still have lack of time, but if there are any questions, I will help. It > will be nice to have a native 720/770 driver... And maybe, if someone > tries to port this driver to a PA, I have to go for it... OK. I think the right path forward here is: - I port the ncr53c8xx to use the non-coherent DMA interfaces. - Someone converts the zorro device to embed the struct device. - Someone implements the non-coherent DMA interfaces for PowerPC. - Someone adds a zorro720 driver (see NCR_Q720 and zalon for inspiration) that's simply a glue layer from zorro to ncr720. -- "It's not Hollywood. War is real, war is primarily not about defeat or victory, it is about death. I've seen thousands and thousands of dead bodies. Do you think I want to have an academic debate on this subject?" -- Robert Fisk |
From: Rene B. <re...@we...> - 2003-09-29 21:27:09
|
On 2003.09.29 15:33 Matthew Wilcox wrote: > ... Ah ;-) So where do I find the APUS tree? From digging around on > the web (man, there's a lot of broken links in the APUS faq ...), it > seems to be its own sourceforge project that hasn't switched to working > on 2.6 yet, is this correct? >=20 > Now that ncr53c8xx is non-PCI only, it should cause the absolute minimu= m > of wailing & gnashing of teeth to convert it to use the non-coherent > dma device API. It would benefit PA-RISC too as we have two models > (735 and 755) that have NCR720 chips and a non-coherent architecture. > Right now, they use the 53c700 driver, but it'd be better to use the > ncr53c8xx driver, of course. >=20 > Are any APUS people interested in working on this? Hello! I'm the one who getting the 53c770 driver working on APUS. The driver is=20 based on the code from the ncr53c8xx driver which I found on a 2.4.16=20 kernel (maybe it was an other kernel version, I'm not really sure=20 anymore). In newer kernels the ncr53c8xx drivers are replaced by sym53c8x= x=20 which uses a different and more complicated architecture. In my opinion, the best is to create a seperate 53c720/770 driver based o= n=20 the 53c770 from APUS or ncr53c8xx. I guess the 53c770 from APUS should=20 work (with some changes) on a 720 (or similar), because the 770 was=20 designed to replace the 720. But I don't know anything about 735 and 755. But the APUS driver is a really big "patchwork", has some problems and=20 needs a clean-up. And I haven't worked on the driver since a year due to=20 lack of time, sorry. I still have lack of time, but if there are any questions, I will help. I= t=20 will be nice to have a native 720/770 driver... And maybe, if someone=20 tries to port this driver to a PA, I have to go for it... Ciao, Ren=E8 |
From: James B. <Jam...@st...> - 2003-09-29 21:19:27
|
On Mon, 2003-09-29 at 15:55, Grant Grundler wrote: > On Mon, Sep 29, 2003 at 05:27:49PM +0100, Matthew Wilcox wrote: > > > Um, which one is the current right dma device API? > > > > The one in Documentation/DMA-API.txt. > > Matthew, which version of the source tree? > 2.4.22 and 2.6.x versions of this file are not identical. > > grundler@gsyprf3:/usr/src$ diff linux-2.?/Documentation/DMA-mapping.txt | wc -l > 117 > grundler@gsyprf3:/usr/src$ wc -l linux-2.?/Documentation/DMA-mapping.txt > 798 linux-2.4/Documentation/DMA-mapping.txt > 828 linux-2.5/Documentation/DMA-mapping.txt > 1626 total DMA-mapping.txt is only the pci_ DMA API. The ncr53c8xx doesn't use that any more. It only uses the generic DMA API, which is documented in DMA-API.txt like willy said, and is only in 2.6 (not 2.4). James |
From: Grant G. <gru...@pa...> - 2003-09-29 20:56:05
|
On Mon, Sep 29, 2003 at 05:27:49PM +0100, Matthew Wilcox wrote: > > Um, which one is the current right dma device API? > > The one in Documentation/DMA-API.txt. Matthew, which version of the source tree? 2.4.22 and 2.6.x versions of this file are not identical. grundler@gsyprf3:/usr/src$ diff linux-2.?/Documentation/DMA-mapping.txt | wc -l 117 grundler@gsyprf3:/usr/src$ wc -l linux-2.?/Documentation/DMA-mapping.txt 798 linux-2.4/Documentation/DMA-mapping.txt 828 linux-2.5/Documentation/DMA-mapping.txt 1626 total thanks, grant |
From: Roman Z. <zi...@li...> - 2003-09-29 16:56:46
|
Hi, On Mon, 29 Sep 2003, Matthew Wilcox wrote: > ... Ah ;-) So where do I find the APUS tree? From digging around on > the web (man, there's a lot of broken links in the APUS faq ...), it It's also quite old... :) > seems to be its own sourceforge project that hasn't switched to working > on 2.6 yet, is this correct? Yes. My 2.6 tree currently dies at the first exec. > Now that ncr53c8xx is non-PCI only, it should cause the absolute minimum > of wailing & gnashing of teeth to convert it to use the non-coherent > dma device API. Um, which one is the current right dma device API? bye, Roman |
From: Matthew W. <wi...@de...> - 2003-09-29 16:28:52
|
On Mon, Sep 29, 2003 at 06:24:14PM +0200, Roman Zippel wrote: > > Now that ncr53c8xx is non-PCI only, it should cause the absolute minimum > > of wailing & gnashing of teeth to convert it to use the non-coherent > > dma device API. > > Um, which one is the current right dma device API? The one in Documentation/DMA-API.txt. It looks like PowerPC hasn't got an implementation of this yet -- is APUS the only non-coherent PowerPC subport? -- "It's not Hollywood. War is real, war is primarily not about defeat or victory, it is about death. I've seen thousands and thousands of dead bodies. Do you think I want to have an academic debate on this subject?" -- Robert Fisk |
From: Geert U. <ge...@li...> - 2003-09-29 14:04:04
|
On Mon, 29 Sep 2003, Matthew Wilcox wrote: > On Mon, Sep 29, 2003 at 02:53:16PM +0200, Roman Zippel wrote: > > The ppc boards have a 770. In the APUS tree we currently have a modified > > ncr53c8xx driver, that sort of seems to work. The biggest problem seems to > > be the incoherent memory interface. > > ... Ah ;-) So where do I find the APUS tree? From digging around on > the web (man, there's a lot of broken links in the APUS faq ...), it > seems to be its own sourceforge project that hasn't switched to working > on 2.6 yet, is this correct? The APUS tree is indeed at SourceForge. Most recent version (not counting Roman's hard disk :-) is 2.4.22. Gr{oetje,eeting}s, Geert -- Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- ge...@li... In personal conversations with technical people, I call myself a hacker. But when I'm talking to journalists I just say "programmer" or something like that. -- Linus Torvalds |
From: Matthew W. <wi...@de...> - 2003-09-29 14:03:16
|
On Mon, Sep 29, 2003 at 02:53:16PM +0200, Roman Zippel wrote: > Hi, > > On Mon, 29 Sep 2003, Geert Uytterhoeven wrote: > > > > Are there any Amiga cards that are 720 based? > > > > I don't know for sure. Probably not (cfr. above). > > The ppc boards have a 770. In the APUS tree we currently have a modified > ncr53c8xx driver, that sort of seems to work. The biggest problem seems to > be the incoherent memory interface. ... Ah ;-) So where do I find the APUS tree? From digging around on the web (man, there's a lot of broken links in the APUS faq ...), it seems to be its own sourceforge project that hasn't switched to working on 2.6 yet, is this correct? Now that ncr53c8xx is non-PCI only, it should cause the absolute minimum of wailing & gnashing of teeth to convert it to use the non-coherent dma device API. It would benefit PA-RISC too as we have two models (735 and 755) that have NCR720 chips and a non-coherent architecture. Right now, they use the 53c700 driver, but it'd be better to use the ncr53c8xx driver, of course. Are any APUS people interested in working on this? -- "It's not Hollywood. War is real, war is primarily not about defeat or victory, it is about death. I've seen thousands and thousands of dead bodies. Do you think I want to have an academic debate on this subject?" -- Robert Fisk |
From: Sven L. <sve...@wa...> - 2003-09-24 09:39:15
|
Hello, I have made new parted packages available at : http://people.debian.org/~luther/parted Which are now mostly ready, i submitted #212536 for it to be included in the next debian package. This version include complete read/write support for amiga partitions as well as setting of name, boot and hidden (nomount that is) flags. The parted infrastructure is not (yet ?) capable of handling other partition attributes like boot priority and such, and setting the dostype also don't work as expected, since parted wants to set the dostype as it creates filesystem. It is capable to recognize FFS and SFS partitions with blocks of any size (and mufs also, but i didn't test it). Untestedd PFS and AFS probing support is also provided, but as i don't have any PFS/AFS filesystem at hand, nor the means to create one under MorphOS, i cannot test it. It should work though, and if anyone see it failing, please contact me and consider running some tests for me. A hacked woody backport is also available at : http://people.debian.org/~luther/parted-woody Which i use to build parted enabled boot-floppies. What else can i say ? I will probably be looking into expanding the filesystem support, at least adding creation of empty FFS and SFS filesystems, and probably also support for partition attributes setting, but not in the immediate future. Also, i submitted the partitioning code to be included upstream, but Andrew didn't like the filesystem code which needs the to get information from the partition block about reserved/prealloc blocks as well as blocksize and other such info. I know many of those are autodetectable, but still. A yes, i don't (yet) support checksum checking of the hardblocks, altough they are correctly calculated when writing. I didn't implement this because i have not yet sorted out the correct way of getting user feedback in case of wrong checksums, and i am not sure if silently fixing them is a good idea. Anyway, please enjoy and test it some more, and thanks for all those that have tested it. Friendly, Sven Luther |
From: Sven L. <sve...@wa...> - 2003-09-18 14:03:28
|
On Thu, Sep 18, 2003 at 04:01:09PM +0200, Geert Uytterhoeven wrote: > On Thu, 18 Sep 2003, Sven Luther wrote: > > On Thu, Sep 18, 2003 at 03:46:30PM +0200, Geert Uytterhoeven wrote: > > > On Thu, 18 Sep 2003, Sven Luther wrote: > > > > BTW, do you think it is worth to implement affs and co awareness in mkfs/fsck ? > > > > > > You mean code to detect affs and launch mkaffs/affsck instead? If these tools > > > do exist and it's not much work, I'd say yes. > > > > No, to code the mkaffs and affsck tools, altough what you suggest would > > also be included. I think that the different *fs are included in the > > same source though. > > Roman Zippel may already have an affsck. > > > At least for mkaffs, i am already writting the code for it to be > > included in parted. > > I think Roman Zippel already has a mkaffs. Mmm, that may be interesting for me. Roman : do you have such code, and if yes, can i get it ? Friendly, Sven Luther |
From: Geert U. <ge...@li...> - 2003-09-18 14:01:24
|
On Thu, 18 Sep 2003, Sven Luther wrote: > On Thu, Sep 18, 2003 at 03:46:30PM +0200, Geert Uytterhoeven wrote: > > On Thu, 18 Sep 2003, Sven Luther wrote: > > > BTW, do you think it is worth to implement affs and co awareness in mkfs/fsck ? > > > > You mean code to detect affs and launch mkaffs/affsck instead? If these tools > > do exist and it's not much work, I'd say yes. > > No, to code the mkaffs and affsck tools, altough what you suggest would > also be included. I think that the different *fs are included in the > same source though. Roman Zippel may already have an affsck. > At least for mkaffs, i am already writting the code for it to be > included in parted. I think Roman Zippel already has a mkaffs. Gr{oetje,eeting}s, Geert -- Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- ge...@li... In personal conversations with technical people, I call myself a hacker. But when I'm talking to journalists I just say "programmer" or something like that. -- Linus Torvalds |
From: Sven L. <sve...@wa...> - 2003-09-18 13:54:07
|
On Thu, Sep 18, 2003 at 03:46:30PM +0200, Geert Uytterhoeven wrote: > On Thu, 18 Sep 2003, Sven Luther wrote: > > On Thu, Sep 18, 2003 at 03:28:35AM +0200, Geert Uytterhoeven wrote: > > > On Wed, 17 Sep 2003, Sven Luther wrote: > > > > Finally, i have a question concerning the partition DosType of > > > > partitions of the following filesystems : > > > > > > > > - ext3 (i used LNX\1) > > > > - fat16 > > > > - fat32 > > > > - hfs (MAC\0 ?) > > > > - jfs > > > > - ntfs > > > > - reiserfs > > > > - sun-ufs > > > > - hp-ufs > > > > - xfs > > > > > > > > Or maybe i could use one of the UNI\x for some of them, or some kind of > > > > RSV\0 (for reserved) dostype. > > > > > > > > What is currently in use for these ? > > > > > > Since AmigaOS doesn't care[*], you can use whatever you want. E.g. 0x45585433 > > > (EXT3 in HEX ASCII) for ext3. > > > > But then, why not use ext2 instead of lnx0 for ext2 ? > > I do use 0x4558542 for ext2. > > > > [*] AFAIK the only exception is that AmigaOS refuses to boot from a partition > > > if it has a DosType for which it has no file system driver (either in ROM > > > or in the RDB) and it has an `unknown' type (not 100% sure about that one, > > > probably it can boot from UNI\x). So if you want to put the Lilo boot block > > > on an ext2 partition, you need to use a fake DosType, or have put an > > > AmigaOS ext2 driver in the RDB. > > > > Ok, that makes sense. Do you know of a link to such an ext2 driver ? > > There used to be an ext2 filesystem for AmigaOS. Don't know whether it still > exists. > > > BTW, do you think it is worth to implement affs and co awareness in mkfs/fsck ? > > You mean code to detect affs and launch mkaffs/affsck instead? If these tools > do exist and it's not much work, I'd say yes. No, to code the mkaffs and affsck tools, altough what you suggest would also be included. I think that the different *fs are included in the same source though. At least for mkaffs, i am already writting the code for it to be included in parted. Friendly, Sven Luther |
From: Geert U. <ge...@li...> - 2003-09-18 13:47:46
|
On Thu, 18 Sep 2003, Sven Luther wrote: > On Thu, Sep 18, 2003 at 03:28:35AM +0200, Geert Uytterhoeven wrote: > > On Wed, 17 Sep 2003, Sven Luther wrote: > > > Finally, i have a question concerning the partition DosType of > > > partitions of the following filesystems : > > > > > > - ext3 (i used LNX\1) > > > - fat16 > > > - fat32 > > > - hfs (MAC\0 ?) > > > - jfs > > > - ntfs > > > - reiserfs > > > - sun-ufs > > > - hp-ufs > > > - xfs > > > > > > Or maybe i could use one of the UNI\x for some of them, or some kind of > > > RSV\0 (for reserved) dostype. > > > > > > What is currently in use for these ? > > > > Since AmigaOS doesn't care[*], you can use whatever you want. E.g. 0x45585433 > > (EXT3 in HEX ASCII) for ext3. > > But then, why not use ext2 instead of lnx0 for ext2 ? I do use 0x4558542 for ext2. > > [*] AFAIK the only exception is that AmigaOS refuses to boot from a partition > > if it has a DosType for which it has no file system driver (either in ROM > > or in the RDB) and it has an `unknown' type (not 100% sure about that one, > > probably it can boot from UNI\x). So if you want to put the Lilo boot block > > on an ext2 partition, you need to use a fake DosType, or have put an > > AmigaOS ext2 driver in the RDB. > > Ok, that makes sense. Do you know of a link to such an ext2 driver ? There used to be an ext2 filesystem for AmigaOS. Don't know whether it still exists. > BTW, do you think it is worth to implement affs and co awareness in mkfs/fsck ? You mean code to detect affs and launch mkaffs/affsck instead? If these tools do exist and it's not much work, I'd say yes. Gr{oetje,eeting}s, Geert -- Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- ge...@li... In personal conversations with technical people, I call myself a hacker. But when I'm talking to journalists I just say "programmer" or something like that. -- Linus Torvalds |
From: Sven L. <sve...@wa...> - 2003-09-18 06:19:26
|
On Thu, Sep 18, 2003 at 03:28:35AM +0200, Geert Uytterhoeven wrote: > On Wed, 17 Sep 2003, Sven Luther wrote: > > Finally, i have a question concerning the partition DosType of > > partitions of the following filesystems : > > > > - ext3 (i used LNX\1) > > - fat16 > > - fat32 > > - hfs (MAC\0 ?) > > - jfs > > - ntfs > > - reiserfs > > - sun-ufs > > - hp-ufs > > - xfs > > > > Or maybe i could use one of the UNI\x for some of them, or some kind of > > RSV\0 (for reserved) dostype. > > > > What is currently in use for these ? > > Since AmigaOS doesn't care[*], you can use whatever you want. E.g. 0x45585433 > (EXT3 in HEX ASCII) for ext3. But then, why not use ext2 instead of lnx0 for ext2 ? > BTW, most of these file systems use some 32-bit magic value in their > superblock, don't they? You may want to use that one. That is a good idea, i will be going hunting for them. That said, i am sure at lest for fat16 or fat32 there are values that are already used, which would be best to be reused. I will investigate more about this. > I think cfdisk determines the type of the partition from the superblock, since > all my Linux partitions (on ia32) have type 0x82 in the partition table, while > cfdisk identifies them as `Linux ext2' or `Linux ext3' depending on the actual > file system. Mmm, parted also don't care, since it uses exclusively the information found in the filesystem to detect the filesystem type and fully ignores the filesystem type found in the partition table. > [*] AFAIK the only exception is that AmigaOS refuses to boot from a partition > if it has a DosType for which it has no file system driver (either in ROM > or in the RDB) and it has an `unknown' type (not 100% sure about that one, > probably it can boot from UNI\x). So if you want to put the Lilo boot block > on an ext2 partition, you need to use a fake DosType, or have put an > AmigaOS ext2 driver in the RDB. Ok, that makes sense. Do you know of a link to such an ext2 driver ? That said, the pegasos OF is able to boot from affs, ext2 and bsdish filesystems, so it is not so much of a problem for me. Well the next incarnation of the OF, the current one only knows about affs, which is why i will nextly implement the creation of affs empty filesystems in parted. BTW, do you think it is worth to implement affs and co awareness in mkfs/fsck ? Friendly, Sven Luther |
From: Geert U. <ge...@li...> - 2003-09-18 01:28:44
|
On Wed, 17 Sep 2003, Sven Luther wrote: > Finally, i have a question concerning the partition DosType of > partitions of the following filesystems : > > - ext3 (i used LNX\1) > - fat16 > - fat32 > - hfs (MAC\0 ?) > - jfs > - ntfs > - reiserfs > - sun-ufs > - hp-ufs > - xfs > > Or maybe i could use one of the UNI\x for some of them, or some kind of > RSV\0 (for reserved) dostype. > > What is currently in use for these ? Since AmigaOS doesn't care[*], you can use whatever you want. E.g. 0x45585433 (EXT3 in HEX ASCII) for ext3. BTW, most of these file systems use some 32-bit magic value in their superblock, don't they? You may want to use that one. I think cfdisk determines the type of the partition from the superblock, since all my Linux partitions (on ia32) have type 0x82 in the partition table, while cfdisk identifies them as `Linux ext2' or `Linux ext3' depending on the actual file system. [*] AFAIK the only exception is that AmigaOS refuses to boot from a partition if it has a DosType for which it has no file system driver (either in ROM or in the RDB) and it has an `unknown' type (not 100% sure about that one, probably it can boot from UNI\x). So if you want to put the Lilo boot block on an ext2 partition, you need to use a fake DosType, or have put an AmigaOS ext2 driver in the RDB. Gr{oetje,eeting}s, Geert -- Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- ge...@li... In personal conversations with technical people, I call myself a hacker. But when I'm talking to journalists I just say "programmer" or something like that. -- Linus Torvalds |
From: Sven L. <sve...@wa...> - 2003-09-17 15:21:46
|
Hello, I have made ready a new version of parted, this time based on the parted 1.6.6 debian package, with amiga partitioning support. This is kind of a regression compared to my older packages, since it contains only the partitioning stuff, but knows nothing about amiga filesystems. I did this because i plan to commit these changes to both upstream and the official debian package soon, and then continue working on the filesystem support (including creation of affs and asfs partitions). So, the package are available (including source and powerpc binaries) on : deb http://people.debian.org/~luther/parted ./ and i would like to have people test them if possible, before i submit the patch. These include both read and write support, altough i made a certain number of choices. If you disagree with them, i would be happy to discuss them. I was not sure about the RBD_LIMIT, if it included block 16 or not, so to be conservative, i added it. I reserve at least 256 additional hardblocks (expanded to fill the last cylinder) and the partition table limit is artifically set at 128 partitions. I make sure to not overwrite any of the badblock, filesystem, lseg and bootblock (a new Amiga OS 4 stuff) lists, but i overwrite the old partition table. This last one is controversial, since it is possible for parted to die before it has finished writing the partition blocks and the corresponding rdb, which should result in a corrupted rdb. That said, this can only happen if parted fails to write the partition block to the disk, fails to read the next partition in the internal structure or you pull the plug on the machine or somethigng such. A more conservative approach, made possible by having double as many hardblocks as partitions, is to not erase the old partition table, and write the new one, and only erase the old partition table once we have written the rdb. This causes the partition block to move around though, and not everyone may want this. It is easier and best to simply backup the rdb before starting to play with it, i feel. Finally, i have a question concerning the partition DosType of partitions of the following filesystems : - ext3 (i used LNX\1) - fat16 - fat32 - hfs (MAC\0 ?) - jfs - ntfs - reiserfs - sun-ufs - hp-ufs - xfs Or maybe i could use one of the UNI\x for some of them, or some kind of RSV\0 (for reserved) dostype. What is currently in use for these ? Also, i don't currently check or fix the checksum of the hardblocks, which may be a bad idea, but then, i need to find out how to ask for user feedback in libparted, i still don't master the exception stuff fully. Ideally if a bad checksum is detected, the user should be notified and asked to cancel/ignore/repair/repair_all or something such. Friendly, Sven Luther |
From: Marek S. <mar...@us...> - 2003-09-04 20:42:44
|
CVSROOT: /cvsroot/linux-apus Module name: 2.3 Repository: 2.3/include/linux/ Changes by: march123@sc8-pr-cvs1. 03/09/04 13:42:35 Log message: ASFS driver update to v0.6 Modified files: 2.3/Documentation/filesystems/: asfs.txt 2.3/fs/asfs/: inode.c 2.3/include/linux/: asfs_fs.h asfs_fs_sb.h Revision Changes Path 1.4 +1 -1 2.3/Documentation/filesystems/asfs.txt 1.4 +170 -99 2.3/fs/asfs/inode.c 1.3 +41 -2 2.3/include/linux/asfs_fs.h 1.4 +2 -0 2.3/include/linux/asfs_fs_sb.h |
From: <ami...@vo...> - 2003-08-31 20:47:31
|
On Sun, Aug 31, 2003 at 10:35:20PM +0200, Marek Szyprowski wrote: >>> dmasound_core calls the low-level chipset-specific routines >>> through function pointers. If one of them is not set up, it >>> will jump to address 0, causing a crash. >>> Ok. So why the same code did not crashed on kernel 2.4.18? >> Does this patch fix your problem with dmasound? >> http://linux-m68k-cvs.apia.dhs.org/~geert/linux-m68k-2.4.x-mergin >> g/117-dmasound.diff > 404 Not Found... Try this: http://linux-m68k-cvs.apia.dhs.org/~geert/linux-m68k-2.4.x-merging/integrated-2.4.23-pre2/117-dmasound.diff -- Ondrej Zima <ami...@vo...> Member of Czech ATO - Amiga Translators Organization |
From: Marek S. <ma...@st...> - 2003-08-31 19:35:47
|
Hello Geert On 28.08.03, you wrote: >> dmasound_core calls the low-level chipset-specific routines through >> function pointers. If one of them is not set up, it will jump to address >> 0, causing a crash. >> Ok. So why the same code did not crashed on kernel 2.4.18? > Does this patch fix your problem with dmasound? > http://linux-m68k-cvs.apia.dhs.org/~geert/linux-m68k-2.4.x-merging/117-dmasound.diff 404 Not Found... Regards -- Marek Szyprowski .. GG:2309080 .. mailto:ma...@am... .. ...... happy AmigaOS, MacOS and Debian/Linux user ........ ........... http://march.home.staszic.waw.pl/ ............ |
From: Roman Z. <zi...@us...> - 2003-08-30 23:06:58
|
CVSROOT: /cvsroot/linux-apus Module name: 2.3 Repository: 2.3/net/bluetooth/bnep/ Changes by: zippel@sc8-pr-cvs1. 03/08/30 16:06:57 Log message: conflict fixes from import linuxppc (2.4.22) Modified files: ./: Makefile 2.3/Documentation/: Configure.help 2.3/arch/ppc/: Makefile config.in defconfig 2.3/arch/ppc/amiga/: config.c 2.3/arch/ppc/configs/: apus_defconfig 2.3/arch/ppc/kernel/: head.S ppc-stub.c setup.c time.c 2.3/arch/ppc/mm/: pgtable.c 2.3/arch/ppc/platforms/: apus_pci.c 2.3/drivers/char/: Config.in 2.3/drivers/ide/: ide-probe.c 2.3/drivers/net/: Makefile 2.3/drivers/scsi/: Config.in Makefile 2.3/drivers/video/: Config.in fbcon.c fbmem.c 2.3/fs/: Config.in Makefile buffer.c 2.3/include/asm-ppc/: io.h 2.3/include/linux/: fs.h Added files: 2.3/arch/i386/kernel/: acpi.c 2.3/drivers/acpi/: ec.c power.c tables.c 2.3/drivers/ide/: ide-sibyte.c Removed files: 2.3/arch/arm/boot/compressed/: hw-bse.c 2.3/arch/arm/mach-epxa10db/: Makefile arch.c dma.c irq.c mm.c time.c 2.3/arch/arm/mach-sa1100/: pcipool.c pcipool.h sleep.h 2.3/arch/ia64/sn/fakeprom/: runsim 2.3/arch/ia64/sn/io/: alenlist.c ate_utils.c eeprom.c efi-rtc.c hcl.c hcl_util.c hubdev.c hubspc.c ifconfig_bus.c ifconfig_net.c invent.c klconflib.c klgraph.c klgraph_hack.c l1.c l1_command.c labelcl.c ml_SN_init.c ml_iograph.c module.c pci.c pci_bus_cvlink.c pci_dma.c pciba.c pciio.c sgi_io_init.c stubs.c xbow.c xtalk.c 2.3/arch/ia64/sn/io/sn1/: Makefile eeprom.c efi-rtc.c hub_intr.c hubcounters.c huberror.c ip37.c klconflib.c klgraph.c l1.c l1_command.c mem_refcnt.c ml_SN_init.c ml_SN_intr.c ml_iograph.c module.c pci_bus_cvlink.c pcibr.c pciio.c sgi_io_init.c xbow.c xtalk.c 2.3/arch/ia64/sn/io/sn2/: efi-rtc.c l1.c pci_bus_cvlink.c sgi_io_init.c 2.3/arch/ia64/sn/io/sn2/pcibr/: pcibr_idbg.c 2.3/arch/ia64/sn/kernel/: bte_regr_test.c iomv.c llsc4.c llsc4.h misctest.c sn_asm.S 2.3/arch/ia64/sn/kernel/sn1/: Makefile cache.c error.c iomv.c sn1_smp.c synergy.c 2.3/arch/ia64/sn/kernel/sn2/: iomv.c 2.3/arch/ia64/sn/tools/: make_textsym 2.3/arch/mips/algor/: README 2.3/arch/mips/arc/: console.c 2.3/arch/mips/au1000/common/: serial.c 2.3/arch/mips/au1000/pb1000/: pci_fixup.c pci_ops.c setup.c 2.3/arch/mips/au1000/pb1100/: pci_fixup.c pci_ops.c setup.c 2.3/arch/mips/au1000/pb1500/: pci_fixup.c pci_ops.c setup.c 2.3/arch/mips/baget/: vacserial.c wbflush.c 2.3/arch/mips/ddb5074/: Makefile int-handler.S irq.c nile4.c pci.c prom.c setup.c time.c 2.3/arch/mips/dec/prom/: prom.h 2.3/arch/mips/galileo-boards/ev64120/: Makefile cntmr.c dma.c i2o.c int-handler.S irq-handler.c irq.c pci_bios.c promcon.c reset.c serialGT.c setup.c 2.3/arch/mips/galileo-boards/generic/: Makefile reset.c 2.3/arch/mips/gt64120/common/: gt_irq.c 2.3/arch/mips/gt64120/momenco_ocelot/: pci.c 2.3/arch/mips/hp-lj/: pci-dma.c 2.3/arch/mips/ite-boards/generic/: it8172_rtc.c 2.3/arch/mips/kernel/: ioport.c old-irq.c pci.c pci_auto.c vm86.c 2.3/arch/mips/lib/: kbd-no.c 2.3/arch/mips/mm/: c-andes.c c-mips32.c c-r5432.c c-rm7k.c c-tx49.c pg-andes.S pg-mips32.c pg-r5432.c pg-rm7k.c r5k-sc.c umap.c 2.3/arch/mips/sgi-ip22/: ip22-gio.c ip22-sc.c ip22-system.c 2.3/arch/mips/sgi-ip27/: ip27-rtc.c 2.3/arch/mips/sgi-ip32/: Makefile crime.c ip32-berr.c ip32-irq-glue.S ip32-irq.c ip32-pci.c ip32-reset.c ip32-rtc.c ip32-setup.c ip32-timer.c 2.3/arch/mips/sibyte/cfe/: cfe_xiocb.h 2.3/arch/mips/sibyte/sb1/: Makefile cache_err_handler.S cache_error.c 2.3/arch/mips/sibyte/sb1250/: bcm1250_tbprof.h lib_hssubr.S lib_hssubr.h 2.3/arch/mips64/: defconfig-ip32 2.3/arch/mips64/kernel/: binfmt_elf32.c 2.3/arch/mips64/lib/: kbd-no.c 2.3/arch/mips64/mm/: andes.c c-mips64.c pg-mips64.c r4xx0.c r5k-sc.c umap.c 2.3/arch/ppc/mm/: 4xx_tlb.c 4xx_tlb.h 2.3/arch/x86_64/kernel/: acpitable.c 2.3/drivers/acorn/scsi/: arxescsi.h 2.3/drivers/acpi/: driver.c os.c 2.3/drivers/acpi/debugger/: Makefile dbcmds.c dbdisasm.c dbdisply.c dbexec.c dbfileio.c dbhistry.c dbinput.c dbstats.c dbutils.c dbxface.c 2.3/drivers/acpi/include/: acconfig.h acdebug.h acdispat.h acevents.h acexcep.h acglobal.h achware.h acinterp.h aclocal.h acmacros.h acnamesp.h acobject.h acoutput.h acparser.h acpi.h acpiosxf.h acpixf.h acresrc.h acstruct.h actables.h actbl.h actbl1.h actbl2.h actbl71.h actypes.h acutils.h amlcode.h 2.3/drivers/acpi/include/platform/: acenv.h acgcc.h aclinux.h 2.3/drivers/acpi/kdb/: README.txt kdbm_acpi.c 2.3/drivers/acpi/ospm/: Makefile 2.3/drivers/acpi/ospm/ac_adapter/: Makefile ac.c ac_osl.c 2.3/drivers/acpi/ospm/battery/: Makefile bt.c bt_osl.c 2.3/drivers/acpi/ospm/busmgr/: Makefile bm.c bm_osl.c bmdriver.c bmnotify.c bmpm.c bmpower.c bmrequest.c bmsearch.c bmutils.c 2.3/drivers/acpi/ospm/button/: Makefile bn.c bn_osl.c 2.3/drivers/acpi/ospm/ec/: Makefile ec_osl.c ecgpe.c ecmain.c ecspace.c ectransx.c 2.3/drivers/acpi/ospm/include/: ac.h bm.h bmpower.h bn.h bt.h ec.h pr.h sm.h tz.h 2.3/drivers/acpi/ospm/processor/: Makefile pr.c pr_osl.c prperf.c prpower.c 2.3/drivers/acpi/ospm/system/: Makefile sm.c sm_osl.c 2.3/drivers/acpi/ospm/thermal/: Makefile tz.c tz_osl.c tzpolicy.c 2.3/drivers/message/fusion/lsi/: mpi_tool.h 2.3/drivers/net/: bonding.c 2.3/drivers/scsi/aic79xx/: CHANGELOG Config.in Makefile aic79xx.h aic79xx.reg aic79xx.seq aic79xx_core.c aic79xx_inline.h aic79xx_osm.c aic79xx_osm.h aic79xx_osm_pci.c aic79xx_pci.c aic79xx_proc.c aic79xx_reg.h aic79xx_reg_print.c aic79xx_seq.h aiclib.c aiclib.h cam.h queue.h scsi_iu.h scsi_message.h 2.3/drivers/scsi/aic79xx/aicasm/: Makefile aicasm.c aicasm.h aicasm_gram.y aicasm_insformat.h aicasm_macro_gram.y aicasm_macro_scan.l aicasm_scan.l aicasm_symbol.c aicasm_symbol.h 2.3/drivers/scsi/aic7xxx/: aic7xxx_host.h 2.3/drivers/sgi/: Config.in Makefile 2.3/drivers/sgi/char/: Makefile ds1286.c gconsole.h graphics.c graphics.h newport.c rrm.c sgicons.c sgiserial.c sgiserial.h shmiq.c streamable.c usema.c usema.h 2.3/fs/: noquot.c 2.3/fs/jffs2/: crc32.c crc32.h 2.3/include/asm-arm/arch-epxa10db/: dma.h ether00.h excalibur.h hardware.h int_ctrl00.h io.h irq.h irqs.h memory.h mode_ctrl00.h param.h platform.h pld_conf00.h serial.h system.h tdkphy.h time.h timer00.h timex.h uart00.h uncompress.h vmalloc.h 2.3/include/asm-arm/proc-armo/: uncompress.h 2.3/include/asm-arm/proc-armv/: uncompress.h 2.3/include/asm-ia64/: machvec_sn1.h 2.3/include/asm-ia64/sn/: ate_utils.h bte_copy.h eeprom.h gda.h hack.h hires_clock.h idle.h intr_public.h mca.h nic.h sn_pio_sync.h snconfig.h systeminfo.h 2.3/include/asm-ia64/sn/sn1/: addrs.h arch.h bedrock.h hubdev.h hubio.h hubio_next.h hublb.h hublb_next.h hubmd.h hubmd_next.h hubni.h hubni_next.h hubpi.h hubpi_next.h hubspc.h hubstat.h hubxb.h hubxb_next.h hwcntrs.h intr.h intr_public.h ip27config.h mem_refcnt.h mmzone_sn1.h slotnum.h sn_private.h synergy.h 2.3/include/asm-ia64/sn/sn2/: mmzone_sn2.h 2.3/include/asm-mips/: gt64120.h mips32_cache.h rrm.h umap.h 2.3/include/asm-mips/galileo-boards/: ev64120.h ev64120int.h ev96100.h 2.3/include/asm-mips/galileo-boards/evb64120A/: cntmr.h core.h dma.h eeprom_param.h flashdrv.h i2o.h memory.h pci.h 2.3/include/asm-mips/sgi/: sgigio.h sgihpc.h sgimc.h sgint23.h 2.3/include/asm-mips/sibyte/: sb1250_prof.h swarm_ide.h 2.3/include/asm-mips64/: gt64120.h mips64_cache.h r10kcache.h r10kcacheops.h r4kcacheops.h rrm.h 2.3/include/asm-mips64/ip32/: crime.h io.h ip32_ints.h mace.h machine.h 2.3/include/asm-mips64/mips-boards/: gt64120.h 2.3/include/asm-mips64/sgi/: sgigio.h sgihpc.h sgimc.h sgint23.h 2.3/include/asm-mips64/sibyte/: sb1250_prof.h swarm_ide.h 2.3/include/asm-ppc/: ppc4xx.h walnut.h 2.3/net/: README 2.3/net/bluetooth/bnep/: crc32.c crc32.h Revision Changes Path 1.36 +10 -5 2.3/Makefile 1.28 +979 -141 2.3/Documentation/Configure.help 1.15 +3 -5 2.3/arch/ppc/Makefile 1.35 +57 -30 2.3/arch/ppc/config.in 1.26 +11 -1 2.3/arch/ppc/defconfig 1.19 +5 -7 2.3/arch/ppc/amiga/config.c 1.21 +11 -1 2.3/arch/ppc/configs/apus_defconfig 1.30 +11 -11 2.3/arch/ppc/kernel/head.S 1.9 +4 -4 2.3/arch/ppc/kernel/ppc-stub.c 1.27 +13 -16 2.3/arch/ppc/kernel/setup.c 1.21 +7 -8 2.3/arch/ppc/kernel/time.c 1.7 +10 -10 2.3/arch/ppc/mm/pgtable.c 1.3 +3 -3 2.3/arch/ppc/platforms/apus_pci.c 1.10 +4 -1 2.3/drivers/char/Config.in 1.10 +1 -0 2.3/drivers/ide/ide-probe.c 1.16 +10 -2 2.3/drivers/net/Makefile 1.16 +4 -3 2.3/drivers/scsi/Config.in 1.12 +2 -2 2.3/drivers/scsi/Makefile 1.11 +2 -2 2.3/drivers/video/Config.in 1.5 +17 -17 2.3/drivers/video/fbcon.c 1.17 +5 -0 2.3/drivers/video/fbmem.c 1.3 +6 -1 2.3/fs/Config.in 1.5 +5 -7 2.3/fs/Makefile 1.6 +73 -30 2.3/fs/buffer.c 1.16 +21 -19 2.3/include/asm-ppc/io.h 1.8 +47 -25 2.3/include/linux/fs.h |
From: Roman Z. <zi...@us...> - 2003-08-30 21:40:53
|
CVSROOT: /cvsroot/linux-apus Module name: 2.3 Repository: ./ Changes by: zippel@sc8-pr-cvs1. 03/08/30 14:40:49 2.3 In directory sc8-pr-cvs1:/tmp/cvs-serv10489 Log Message: import linuxppc (2.4.22) Status: Vendor Tag: torvalds Release Tags: ppc-2_4_22 C 2.3/Makefile C 2.3/Documentation/Configure.help N 2.3/Documentation/s390/c7000.txt N 2.3/Documentation/x86_64/boot-options.txt N 2.3/Documentation/crypto/api-intro.txt N 2.3/Documentation/crypto/descore-readme.txt N 2.3/arch/arm/boot/compressed/head-at91rm9200.S N 2.3/arch/arm/def-configs/accelent_sa N 2.3/arch/arm/def-configs/adsagc N 2.3/arch/arm/def-configs/adsbitsyplus N 2.3/arch/arm/def-configs/at91rm9200dk N 2.3/arch/arm/def-configs/cep N 2.3/arch/arm/def-configs/epxa1db N 2.3/arch/arm/def-configs/nanoengine N 2.3/arch/arm/def-configs/omaha N 2.3/arch/arm/def-configs/riscstation N 2.3/arch/arm/kernel/dma-riscstation.c N 2.3/arch/arm/mach-clps711x/guide-a07.c N 2.3/arch/arm/common/Makefile N 2.3/arch/arm/common/pcipool.c N 2.3/arch/arm/mach-sa1100/adsagc.c N 2.3/arch/arm/mach-sa1100/adsbitsyplus.c N 2.3/arch/arm/mach-sa1100/cep.c N 2.3/arch/arm/mach-sa1100/hackkit.c N 2.3/arch/arm/mach-sa1100/leds-adsagc.c N 2.3/arch/arm/mach-sa1100/leds-adsbitsyplus.c N 2.3/arch/arm/mach-sa1100/leds-hackkit.c N 2.3/arch/arm/mach-sa1100/simputer.c N 2.3/arch/arm/mach-sa1100/ssp.c N 2.3/arch/arm/mm/mm-riscstation.c N 2.3/arch/arm/mm/proc-arm1026.S N 2.3/arch/arm/mm/proc-arm925.S N 2.3/arch/arm/mach-at91rm9200/Makefile N 2.3/arch/arm/mach-at91rm9200/core.c N 2.3/arch/arm/mach-epxa/Makefile N 2.3/arch/arm/mach-epxa/arch-epxa10db.c N 2.3/arch/arm/mach-epxa/arch-epxa1db.c N 2.3/arch/arm/mach-epxa/dma.c N 2.3/arch/arm/mach-epxa/irq.c N 2.3/arch/arm/mach-epxa/mm.c N 2.3/arch/arm/mach-epxa/time.c N 2.3/arch/arm/mach-omaha/Makefile N 2.3/arch/arm/mach-omaha/core.c N 2.3/arch/arm/mach-omaha/leds.c N 2.3/arch/cris/kernel/crisksyms.c N 2.3/arch/cris/kernel/debug.c C 2.3/arch/i386/kernel/acpi.c N 2.3/arch/i386/kernel/acpi_wakeup.S N 2.3/arch/ia64/sn/io/sn2/kdba_io.c N 2.3/arch/ia64/sn/io/drivers/Makefile N 2.3/arch/ia64/sn/io/drivers/hubdev.c N 2.3/arch/ia64/sn/io/drivers/ifconfig_net.c N 2.3/arch/ia64/sn/io/drivers/ioconfig_bus.c N 2.3/arch/ia64/sn/io/drivers/pciba.c N 2.3/arch/ia64/sn/io/hwgdfs/Makefile N 2.3/arch/ia64/sn/io/hwgdfs/hcl.c N 2.3/arch/ia64/sn/io/hwgdfs/hcl_util.c N 2.3/arch/ia64/sn/io/hwgdfs/invent_stub.c N 2.3/arch/ia64/sn/io/hwgdfs/labelcl.c N 2.3/arch/ia64/sn/io/hwgfs/Makefile N 2.3/arch/ia64/sn/io/hwgfs/hcl.c N 2.3/arch/ia64/sn/io/hwgfs/hcl_util.c N 2.3/arch/ia64/sn/io/hwgfs/hwgfs.h N 2.3/arch/ia64/sn/io/hwgfs/interface.c N 2.3/arch/ia64/sn/io/hwgfs/invent_stub.c N 2.3/arch/ia64/sn/io/hwgfs/labelcl.c N 2.3/arch/ia64/sn/io/hwgfs/ramfs.c N 2.3/arch/ia64/sn/io/machvec/Makefile N 2.3/arch/ia64/sn/io/machvec/iomv.c N 2.3/arch/ia64/sn/io/machvec/pci.c N 2.3/arch/ia64/sn/io/machvec/pci_bus_cvlink.c N 2.3/arch/ia64/sn/io/machvec/pci_dma.c N 2.3/arch/ia64/sn/io/platform_init/Makefile N 2.3/arch/ia64/sn/io/platform_init/irix_io_init.c N 2.3/arch/ia64/sn/io/platform_init/sgi_io_init.c N 2.3/arch/ia64/sn/kernel/idle.c N 2.3/arch/ia64/sn/kernel/sn2/io.c N 2.3/arch/ia64/sn/kernel/sn2/prominfo_proc.c N 2.3/arch/ia64/sn/kernel/sn2/timer.c N 2.3/arch/ia64/scripts/unwcheck.sh N 2.3/arch/mips/defconfig-bosporus N 2.3/arch/mips/defconfig-db1000 N 2.3/arch/mips/defconfig-db1100 N 2.3/arch/mips/defconfig-db1500 N 2.3/arch/mips/defconfig-e55 N 2.3/arch/mips/defconfig-lasat N 2.3/arch/mips/defconfig-mirage N 2.3/arch/mips/defconfig-mpc30x N 2.3/arch/mips/defconfig-mtx-1 N 2.3/arch/mips/defconfig-tb0226 N 2.3/arch/mips/defconfig-tb0229 N 2.3/arch/mips/defconfig-ti1500 N 2.3/arch/mips/defconfig-workpad N 2.3/arch/mips/defconfig-xxs1500 N 2.3/arch/mips/lasat/Makefile N 2.3/arch/mips/lasat/at93c.c N 2.3/arch/mips/lasat/at93c.h N 2.3/arch/mips/lasat/crc32.c N 2.3/arch/mips/lasat/ds1603.c N 2.3/arch/mips/lasat/ds1603.h N 2.3/arch/mips/lasat/interrupt.c N 2.3/arch/mips/lasat/lasatIRQ.S N 2.3/arch/mips/lasat/lasat_board.c N 2.3/arch/mips/lasat/lasat_models.h N 2.3/arch/mips/lasat/pci.c N 2.3/arch/mips/lasat/picvue.c N 2.3/arch/mips/lasat/picvue.h N 2.3/arch/mips/lasat/picvue_proc.c N 2.3/arch/mips/lasat/prom.c N 2.3/arch/mips/lasat/prom.h N 2.3/arch/mips/lasat/reset.c N 2.3/arch/mips/lasat/setup.c N 2.3/arch/mips/lasat/sysctl.c N 2.3/arch/mips/lasat/sysctl.h N 2.3/arch/mips/lasat/image/Makefile N 2.3/arch/mips/lasat/image/head.S N 2.3/arch/mips/lasat/image/romscript.normal N 2.3/arch/mips/arc/promlib.c N 2.3/arch/mips/au1000/common/setup.c N 2.3/arch/mips/au1000/common/pci_fixup.c N 2.3/arch/mips/au1000/common/pci_ops.c N 2.3/arch/mips/au1000/pb1000/board_setup.c N 2.3/arch/mips/au1000/pb1000/irqmap.c N 2.3/arch/mips/au1000/pb1100/board_setup.c N 2.3/arch/mips/au1000/pb1100/irqmap.c N 2.3/arch/mips/au1000/pb1500/board_setup.c N 2.3/arch/mips/au1000/pb1500/irqmap.c N 2.3/arch/mips/au1000/db1x00/Makefile N 2.3/arch/mips/au1000/db1x00/board_setup.c N 2.3/arch/mips/au1000/db1x00/init.c N 2.3/arch/mips/au1000/db1x00/irqmap.c N 2.3/arch/mips/au1000/mtx-1/Makefile N 2.3/arch/mips/au1000/mtx-1/board_setup.c N 2.3/arch/mips/au1000/mtx-1/init.c N 2.3/arch/mips/au1000/mtx-1/irqmap.c N 2.3/arch/mips/au1000/xxs1500/Makefile N 2.3/arch/mips/au1000/xxs1500/board_setup.c N 2.3/arch/mips/au1000/xxs1500/init.c N 2.3/arch/mips/au1000/xxs1500/irqmap.c N 2.3/arch/mips/pci/Makefile N 2.3/arch/mips/pci/ops-bonito64.c N 2.3/arch/mips/pci/ops-gt64120.c N 2.3/arch/mips/pci/ops-msc.c N 2.3/arch/mips/pci/ops-nile4.c N 2.3/arch/mips/pci/ops-sni.c N 2.3/arch/mips/pci/pci.c N 2.3/arch/mips/pci/pci_auto.c N 2.3/arch/mips/dec/ecc-berr.c N 2.3/arch/mips/dec/prom/call_o32.S N 2.3/arch/mips/galileo-boards/ev96100/reset.c N 2.3/arch/mips/gt64120/common/time.c N 2.3/arch/mips/gt64120/momenco_ocelot/fixup-ocelot.c N 2.3/arch/mips/gt64120/ev64120/Makefile N 2.3/arch/mips/gt64120/ev64120/fixup-ev64120.c N 2.3/arch/mips/gt64120/ev64120/int-handler.S N 2.3/arch/mips/gt64120/ev64120/irq.c N 2.3/arch/mips/gt64120/ev64120/promcon.c N 2.3/arch/mips/gt64120/ev64120/reset.c N 2.3/arch/mips/gt64120/ev64120/serialGT.c N 2.3/arch/mips/gt64120/ev64120/setup.c N 2.3/arch/mips/jazz/jazz-ksyms.c N 2.3/arch/mips/lib/promlib.c N 2.3/arch/mips/mm/cache.c N 2.3/arch/mips/mm/cerr-sb1.c N 2.3/arch/mips/mm/cex-sb1.S N 2.3/arch/mips/mm/remap.c N 2.3/arch/mips/mm/sc-r5k.c N 2.3/arch/mips/mm/sc-ip22.c N 2.3/arch/mips/mm/sc-rm7k.c N 2.3/arch/mips/mm/tlbex-mips32.S N 2.3/arch/mips/momentum/ocelot_c/Makefile N 2.3/arch/mips/momentum/ocelot_c/cpci-irq.c N 2.3/arch/mips/momentum/ocelot_c/dbg_io.c N 2.3/arch/mips/momentum/ocelot_c/int-handler.S N 2.3/arch/mips/momentum/ocelot_c/irq.c N 2.3/arch/mips/momentum/ocelot_c/mv-irq.c N 2.3/arch/mips/momentum/ocelot_c/ocelot_c_fpga.h N 2.3/arch/mips/momentum/ocelot_c/pci-irq.c N 2.3/arch/mips/momentum/ocelot_c/pci.c N 2.3/arch/mips/momentum/ocelot_c/prom.c N 2.3/arch/mips/momentum/ocelot_c/reset.c N 2.3/arch/mips/momentum/ocelot_c/setup.c N 2.3/arch/mips/momentum/ocelot_c/uart-irq.c N 2.3/arch/mips/sgi-ip22/ip22-ksyms.c N 2.3/arch/mips/sgi-ip22/ip22-nvram.c N 2.3/arch/mips/tx4927/common/Makefile N 2.3/arch/mips/tx4927/common/tx4927_dbgio.c N 2.3/arch/mips/tx4927/common/tx4927_irq.c N 2.3/arch/mips/tx4927/common/tx4927_irq_handler.S N 2.3/arch/mips/tx4927/common/tx4927_prom.c N 2.3/arch/mips/tx4927/common/tx4927_setup.c N 2.3/arch/mips/tx4927/toshiba_rbtx4927/Makefile N 2.3/arch/mips/tx4927/toshiba_rbtx4927/toshiba_rbtx4927_irq.c N 2.3/arch/mips/tx4927/toshiba_rbtx4927/toshiba_rbtx4927_pci_fixup.c N 2.3/arch/mips/tx4927/toshiba_rbtx4927/toshiba_rbtx4927_pci_ops.c N 2.3/arch/mips/tx4927/toshiba_rbtx4927/toshiba_rbtx4927_prom.c N 2.3/arch/mips/tx4927/toshiba_rbtx4927/toshiba_rbtx4927_setup.c N 2.3/arch/mips/sibyte/cfe/console.c N 2.3/arch/mips/sibyte/cfe/cfe_api_int.h N 2.3/arch/mips/sibyte/sb1250/bus_watcher.c N 2.3/arch/mips/sibyte/sb1250/ide.c N 2.3/arch/mips/sibyte/swarm/rtc_m41t81.c N 2.3/arch/mips/vr41xx/common/ide.c N 2.3/arch/mips/vr41xx/common/vrc4173.c N 2.3/arch/mips/vr41xx/nec-eagle/vrc4173.c N 2.3/arch/mips/vr41xx/casio-e55/Makefile N 2.3/arch/mips/vr41xx/casio-e55/ide-e55.c N 2.3/arch/mips/vr41xx/casio-e55/init.c N 2.3/arch/mips/vr41xx/casio-e55/setup.c N 2.3/arch/mips/vr41xx/ibm-workpad/Makefile N 2.3/arch/mips/vr41xx/ibm-workpad/ide-workpad.c N 2.3/arch/mips/vr41xx/ibm-workpad/init.c N 2.3/arch/mips/vr41xx/ibm-workpad/setup.c N 2.3/arch/mips/vr41xx/tanbac-tb0226/Makefile N 2.3/arch/mips/vr41xx/tanbac-tb0226/init.c N 2.3/arch/mips/vr41xx/tanbac-tb0226/pci_fixup.c N 2.3/arch/mips/vr41xx/tanbac-tb0226/setup.c N 2.3/arch/mips/vr41xx/tanbac-tb0229/Makefile N 2.3/arch/mips/vr41xx/tanbac-tb0229/init.c N 2.3/arch/mips/vr41xx/tanbac-tb0229/pci_fixup.c N 2.3/arch/mips/vr41xx/tanbac-tb0229/reboot.c N 2.3/arch/mips/vr41xx/tanbac-tb0229/setup.c N 2.3/arch/mips/vr41xx/victor-mpc30x/Makefile N 2.3/arch/mips/vr41xx/victor-mpc30x/ide-mpc30x.c N 2.3/arch/mips/vr41xx/victor-mpc30x/init.c N 2.3/arch/mips/vr41xx/victor-mpc30x/pci_fixup.c N 2.3/arch/mips/vr41xx/victor-mpc30x/setup.c N 2.3/arch/mips64/defconfig-decstation N 2.3/arch/mips64/kernel/binfmt_elfn32.c N 2.3/arch/mips64/kernel/binfmt_elfo32.c N 2.3/arch/mips64/kernel/gdb-low.S N 2.3/arch/mips64/kernel/gdb-stub.c N 2.3/arch/mips64/kernel/scall_n32.S N 2.3/arch/mips64/kernel/signal_n32.c N 2.3/arch/mips64/lib/promlib.c N 2.3/arch/mips64/mm/c-r4k.c N 2.3/arch/mips64/mm/cache.c N 2.3/arch/mips64/mm/cerr-sb1.c N 2.3/arch/mips64/mm/cex-sb1.S N 2.3/arch/mips64/mm/pg-r4k.c N 2.3/arch/mips64/mm/sc-ip22.c N 2.3/arch/mips64/mm/sc-r5k.c N 2.3/arch/mips64/mm/sc-rm7k.c N 2.3/arch/mips64/mm/tlb-andes.c N 2.3/arch/mips64/mm/tlb-glue-sb1.S N 2.3/arch/parisc/defpalo.conf C 2.3/arch/ppc/Makefile C 2.3/arch/ppc/config.in C 2.3/arch/ppc/amiga/config.c C 2.3/arch/ppc/amiga/ints.c N 2.3/arch/ppc/configs/pplus_defconfig C 2.3/arch/ppc/kernel/head.S N 2.3/arch/ppc/kernel/idle_gen.c N 2.3/arch/ppc/kernel/ocp.c C 2.3/arch/ppc/kernel/ppc-stub.c N 2.3/arch/ppc/kernel/ppc405_pci.c N 2.3/arch/ppc/kernel/ppc4xx_setup.c C 2.3/arch/ppc/kernel/setup.c C 2.3/arch/ppc/kernel/time.c N 2.3/arch/ppc/kernel/pplus_common.c C 2.3/arch/ppc/mm/pgtable.c C 2.3/arch/ppc/platforms/apus_pci.c N 2.3/arch/ppc/platforms/ibm405.h N 2.3/arch/ppc/platforms/ibm405gp.c N 2.3/arch/ppc/platforms/ibm405gp.h N 2.3/arch/ppc/platforms/ibm_ocp.h N 2.3/arch/ppc/platforms/pplus_pci.c N 2.3/arch/ppc/platforms/pplus_setup.c N 2.3/arch/ppc64/kernel/cputable.c N 2.3/arch/s390x/kernel/exec_domain32.c N 2.3/arch/sh/kernel/io_hs7729pci.c N 2.3/arch/sh/kernel/io_keywest.c N 2.3/arch/sh/kernel/io_shmse.c N 2.3/arch/sh/kernel/io_snapgear.c N 2.3/arch/sh/kernel/kgdb_jmp.S N 2.3/arch/sh/kernel/kgdb_stub.c N 2.3/arch/sh/kernel/mach_hs7729pci.c N 2.3/arch/sh/kernel/mach_keywest.c N 2.3/arch/sh/kernel/mach_shmse.c N 2.3/arch/sh/kernel/mach_snapgear.c N 2.3/arch/sh/kernel/pci-sd0001.c N 2.3/arch/sh/kernel/pci-sd0001.h N 2.3/arch/sh/kernel/pci-snapgear.c N 2.3/arch/sh/kernel/pci-v320usc.c N 2.3/arch/sh/kernel/pci-v320usc.h N 2.3/arch/sh/kernel/rtc-snapgear.c N 2.3/arch/sh/kernel/setup_hs7729pci.c N 2.3/arch/sh/kernel/setup_keywest.c N 2.3/arch/sh/kernel/setup_shmse.c N 2.3/arch/sh/kernel/setup_snapgear.c N 2.3/arch/sh/kernel/ubc.S N 2.3/arch/sh/overdrive/Makefile N 2.3/arch/sh/overdrive/fpga.c N 2.3/arch/sh/overdrive/fpga.h N 2.3/arch/sh/overdrive/galileo.c N 2.3/arch/sh/overdrive/gt64111.h N 2.3/arch/sh/overdrive/io.c N 2.3/arch/sh/overdrive/io_od.h N 2.3/arch/sh/overdrive/irq.c N 2.3/arch/sh/overdrive/led.c N 2.3/arch/sh/overdrive/mach.c N 2.3/arch/sh/overdrive/overdrive.h N 2.3/arch/sh/overdrive/pcidma.c N 2.3/arch/sh/overdrive/setup.c N 2.3/arch/x86_64/kernel/acpi.c N 2.3/arch/x86_64/kernel/acpi_wakeup.S N 2.3/arch/x86_64/kernel/suspend.c N 2.3/arch/x86_64/kernel/warmreboot.S N 2.3/arch/sh64/Makefile N 2.3/arch/sh64/config.in N 2.3/arch/sh64/defconfig N 2.3/arch/sh64/vmlinux.lds.S N 2.3/arch/sh64/boot/Makefile N 2.3/arch/sh64/boot/compressed/Makefile N 2.3/arch/sh64/boot/compressed/cache.c N 2.3/arch/sh64/boot/compressed/head.S N 2.3/arch/sh64/boot/compressed/install.sh N 2.3/arch/sh64/boot/compressed/misc.c N 2.3/arch/sh64/boot/compressed/vmlinux.lds.S N 2.3/arch/sh64/kernel/Makefile N 2.3/arch/sh64/kernel/dma.c N 2.3/arch/sh64/kernel/entry.S N 2.3/arch/sh64/kernel/fpu.c N 2.3/arch/sh64/kernel/head.S N 2.3/arch/sh64/kernel/init_task.c N 2.3/arch/sh64/kernel/irq.c N 2.3/arch/sh64/kernel/irq_intc.c N 2.3/arch/sh64/kernel/led.c N 2.3/arch/sh64/kernel/pci-dma.c N 2.3/arch/sh64/kernel/pci_sh5.c N 2.3/arch/sh64/kernel/pci_sh5.h N 2.3/arch/sh64/kernel/pcibios.c N 2.3/arch/sh64/kernel/process.c N 2.3/arch/sh64/kernel/ptrace.c N 2.3/arch/sh64/kernel/semaphore.c N 2.3/arch/sh64/kernel/setup.c N 2.3/arch/sh64/kernel/sh_ksyms.c N 2.3/arch/sh64/kernel/signal.c N 2.3/arch/sh64/kernel/sys_sh64.c N 2.3/arch/sh64/kernel/time.c N 2.3/arch/sh64/kernel/traps.c N 2.3/arch/sh64/lib/Makefile N 2.3/arch/sh64/lib/c-checksum.c N 2.3/arch/sh64/lib/checksum.S N 2.3/arch/sh64/lib/copy_user_memcpy.S N 2.3/arch/sh64/lib/dbg.c N 2.3/arch/sh64/lib/io.c N 2.3/arch/sh64/lib/memcpy.c N 2.3/arch/sh64/lib/old-checksum.c N 2.3/arch/sh64/lib/page_clear.S N 2.3/arch/sh64/lib/page_copy.S N 2.3/arch/sh64/lib/panic.c N 2.3/arch/sh64/lib/syscalltab.h N 2.3/arch/sh64/lib/udelay.c N 2.3/arch/sh64/mach-cayman/Makefile N 2.3/arch/sh64/mach-cayman/irq.c N 2.3/arch/sh64/mach-cayman/led.c N 2.3/arch/sh64/mach-cayman/setup.c N 2.3/arch/sh64/mach-harp/Makefile N 2.3/arch/sh64/mach-harp/setup.c N 2.3/arch/sh64/mach-sim/Makefile N 2.3/arch/sh64/mach-sim/setup.c N 2.3/arch/sh64/mm/Makefile N 2.3/arch/sh64/mm/cache.c N 2.3/arch/sh64/mm/extable.c N 2.3/arch/sh64/mm/fault.c N 2.3/arch/sh64/mm/init.c N 2.3/arch/sh64/mm/ioremap.c N 2.3/arch/sh64/mm/tlb.c N 2.3/arch/sh64/mm/tlbmiss.c N 2.3/drivers/acorn/scsi/scsi.h N 2.3/drivers/acpi/ac.c N 2.3/drivers/acpi/asus_acpi.c N 2.3/drivers/acpi/battery.c N 2.3/drivers/acpi/blacklist.c N 2.3/drivers/acpi/bus.c N 2.3/drivers/acpi/button.c C 2.3/drivers/acpi/ec.c N 2.3/drivers/acpi/fan.c N 2.3/drivers/acpi/numa.c N 2.3/drivers/acpi/osl.c N 2.3/drivers/acpi/pci_bind.c N 2.3/drivers/acpi/pci_irq.c N 2.3/drivers/acpi/pci_link.c N 2.3/drivers/acpi/pci_root.c C 2.3/drivers/acpi/power.c N 2.3/drivers/acpi/processor.c N 2.3/drivers/acpi/system.c C 2.3/drivers/acpi/tables.c N 2.3/drivers/acpi/thermal.c N 2.3/drivers/acpi/toshiba_acpi.c N 2.3/drivers/acpi/utils.c N 2.3/drivers/acpi/dispatcher/dsinit.c N 2.3/drivers/acpi/events/evgpe.c N 2.3/drivers/acpi/events/evgpeblk.c N 2.3/drivers/acpi/namespace/nsdumpdv.c N 2.3/drivers/acpi/namespace/nsparse.c N 2.3/drivers/acpi/namespace/nsxfeval.c N 2.3/drivers/acpi/tables/tbgetall.c N 2.3/drivers/acpi/tables/tbrsdt.c N 2.3/drivers/atm/he.c N 2.3/drivers/atm/he.h N 2.3/drivers/bluetooth/bfusb.c N 2.3/drivers/bluetooth/bfusb.h C 2.3/drivers/char/Config.in N 2.3/drivers/char/au1000_usbraw.c N 2.3/drivers/char/au1000_usbtty.c N 2.3/drivers/char/au1x00-serial.c N 2.3/drivers/char/ds1286.c N 2.3/drivers/char/ip27-rtc.c N 2.3/drivers/char/mips_rtc.c N 2.3/drivers/char/serial_txx9.c N 2.3/drivers/char/sgiserial.c N 2.3/drivers/char/sgiserial.h N 2.3/drivers/char/vac-serial.c N 2.3/drivers/i2c/i2c-algo-sibyte.c N 2.3/drivers/i2c/i2c-max1617.c N 2.3/drivers/i2c/i2c-sibyte.c C 2.3/drivers/ide/ide-probe.c C 2.3/drivers/ide/ide-sibyte.c N 2.3/drivers/ieee1394/oui.db N 2.3/drivers/ieee1394/oui2c.sh N 2.3/drivers/media/video/i2c-compat.h N 2.3/drivers/media/video/swarm_saa7114h.c C 2.3/drivers/net/Makefile N 2.3/drivers/net/Makefile.lib N 2.3/drivers/net/b44.c N 2.3/drivers/net/b44.h N 2.3/drivers/net/bonding/Makefile N 2.3/drivers/net/bonding/bond_3ad.c N 2.3/drivers/net/bonding/bond_3ad.h N 2.3/drivers/net/bonding/bond_alb.c N 2.3/drivers/net/bonding/bond_alb.h N 2.3/drivers/net/bonding/bond_main.c N 2.3/drivers/net/bonding/bonding.h N 2.3/drivers/net/wan/8253x/build N 2.3/drivers/net/wireless/orinoco_tmd.c N 2.3/drivers/net/ibm_emac/Config.in N 2.3/drivers/net/ibm_emac/Makefile N 2.3/drivers/net/ibm_emac/ibm_emac.h N 2.3/drivers/net/ibm_emac/ibm_ocp_debug.c N 2.3/drivers/net/ibm_emac/ibm_ocp_enet.c N 2.3/drivers/net/ibm_emac/ibm_ocp_enet.h N 2.3/drivers/net/ibm_emac/ibm_ocp_mal.c N 2.3/drivers/net/ibm_emac/ibm_ocp_mal.h N 2.3/drivers/net/ibm_emac/ibm_ocp_phy.c N 2.3/drivers/net/ibm_emac/ibm_ocp_phy.h N 2.3/drivers/net/ibm_emac/ibm_ocp_zmii.h N 2.3/drivers/pcmcia/au1000_db1x00.c N 2.3/drivers/pcmcia/au1000_xxs1500.c N 2.3/drivers/s390/qdio.c N 2.3/drivers/s390/net/c7000.c N 2.3/drivers/s390/net/qeth.c N 2.3/drivers/s390/net/qeth.h N 2.3/drivers/s390/net/qeth_mpc.h C 2.3/drivers/scsi/Config.in C 2.3/drivers/scsi/Makefile N 2.3/drivers/scsi/aic7xxx/README.aic79xx N 2.3/drivers/scsi/aic7xxx/README.aic7xxx N 2.3/drivers/scsi/aic7xxx/aic79xx.h N 2.3/drivers/scsi/aic7xxx/aic79xx.reg N 2.3/drivers/scsi/aic7xxx/aic79xx.seq N 2.3/drivers/scsi/aic7xxx/aic79xx_core.c N 2.3/drivers/scsi/aic7xxx/aic79xx_inline.h N 2.3/drivers/scsi/aic7xxx/aic79xx_osm.c N 2.3/drivers/scsi/aic7xxx/aic79xx_osm.h N 2.3/drivers/scsi/aic7xxx/aic79xx_osm_pci.c N 2.3/drivers/scsi/aic7xxx/aic79xx_pci.c N 2.3/drivers/scsi/aic7xxx/aic79xx_proc.c N 2.3/drivers/scsi/aic7xxx/aic79xx_reg.h N 2.3/drivers/scsi/aic7xxx/aic79xx_reg_print.c N 2.3/drivers/scsi/aic7xxx/aic79xx_seq.h N 2.3/drivers/scsi/aic7xxx/aic7xxx_reg_print.c N 2.3/drivers/scsi/aic7xxx/aiclib.c N 2.3/drivers/scsi/aic7xxx/aiclib.h N 2.3/drivers/sound/ac97_plugin_ad1980.c N 2.3/drivers/usb/Makefile.lib N 2.3/drivers/usb/ax8817x.c N 2.3/drivers/usb/speedtch.c N 2.3/drivers/usb/host/sl811.c N 2.3/drivers/usb/host/sl811.h C 2.3/drivers/video/Config.in C 2.3/drivers/video/fbcon.c C 2.3/drivers/video/fbmem.c C 2.3/fs/Config.in C 2.3/fs/Makefile N 2.3/fs/Makefile.lib C 2.3/fs/buffer.c N 2.3/fs/quota.c N 2.3/fs/quota_v1.c N 2.3/fs/quota_v2.c N 2.3/fs/nfs/direct.c N 2.3/fs/hfsplus/Makefile N 2.3/fs/hfsplus/README N 2.3/fs/hfsplus/bfind.c N 2.3/fs/hfsplus/bnode.c N 2.3/fs/hfsplus/brec.c N 2.3/fs/hfsplus/btree.c N 2.3/fs/hfsplus/catalog.c N 2.3/fs/hfsplus/dir.c N 2.3/fs/hfsplus/extents.c N 2.3/fs/hfsplus/hfsplus_fs.h N 2.3/fs/hfsplus/hfsplus_raw.h N 2.3/fs/hfsplus/inode.c N 2.3/fs/hfsplus/options.c N 2.3/fs/hfsplus/super.c N 2.3/fs/hfsplus/tables.c N 2.3/fs/hfsplus/unicode.c N 2.3/fs/hfsplus/wrapper.c N 2.3/include/acpi/acconfig.h N 2.3/include/acpi/acdebug.h N 2.3/include/acpi/acdisasm.h N 2.3/include/acpi/acdispat.h N 2.3/include/acpi/acevents.h N 2.3/include/acpi/acexcep.h N 2.3/include/acpi/acglobal.h N 2.3/include/acpi/achware.h N 2.3/include/acpi/acinterp.h N 2.3/include/acpi/aclocal.h N 2.3/include/acpi/acmacros.h N 2.3/include/acpi/acnamesp.h N 2.3/include/acpi/acobject.h N 2.3/include/acpi/acoutput.h N 2.3/include/acpi/acparser.h N 2.3/include/acpi/acpi.h N 2.3/include/acpi/acpi_bus.h N 2.3/include/acpi/acpi_drivers.h N 2.3/include/acpi/acpiosxf.h N 2.3/include/acpi/acpixf.h N 2.3/include/acpi/acresrc.h N 2.3/include/acpi/acstruct.h N 2.3/include/acpi/actables.h N 2.3/include/acpi/actbl.h N 2.3/include/acpi/actbl1.h N 2.3/include/acpi/actbl2.h N 2.3/include/acpi/actbl71.h N 2.3/include/acpi/actypes.h N 2.3/include/acpi/acutils.h N 2.3/include/acpi/amlcode.h N 2.3/include/acpi/amlresrc.h N 2.3/include/acpi/platform/acenv.h N 2.3/include/acpi/platform/acgcc.h N 2.3/include/acpi/platform/aclinux.h N 2.3/include/asm-arm/arch-at91rm9200/AT91RM9200.h N 2.3/include/asm-arm/arch-at91rm9200/AT91RM9200_EMAC.h N 2.3/include/asm-arm/arch-at91rm9200/AT91RM9200_SPI.h N 2.3/include/asm-arm/arch-at91rm9200/AT91RM9200_SYS.h N 2.3/include/asm-arm/arch-at91rm9200/AT91RM9200_TWI.h N 2.3/include/asm-arm/arch-at91rm9200/AT91RM9200_UDP.h N 2.3/include/asm-arm/arch-at91rm9200/AT91RM9200_UHP.h N 2.3/include/asm-arm/arch-at91rm9200/AT91RM9200_USART.h N 2.3/include/asm-arm/arch-at91rm9200/at91rm9200dk.h N 2.3/include/asm-arm/arch-at91rm9200/dma.h N 2.3/include/asm-arm/arch-at91rm9200/hardware.h N 2.3/include/asm-arm/arch-at91rm9200/io.h N 2.3/include/asm-arm/arch-at91rm9200/irq.h N 2.3/include/asm-arm/arch-at91rm9200/irqs.h N 2.3/include/asm-arm/arch-at91rm9200/memory.h N 2.3/include/asm-arm/arch-at91rm9200/param.h N 2.3/include/asm-arm/arch-at91rm9200/pio.h N 2.3/include/asm-arm/arch-at91rm9200/system.h N 2.3/include/asm-arm/arch-at91rm9200/time.h N 2.3/include/asm-arm/arch-at91rm9200/timex.h N 2.3/include/asm-arm/arch-at91rm9200/uncompress.h N 2.3/include/asm-arm/arch-at91rm9200/vmalloc.h N 2.3/include/asm-arm/arch-sa1100/adsagc.h N 2.3/include/asm-arm/arch-sa1100/adsbitsyplus.h N 2.3/include/asm-arm/arch-sa1100/hackkit.h N 2.3/include/asm-arm/arch-sa1100/simputer.h N 2.3/include/asm-arm/hardware/ep7312.h N 2.3/include/asm-arm/hardware/serial_omaha.h N 2.3/include/asm-arm/hardware/ssp.h N 2.3/include/asm-arm/mach/serial_at91rm9200.h N 2.3/include/asm-arm/arch-epxa/dma.h N 2.3/include/asm-arm/arch-epxa/ether00.h N 2.3/include/asm-arm/arch-epxa/exc-epxa10dbr2.h N 2.3/include/asm-arm/arch-epxa/exc-epxa10dbr3.h N 2.3/include/asm-arm/arch-epxa/exc-epxa1db.h N 2.3/include/asm-arm/arch-epxa/excalibur.h N 2.3/include/asm-arm/arch-epxa/hardware.h N 2.3/include/asm-arm/arch-epxa/int_ctrl00.h N 2.3/include/asm-arm/arch-epxa/io.h N 2.3/include/asm-arm/arch-epxa/irq.h N 2.3/include/asm-arm/arch-epxa/irqs.h N 2.3/include/asm-arm/arch-epxa/memory.h N 2.3/include/asm-arm/arch-epxa/mode_ctrl00.h N 2.3/include/asm-arm/arch-epxa/param.h N 2.3/include/asm-arm/arch-epxa/platform.h N 2.3/include/asm-arm/arch-epxa/pld_conf00.h N 2.3/include/asm-arm/arch-epxa/serial.h N 2.3/include/asm-arm/arch-epxa/system.h N 2.3/include/asm-arm/arch-epxa/tdkphy.h N 2.3/include/asm-arm/arch-epxa/time.h N 2.3/include/asm-arm/arch-epxa/timer00.h N 2.3/include/asm-arm/arch-epxa/timex.h N 2.3/include/asm-arm/arch-epxa/uart00.h N 2.3/include/asm-arm/arch-epxa/uncompress.h N 2.3/include/asm-arm/arch-epxa/vmalloc.h N 2.3/include/asm-arm/arch-epxa/watchdog00.h N 2.3/include/asm-arm/arch-omaha/bits.h N 2.3/include/asm-arm/arch-omaha/dma.h N 2.3/include/asm-arm/arch-omaha/hardware.h N 2.3/include/asm-arm/arch-omaha/ide.h N 2.3/include/asm-arm/arch-omaha/io.h N 2.3/include/asm-arm/arch-omaha/irq.h N 2.3/include/asm-arm/arch-omaha/irqs.h N 2.3/include/asm-arm/arch-omaha/memory.h N 2.3/include/asm-arm/arch-omaha/param.h N 2.3/include/asm-arm/arch-omaha/platform.h N 2.3/include/asm-arm/arch-omaha/serial.h N 2.3/include/asm-arm/arch-omaha/system.h N 2.3/include/asm-arm/arch-omaha/time.h N 2.3/include/asm-arm/arch-omaha/timex.h N 2.3/include/asm-arm/arch-omaha/uncompress.h N 2.3/include/asm-arm/arch-omaha/vmalloc.h N 2.3/include/asm-arm/arch-riscstation/acornfb.h N 2.3/include/asm-arm/arch-riscstation/dma.h N 2.3/include/asm-arm/arch-riscstation/hardware.h N 2.3/include/asm-arm/arch-riscstation/ide.h N 2.3/include/asm-arm/arch-riscstation/io.h N 2.3/include/asm-arm/arch-riscstation/irq.h N 2.3/include/asm-arm/arch-riscstation/irqs.h N 2.3/include/asm-arm/arch-riscstation/keyboard.h N 2.3/include/asm-arm/arch-riscstation/memory.h N 2.3/include/asm-arm/arch-riscstation/param.h N 2.3/include/asm-arm/arch-riscstation/serial.h N 2.3/include/asm-arm/arch-riscstation/system.h N 2.3/include/asm-arm/arch-riscstation/time.h N 2.3/include/asm-arm/arch-riscstation/timex.h N 2.3/include/asm-arm/arch-riscstation/uncompress.h N 2.3/include/asm-arm/arch-riscstation/vmalloc.h N 2.3/include/asm-i386/acpi.h N 2.3/include/asm-i386/save_state.h N 2.3/include/asm-ia64/intrinsics.h N 2.3/include/asm-ia64/rwsem.h N 2.3/include/asm-ia64/sn/hwgfs.h N 2.3/include/asm-ia64/sn/ioconfig_bus.h N 2.3/include/asm-ia64/sn/sn2/io.h N 2.3/include/asm-m68k/kmap_types.h C 2.3/include/asm-mips/highmem.h N 2.3/include/asm-mips/db1x00.h N 2.3/include/asm-mips/fpu.h N 2.3/include/asm-mips/cacheflush.h N 2.3/include/asm-mips/i8259.h N 2.3/include/asm-mips/mv64340.h N 2.3/include/asm-mips/mv64340_dep.h N 2.3/include/asm-mips/pgtable-32.h N 2.3/include/asm-mips/pgtable-64.h N 2.3/include/asm-mips/tlbdebug.h N 2.3/include/asm-mips/xxs1500.h N 2.3/include/asm-mips/dec/ecc.h N 2.3/include/asm-mips/dec/prom.h N 2.3/include/asm-mips/gt64120/ev64120/ev64120.h N 2.3/include/asm-mips/gt64120/ev96100/gt64120_dep.h N 2.3/include/asm-mips/gt64120/lasat/gt64120_dep.h N 2.3/include/asm-mips/gt64120/mips-boards/gt64120_dep.h N 2.3/include/asm-mips/sgi/gio.h N 2.3/include/asm-mips/sgi/hpc3.h N 2.3/include/asm-mips/sgi/ioc.h N 2.3/include/asm-mips/sgi/ip22.h N 2.3/include/asm-mips/sgi/mc.h N 2.3/include/asm-mips/sibyte/carmel.h N 2.3/include/asm-mips/sibyte/sentosa.h N 2.3/include/asm-mips/sibyte/trace_prof.h N 2.3/include/asm-mips/vr41xx/e55.h N 2.3/include/asm-mips/vr41xx/mpc30x.h N 2.3/include/asm-mips/vr41xx/tb0226.h N 2.3/include/asm-mips/vr41xx/tb0229.h N 2.3/include/asm-mips/vr41xx/vrc4173.h N 2.3/include/asm-mips/vr41xx/workpad.h N 2.3/include/asm-mips/lasat/ds1603.h N 2.3/include/asm-mips/lasat/eeprom.h N 2.3/include/asm-mips/lasat/head.h N 2.3/include/asm-mips/lasat/lasat.h N 2.3/include/asm-mips/lasat/lasatint.h N 2.3/include/asm-mips/lasat/picvue.h N 2.3/include/asm-mips/lasat/serial.h N 2.3/include/asm-mips/tx4927/toshiba_rbtx4927.h N 2.3/include/asm-mips/tx4927/tx4927.h N 2.3/include/asm-mips/tx4927/tx4927_mips.h N 2.3/include/asm-mips/tx4927/tx4927_pci.h N 2.3/include/asm-mips64/cacheflush.h N 2.3/include/asm-mips64/fpu.h N 2.3/include/asm-mips64/i8259.h N 2.3/include/asm-mips64/mv64340.h N 2.3/include/asm-mips64/mv64340_dep.h N 2.3/include/asm-mips64/pci_channel.h N 2.3/include/asm-mips64/tlbdebug.h N 2.3/include/asm-mips64/dec/ecc.h N 2.3/include/asm-mips64/dec/interrupts.h N 2.3/include/asm-mips64/dec/io.h N 2.3/include/asm-mips64/dec/ioasic.h N 2.3/include/asm-mips64/dec/ioasic_addrs.h N 2.3/include/asm-mips64/dec/ioasic_ints.h N 2.3/include/asm-mips64/dec/kn01.h N 2.3/include/asm-mips64/dec/kn02.h N 2.3/include/asm-mips64/dec/kn02ba.h N 2.3/include/asm-mips64/dec/kn02ca.h N 2.3/include/asm-mips64/dec/kn02xa.h N 2.3/include/asm-mips64/dec/kn03.h N 2.3/include/asm-mips64/dec/kn05.h N 2.3/include/asm-mips64/dec/kn230.h N 2.3/include/asm-mips64/dec/machtype.h N 2.3/include/asm-mips64/dec/prom.h N 2.3/include/asm-mips64/dec/rtc-dec.h N 2.3/include/asm-mips64/dec/tc.h N 2.3/include/asm-mips64/dec/tcinfo.h N 2.3/include/asm-mips64/dec/tcmodule.h N 2.3/include/asm-mips64/sgi/gio.h N 2.3/include/asm-mips64/sgi/hpc3.h N 2.3/include/asm-mips64/sgi/ioc.h N 2.3/include/asm-mips64/sgi/ip22.h N 2.3/include/asm-mips64/sgi/mc.h N 2.3/include/asm-mips64/sibyte/carmel.h N 2.3/include/asm-mips64/sibyte/sentosa.h N 2.3/include/asm-mips64/sibyte/trace_prof.h N 2.3/include/asm-mips64/gt64120/gt64120.h N 2.3/include/asm-mips64/gt64120/ev64120/ev64120.h N 2.3/include/asm-mips64/gt64120/ev96100/gt64120_dep.h N 2.3/include/asm-mips64/gt64120/lasat/gt64120_dep.h N 2.3/include/asm-mips64/gt64120/mips-boards/gt64120_dep.h N 2.3/include/asm-mips64/gt64120/momenco_ocelot/gt64120_dep.h C 2.3/include/asm-ppc/io.h N 2.3/include/asm-ppc/ocp.h N 2.3/include/asm-ppc/ocp_ids.h N 2.3/include/asm-ppc/pc_serial.h N 2.3/include/asm-ppc/ibm4xx.h C 2.3/include/asm-ppc/rtc.h N 2.3/include/asm-ppc/pplus.h N 2.3/include/asm-ppc64/cputable.h N 2.3/include/asm-ppc64/kmap_types.h N 2.3/include/asm-s390/qdio.h N 2.3/include/asm-s390x/qdio.h N 2.3/include/asm-sh/cachectl.h N 2.3/include/asm-sh/hitachi_hs7729pci.h N 2.3/include/asm-sh/hitachi_shmse.h N 2.3/include/asm-sh/io_hs7729pci.h N 2.3/include/asm-sh/io_keywest.h N 2.3/include/asm-sh/io_shmse.h N 2.3/include/asm-sh/io_snapgear.h N 2.3/include/asm-sh/irq-sh7300.h N 2.3/include/asm-sh/keyboard-hs7729pci.h N 2.3/include/asm-sh/kgdb.h N 2.3/include/asm-sh/mmzone.h N 2.3/include/asm-sh/parport.h N 2.3/include/asm-sh/segment.h N 2.3/include/asm-sh/ubc.h N 2.3/include/asm-sparc64/kmap_types.h N 2.3/include/asm-x86_64/acpi.h N 2.3/include/linux/atm_he.h C 2.3/include/linux/fs.h N 2.3/include/linux/crypto.h N 2.3/include/linux/dqblk_v1.h N 2.3/include/linux/dqblk_v2.h N 2.3/include/linux/dqblk_xfs.h N 2.3/include/linux/i2c-algo-sibyte.h N 2.3/include/linux/quotacompat.h N 2.3/include/linux/quotaio_v1.h N 2.3/include/linux/quotaio_v2.h N 2.3/include/linux/netfilter_arp/arpt_mangle.h N 2.3/include/linux/netfilter_ipv4/ipt_recent.h N 2.3/include/asm-sh64/a.out.h N 2.3/include/asm-sh64/atomic.h N 2.3/include/asm-sh64/bitops.h N 2.3/include/asm-sh64/bugs.h N 2.3/include/asm-sh64/byteorder.h N 2.3/include/asm-sh64/cache.h N 2.3/include/asm-sh64/cayman.h N 2.3/include/asm-sh64/checksum.h N 2.3/include/asm-sh64/current.h N 2.3/include/asm-sh64/delay.h N 2.3/include/asm-sh64/div64.h N 2.3/include/asm-sh64/dma.h N 2.3/include/asm-sh64/elf.h N 2.3/include/asm-sh64/errno.h N 2.3/include/asm-sh64/fcntl.h N 2.3/include/asm-sh64/hardirq.h N 2.3/include/asm-sh64/hardware.h N 2.3/include/asm-sh64/hdreg.h N 2.3/include/asm-sh64/hw_irq.h N 2.3/include/asm-sh64/ide.h N 2.3/include/asm-sh64/init.h N 2.3/include/asm-sh64/io.h N 2.3/include/asm-sh64/ioctl.h N 2.3/include/asm-sh64/ioctls.h N 2.3/include/asm-sh64/ipc.h N 2.3/include/asm-sh64/ipcbuf.h N 2.3/include/asm-sh64/irq.h N 2.3/include/asm-sh64/keyboard.h N 2.3/include/asm-sh64/linux_logo.h N 2.3/include/asm-sh64/mc146818rtc.h N 2.3/include/asm-sh64/mman.h N 2.3/include/asm-sh64/mmu.h N 2.3/include/asm-sh64/mmu_context.h N 2.3/include/asm-sh64/module.h N 2.3/include/asm-sh64/msgbuf.h N 2.3/include/asm-sh64/namei.h N 2.3/include/asm-sh64/page.h N 2.3/include/asm-sh64/param.h N 2.3/include/asm-sh64/pci.h N 2.3/include/asm-sh64/pgalloc.h N 2.3/include/asm-sh64/pgtable.h N 2.3/include/asm-sh64/platform.h N 2.3/include/asm-sh64/poll.h N 2.3/include/asm-sh64/posix_types.h N 2.3/include/asm-sh64/processor.h N 2.3/include/asm-sh64/ptrace.h N 2.3/include/asm-sh64/registers.h N 2.3/include/asm-sh64/resource.h N 2.3/include/asm-sh64/scatterlist.h N 2.3/include/asm-sh64/segment.h N 2.3/include/asm-sh64/semaphore-helper.h N 2.3/include/asm-sh64/semaphore.h N 2.3/include/asm-sh64/sembuf.h N 2.3/include/asm-sh64/serial.h N 2.3/include/asm-sh64/shmbuf.h N 2.3/include/asm-sh64/shmparam.h N 2.3/include/asm-sh64/sigcontext.h N 2.3/include/asm-sh64/siginfo.h N 2.3/include/asm-sh64/signal.h N 2.3/include/asm-sh64/smp.h N 2.3/include/asm-sh64/smplock.h N 2.3/include/asm-sh64/socket.h N 2.3/include/asm-sh64/sockios.h N 2.3/include/asm-sh64/softirq.h N 2.3/include/asm-sh64/spinlock.h N 2.3/include/asm-sh64/stat.h N 2.3/include/asm-sh64/statfs.h N 2.3/include/asm-sh64/string.h N 2.3/include/asm-sh64/system.h N 2.3/include/asm-sh64/termbits.h N 2.3/include/asm-sh64/termios.h N 2.3/include/asm-sh64/timex.h N 2.3/include/asm-sh64/tlb.h N 2.3/include/asm-sh64/types.h N 2.3/include/asm-sh64/uaccess.h N 2.3/include/asm-sh64/ucontext.h N 2.3/include/asm-sh64/unaligned.h N 2.3/include/asm-sh64/unistd.h N 2.3/include/asm-sh64/user.h N 2.3/lib/crc32.c N 2.3/lib/crc32defs.h N 2.3/lib/gen_crc32table.c N 2.3/net/bluetooth/bnep/Makefile.lib N 2.3/net/bluetooth/cmtp/Config.in N 2.3/net/bluetooth/cmtp/Makefile N 2.3/net/bluetooth/cmtp/capi.c N 2.3/net/bluetooth/cmtp/cmtp.h N 2.3/net/bluetooth/cmtp/core.c N 2.3/net/bluetooth/cmtp/sock.c N 2.3/net/ipv4/netfilter/ipt_recent.c N 2.3/net/ipv4/netfilter/arpt_mangle.c N 2.3/scripts/extract-ikconfig N 2.3/scripts/mkconfigs.c N 2.3/crypto/Config.in N 2.3/crypto/Makefile N 2.3/crypto/aes.c N 2.3/crypto/api.c N 2.3/crypto/autoload.c N 2.3/crypto/blowfish.c N 2.3/crypto/cipher.c N 2.3/crypto/compress.c N 2.3/crypto/crypto_null.c N 2.3/crypto/deflate.c N 2.3/crypto/des.c N 2.3/crypto/digest.c N 2.3/crypto/hmac.c N 2.3/crypto/internal.h N 2.3/crypto/md4.c N 2.3/crypto/md5.c N 2.3/crypto/proc.c N 2.3/crypto/serpent.c N 2.3/crypto/sha1.c N 2.3/crypto/sha256.c N 2.3/crypto/sha512.c N 2.3/crypto/tcrypt.c N 2.3/crypto/tcrypt.h N 2.3/crypto/twofish.c 32 conflicts created by this import. cvs checkout -jtorvalds:yesterday -jtorvalds 2.3 |