login
Header Space

 
 

linux-kernel mailing list

FromSubjectsort iconDate
Justin Piszcz
Linux -- Intel (HECI) interface for Linux/status?
http://softwareblogs.intel.com/2007/04/13/intel-me-interface-heci-now-available/ I have had a mobo with the 965 chipset for awhile now, I was curious if there was any update of this patch getting into the kernel / whether it will be ever possible to monitor the chipset temperature / fan speeds / etc? I know coretemp grabs the CPU temp which is great but it would be nice to see the other sensors' statistics. Justin. --
May 5, 7:55 pm 2008
Maciej W. Rozycki
[PATCH] SWARM IDE: Fix up following changes to ide_hwif_t
Following recent changes to ide_hwif_t update the SWARM IDE driver to use hw_regs_t to initialize port mapping. Plus minor layout adjustments along the lines of other drivers. Signed-off-by: Maciej W. Rozycki <macro@linux-mips.org> --- Fixes a build problem. Tested succesfully at the run time. No checkpatch.pl problems. Please apply. Maciej patch-2.6.26-rc1-20080505-swarm-ide-hw-0 diff -up --recursive --new-file linux-2.6.26-rc1-20080505.macro/drivers/ide/mips/swarm.c linux-2....
May 5, 7:40 pm 2008
Carlos R. Mafra
x86: Clean up computation of HPET .mult variables
While reading through the HPET code I realized that the computation of .mult variables could be done with less lines of code, resulting in a 1.6% text size saving for hpet.o So I propose the following patch, which applies against today's Linus -git tree. From 0c6507e400e9ca5f7f14331e18f8c12baf75a9d3 Mon Sep 17 00:00:00 2001 From: Carlos R. Mafra <crmafra@ift.unesp.br> Date: Mon, 5 May 2008 19:38:53 -0300 Subject: [PATCH] x86: Clean up computation of HPET .mult variables The computat...
May 5, 7:11 pm 2008
Daniel Walker
Re: x86: Clean up computation of HPET .mult variables
There's helper functions that should be used called clocksource_hz2mult and one called clocksource_khz2mult. I think they're more accurate than using div_sc. Daniel --
May 5, 7:58 pm 2008
Andrew Patterson
[PATCH 0/4] detect online disk resize
This patch series handles online disk resizes that are currently not completely recognized by the kernel using the existing revalidate_disk routines. An online resize can occur when growing or shrinking a Fibre Channel LUN or perhaps by adding a disk to an existing RAID volume. The kernel currently recognizes a device size change when revalidate_disk() is called; however, the block layer does not use the new size while it has any current openers on the device. So, for example, if LVM has an volum...
May 5, 7:04 pm 2008
Andrew Patterson
[PATCH 2/2] Wrapper for lower-level revalidate_disk routines.
Wrapper for lower-level revalidate_disk routines. This is a wrapper for the lower-level revalidate_disk call-backs such as sd_revalidate_disk(). It allows us to perform pre and post operations when calling them. We will use this wrapper in a later patch to adjust block device sizes after an online resize (a _post_ operation). Signed-off-by: Andrew Patterson <andrew.patterson@hp.com> --- fs/block_dev.c | 21 +++++++++++++++++++++ include/linux/fs.h | 1 + 2 files changed, 22...
May 5, 7:04 pm 2008
Andrew Patterson
[PATCH 1/2] Added flush_disk to factor out common buffer cac...
Added flush_disk to factor out common buffer cache flushing code. We need to be able to flush the buffer cache for more than just when a disk is changed, so we factor out common cache flush code in check_disk_change() to an internal flush_disk() routine. This routine will then be used for both disk changes and disk resizes (in a later patch). Include the disk name in the text indicating that there are busy inodes on the device and increase the KERN severity of the message. Signed-off-by: Andr...
May 5, 7:04 pm 2008
Roland Dreier
[GIT PULL] please pull infiniband.git
Linus, please pull from master.kernel.org:/pub/scm/linux/kernel/git/roland/infiniband.git for-linus This tree is also available from kernel.org mirrors at: git://git.kernel.org/pub/scm/linux/kernel/git/roland/infiniband.git for-linus This will get a fixes for: - mlx4 breakage introduced (by me) with the CQ resize support - mlx4 breakage with new FW that supports smaller adapter pages - IPoIB breakage introduced with the separate send CQ support - longstanding cxgb3 breakage unc...
May 5, 7:00 pm 2008
Yinghai Lu
[PATCH] x86: process fam 10h like k8 with fixed mtrr setting
otherwise fixed MTRR for family 10h may not be changed Signed-off-by: Yinghai Lu <yhlu.kernel@gmail.com> Index: linux-2.6/arch/x86/kernel/cpu/mtrr/generic.c =================================================================== --- linux-2.6.orig/arch/x86/kernel/cpu/mtrr/generic.c +++ linux-2.6/arch/x86/kernel/cpu/mtrr/generic.c @@ -342,7 +342,7 @@ static void set_fixed_range(int msr, boo if (lo != msrwords[0] || hi != msrwords[1]) { if (boot_cpu_data.x86_vendor == X86_VENDOR_AMD &a...
May 5, 6:57 pm 2008
Ingo Molnar
[git pull] scheduler fixes
Linus, please pull the latest scheduler fixes git tree from: git://git.kernel.org/pub/scm/linux/kernel/git/mingo/linux-2.6-sched-fixes.git for-linus this tree got booted up ~10 times on x86. Thanks, Ingo ------------------> Andrew Morton (1): sched: add debug checks to idle functions David Simner (1): sched: fix sched_info_switch not being called according to documentation Gregory Haskins (2): sched: fix RT task-wakeup logic sched: fix SCHED_FAIR wake-i...
May 5, 6:58 pm 2008
Jesper Juhl
[PATCH] Use correct format when printing long unsigned int i...
From: Jesper Juhl <jesper.juhl@gmail.com> Use correct format when printing long unsigned int in arch/x86/kernel/setup.c This patch gets rid of this compiler warning: arch/x86/kernel/setup.c: In function 'setup_per_cpu_areas': arch/x86/kernel/setup.c:99: warning: format '%zd' expects type 'signed size_t', but argument 2 has type 'long unsigned int' Signed-off-by: Jesper Juhl <jesper.juhl@gmail.com> --- setup.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) di...
May 5, 6:41 pm 2008
Randy.Dunlap
Re: [PATCH] Use correct format when printing long unsigned i...
Ugh, thanks. Looks like I mucked that one up somehow. -- ~Randy --
May 5, 6:58 pm 2008
Paul Mackerras
[git pull] Please pull powerpc.git powerpc-next branch
Let's try this again... Linus, Please pull from 'powerpc-next' branch of git://git.kernel.org/pub/scm/linux/kernel/git/paulus/powerpc.git powerpc-next There are five commits there that Andrew Morton has sent on to me: three semaphore to mutex conversions, one that changes a proc_create call to proc_create_data, and one that adds a new devm_ioremap_prot function and makes devm_ioremap_release (in lib/devres.c) available to outside callers. If you think these should wait until 2.6.27, that'...
May 5, 6:37 pm 2008
Bjorn Helgaas
[patch 6/8] PNP: replace pnp_resource_table with dynamically...
PNP used to have a fixed-size pnp_resource_table for tracking the resources used by a device. This table often overflowed, so we've had to increase the table size, which wastes memory because most devices have very few resources. This patch replaces the table with a linked list of resources where the entries are allocated on demand. This removes messages like these: pnpacpi: exceeded the max number of IO resources 00:01: too many I/O port resources References: [ message continues ]
" title="http://bugzill...">http://bugzill...
May 5, 6:36 pm 2008
Bjorn Helgaas
[patch 8/8] PNP: dont sort by type in /sys/.../resources
Rather than stepping through all IO resources, then stepping through all MMIO resources, etc., we can just iterate over the resource list once directly. This can change the order in /sys, e.g., # cat /sys/devices/pnp0/00:07/resources # OLD state = active io 0x3f8-0x3ff irq 4 # cat /sys/devices/pnp0/00:07/resources # NEW state = active irq 4 io 0x3f8-0x3ff The old code artificially sorted resources by type; the new code just lists them in the order...
May 5, 6:36 pm 2008
Bjorn Helgaas
[patch 4/8] PNP: add pnp_resource_type() internal interface
Given a struct resource, this returns the type (IO, MEM, IRQ, DMA). Signed-off-by: Bjorn Helgaas <bjorn.helgaas@hp.com> Index: work10/drivers/pnp/base.h =================================================================== --- work10.orig/drivers/pnp/base.h 2008-05-02 14:23:13.000000000 -0600 +++ work10/drivers/pnp/base.h 2008-05-05 09:39:03.000000000 -0600 @@ -45,6 +45,7 @@ int pnp_check_dma(struct pnp_dev *dev, s void dbg_pnp_show_resources(struct pnp_dev *dev, char *desc); void pnp_i...
May 5, 6:36 pm 2008
Bjorn Helgaas
[patch 7/8] PNP: remove ratelimit on add resource failures
We used to have a fixed-size resource table. If a device had twenty resources when the table only had space for ten, we didn't need ten warnings, so we added the ratelimit. Now that we can dynamically allocate new resources, we should only get failures if the allocation fails. That should be rare enough that we don't need to ratelimit the messages. Signed-off-by: Bjorn Helgaas <bjorn.helgaas@hp.com> Index: work10/drivers/pnp/resource.c ==================================================...
May 5, 6:36 pm 2008
Bjorn Helgaas
[patch 5/8] PNP: add pnp_resource_type_name() helper function
This patch adds a "pnp_resource_type_name(struct resource *)" that returns the string resource type. This will be used by the sysfs "show resources" function and the debug resource dump function. Signed-off-by: Bjorn Helgaas <bjorn.helgaas@hp.com> Index: work10/drivers/pnp/base.h =================================================================== --- work10.orig/drivers/pnp/base.h 2008-05-02 14:28:40.000000000 -0600 +++ work10/drivers/pnp/base.h 2008-05-05 09:38:56.000000000 -0600 @@ -42,...
May 5, 6:36 pm 2008
Bjorn Helgaas
[patch 3/8] PNP: remove pnp_resource.index
We used pnp_resource.index to keep track of which ISAPNP configuration register a resource should be written to. We needed this only to handle the case where a register is disabled but a subsequent register in the same set is enabled. Rather than explicitly maintaining the pnp_resource.index, this patch adds a resource every time we read an ISAPNP configuration register and marks the resource as IORESOURCE_DISABLED when appropriate. This makes the position in the pnp_resource_table always corresp...
May 5, 6:36 pm 2008
Bjorn Helgaas
[patch 2/8] PNP: add detail to debug resource dump
In the debug resource dump, decode the flags and indicate when a resource is disabled or has been automatically assigned. Signed-off-by: Bjorn Helgaas <bjorn.helgaas@hp.com> Index: work10/drivers/pnp/support.c =================================================================== --- work10.orig/drivers/pnp/support.c 2008-05-02 11:18:50.000000000 -0600 +++ work10/drivers/pnp/support.c 2008-05-05 09:39:03.000000000 -0600 @@ -63,28 +63,46 @@ void dbg_pnp_show_resources(struct pnp_d for (i = 0...
May 5, 6:36 pm 2008
Bjorn Helgaas
[patch 0/8] PNP: convert resource table to dynamic list, v1
This series replaces the fixed-size pnp_resource_table with a linked list of resources. The first patch is in -mm already and should appear in Linus' tree soon, so just skip that patch if necessary. As a reminder, if anybody tests this and sees problems, the dmesg log with CONFIG_PNP_DEBUG enabled would be a great help to me. Bjorn -- --
May 5, 6:36 pm 2008
Bjorn Helgaas
[patch 1/8] PNP: set IRQ index in sysfs "set irq" interface
We have to set the ISAPNP register index when setting an IRQ via the sysfs interface. We already do it for IO, MEM, and DMA resources; I just missed the IRQ one. This should be in 2.6.26. Signed-off-by: Bjorn Helgaas <bjorn.helgaas@hp.com> Index: work10/drivers/pnp/interface.c =================================================================== --- work10.orig/drivers/pnp/interface.c 2008-05-01 15:26:28.000000000 -0600 +++ work10/drivers/pnp/interface.c 2008-05-01 15:26:39.000000000 -060...
May 5, 6:36 pm 2008
Stephen Neuendorffer
[PATCH] Microblaze: implement dma-coherent API and refactor ...
Primarily, this patch implements the dma-coherent API. In addition, it cleans up some of the code that deals with caches, in order to match the usage in dma-coherent. In particular, the dcache in the microblaze is write through, so the existing code is more easily thought of as 'invalidation' than 'flushing'. In addition, some of the flush_* methods were old, and some shouldn't need to be implemented (since currently no mmu is supported). I'd appreciate if someone would ACK my interpretation o...
May 5, 6:37 pm 2008
John Williams
Re: [PATCH] Microblaze: implement dma-coherent API and refac...
Hi Steve, I agree - this renaming is a long time coming. [snip] Does the DMA API insist upon the dma_cache_sync call to guarantee sensible results? If so, your implementation looks fine. If not, then the results will clearly be bogus as there's nothing magical about the memory being allocated in dma_alloc. To that end, can it just call kmalloc(), and similarly kfree() for dma_free? I'd still like to see the uncached shadow stuff make a return one day, it is an effective way of solvin...
May 5, 6:57 pm 2008
Stephen Neuendorffer
RE: [PATCH] Microblaze: implement dma-coherent API and refac...
Yes, in fact this is one of the keys to getting the lltemac driver to My understanding is that on other architectures (x86, for instance) 'dma' memory ensures other things, like it's accessible in PCI memory space. On microblaze, there's nothing really special about dma memory, I think it's definitely a simple way of solving the problem (in fact, the version of the code that's currently at git.xilinx.com includes it). Would it be better dealt with at the page level, rather than at the address ...
May 5, 7:12 pm 2008
thomas
BUG: unable to handle kernel paging request
See also attached config and dmesg: [ 706.684483] BUG: unable to handle kernel paging request at fa4213d8 [ 706.684488] IP: [<f8b9e4f3>] :oprofile:alloc_cpu_buffers+0x39/0xce [ 706.684496] *pde = 00000000 [ 706.684500] Oops: 0002 [#1] SMP [ 706.684502] last sysfs file: /sys/devices/pci0000:00/0000:00:09.0/irq [ 706.684505] Modules linked in: oprofile cpufreq_stats rfcomm l2cap bluetooth autofs4 fuse sunrpc nf_conntrack_netbios_ns nf_conntrack_ipv4 xt_state nf_conntrack ipt_REJECT i...
May 5, 6:33 pm 2008
Dave Jones
[X86] Add new cache descriptor.
The latest rev of Intel doc AP-485 details a new cache descriptor that we don't yet support. A 6MB 24-way assoc L2 cache. Signed-off-by: Dave Jones <davej@redhat.com> diff --git a/arch/x86/kernel/cpu/intel_cacheinfo.c b/arch/x86/kernel/cpu/intel_cacheinfo.c index 26d615d..2c8afaf 100644 --- a/arch/x86/kernel/cpu/intel_cacheinfo.c +++ b/arch/x86/kernel/cpu/intel_cacheinfo.c @@ -62,6 +62,7 @@ static struct _cache_table cache_table[] __cpuinitdata = { 0x4b, LVL_3, 8192 }, /* 16-way se...
May 5, 5:52 pm 2008
Dmitry Adamushko
[PATCH, minor] sched: check for SD_SERIALIZE atomically in r...
Nothing really serious here, mainly just a matter of nit-picking :-/ From: Dmitry Adamushko <dmitry.adamushko@gmail.com> Subject: sched: check for SD_SERIALIZE atomically in rebalance_domains() For CONFIG_SCHED_DEBUG && CONFIG_SYSCT configs, sd->flags can be altered while being manipulated in rebalance_domains(). Let's do an atomic check. We rely here on the atomicity of read/write accesses for aligned words. Signed-off-by: Dmitry Adamushko <dmitry.adamushko@gmail.c...
May 5, 5:46 pm 2008
Matthias Kaehlcke
[PATCH] sa1100fb: Convert ctrlr_sem in a mutex
sa1100fb: The semaphore ctrlr_sem is used as a mutex. Convert it to the mutex API Signed-off-by: Matthias Kaehlcke <matthias@kaehlcke.net> -- diff --git a/drivers/video/sa1100fb.c b/drivers/video/sa1100fb.c index ab2b211..2dd1b8a 100644 --- a/drivers/video/sa1100fb.c +++ b/drivers/video/sa1100fb.c @@ -174,6 +174,7 @@ #include <linux/cpufreq.h> #include <linux/platform_device.h> #include <linux/dma-mapping.h> +#include <linux/mutex.h> #include <asm/h...
May 5, 5:16 pm 2008
Luke -Jr
ext3 journal OOPS
I am not subscribed, so please CC me to replies. Thanks. Any ideas on this? Running version 2.6.23-gentoo-r8 with no tainting. After reading the oops having been ext3 related, I used the hard reset button to avoid any potentially dangerous shutdown procedures. *** dmesg immediately after oops *** Assertion failure in journal_dirty_data() at fs/jbd/transaction.c:983: "jh->b_transaction == journal->j_committing_transaction" ------------[ cut here ]------------ kernel BUG at fs/jbd/tr...
May 5, 5:02 pm 2008
Geert Uytterhoeven
Problem mounting ext2 using ext3?
Hi, When trying today's kernel (f74d505b58d36ceeef10e459094f0eb760681165) on ARAnyM (emulated m68k Atari), I get | Unable to handle kernel NULL pointer dereference at virtual address 000000b4 | Oops: 00000000 | Modules linked in: | PC: [<000aad9e>] ext3_sync_fs+0x16/0x4a | SR: 2304 SP: 00c09cc0 a2: 00c07a80 | d0: 00000001 d1: 00002300 d2: 00000002 d3: 00677600 | d4: 00677752 d5: 006776d2 a0: 00000000 a1: 00677600 | Process swapper (pid: 1, task=00c07a80) | Frame for...
May 5, 5:11 pm 2008
Theodore Tso
Re: Problem mounting ext2 using ext3?
I can confirm this as a regression. You don't even need to mount it as a root filesystem, or do this on an 68k system. On my x86 system, using a kernel based off of git commit: afa26be8 (6 commits after 2.6.26-rc1), mounting an ext3 filesystem, you can cause an oops by taking an ext2 filesystem and forcing a mount as ext3, "mount -t ext3 /dev/closure/textext2fs /mnt"). (see below for my oops). This does not occur with a kernel based off of 2.6.25, so it's a definite regression. Looks like th...
May 5, 6:26 pm 2008
Pavel Machek
w35und: driver now down to 16Kloc, and actually works a bit
Hi! Ok, code is still extremely ugly, but at least it uses softmac (and does not carry its own 802.11 layer), and now actually works well enough to do ssh. It does not work well enough to survive tcpspray. Pavel -- (english) http://www.livejournal.com/~pavelmachek (cesky, pictures) http://atrey.karlin.mff.cuni.cz/~pavel/picture/horses/blog.html
May 5, 5:01 pm 2008
Johannes Berg
Re: w35und: driver now down to 16Kloc, and actually works a ...
why not mac80211? softmac has been deleted johannes
May 5, 5:02 pm 2008
Johannes Berg
Re: w35und: driver now down to 16Kloc, and actually works a ...
Never mind, a peek inside tells me it does use mac80211. However, the code gives me the creeps so I won't look any further. johannes
May 5, 5:31 pm 2008
Pavel Machek
Re: w35und: driver now down to 16Kloc, and actually works a ...
It uses mac80211, or whatever softmac stack is present in 2.6.25. Sorry for confusion. Pavel -- (english) http://www.livejournal.com/~pavelmachek (cesky, pictures) http://atrey.karlin.mff.cuni.cz/~pavel/picture/horses/blog.html --
May 5, 5:32 pm 2008
Pavel Machek
w35und: fixed nasty stack overflow, I can actually ssh over ...
Removed nasty stack overflow, and got transmit of big packets to work. I can now actually do ssh over softmac-based driver. Unindent code to make it more readable. --- commit 0cfb0fd5cde408c154de69fa1c5521d5288ca506 tree 2814afd5b2b385bd3885c2095e94f03ca7dd8e20 parent 5b251c6315097d5f9ab5d30c43813fe74c1db4e4 author Pavel <pavel@amd.ucw.cz> Mon, 05 May 2008 22:40:29 +0200 committer Pavel <pavel@amd.ucw.cz> Mon, 05 May 2008 22:40:29 +0200 arch/x86/kernel/traps_32.c ...
May 5, 4:56 pm 2008
Matthias Kaehlcke
[PATCH] pxafb: Convert ctrlr_sem in a mutex
pxafb: The semaphore ctrlr_sem is used as a mutex. Convert it to the mutex API. Signed-off-by: Matthias Kaehlcke <matthias@kaehlcke.net> -- diff --git a/drivers/video/pxafb.c b/drivers/video/pxafb.c index 3ab6e3d..a63b77b 100644 --- a/drivers/video/pxafb.c +++ b/drivers/video/pxafb.c @@ -40,6 +40,7 @@ #include <linux/clk.h> #include <linux/err.h> #include <linux/completion.h> +#include <linux/mutex.h> #include <linux/kthread.h> #include <linux/...
May 5, 4:50 pm 2008
Matthias Kaehlcke
[PATCH] ARM: OMAP1: N770: Convert audio_pwr_sem in a mutex
ARM: OMAP1: N770: The semaphore audio_pwr_sem is used as a mutex. Convert it to the mutex API Signed-off-by: Matthias Kaehlcke <matthias@kaehlcke.net> -- diff --git a/arch/arm/mach-omap1/board-nokia770.c b/arch/arm/mach-omap1/board-nokia770.c index bcb984f..db235ad 100644 --- a/arch/arm/mach-omap1/board-nokia770.c +++ b/arch/arm/mach-omap1/board-nokia770.c @@ -202,7 +202,7 @@ static struct omap_board_config_kernel nokia770_config[] __initdata = { #define AMPLIFIER_CTRL_GPIO 58 sta...
May 5, 4:31 pm 2008
Holger Macht
[PATCH] bay: Exit if notify handler cannot be installed
If acpi_install_notify_handler() for a bay device fails, the bay driver is superfluous. Most likely, another driver (like libata) is already caring about this device anyway. Furthermore, register_hotplug_dock_device(acpi_handle) from the dock driver must not be called twice with the same handler. So clean up and exit. Signed-off-by: Holger Macht <hmacht@suse.de> --- diff --git a/drivers/acpi/bay.c b/drivers/acpi/bay.c index d2fc941..ce9038f 100644 --- a/drivers/acpi/bay.c +++ b/drivers/a...
May 5, 4:25 pm 2008
Pavel Machek
w35und: some more code removal
Remove some more unneccessary code --- commit 5b251c6315097d5f9ab5d30c43813fe74c1db4e4 tree 5ca21582f55886d5f0249f7ca139687450024581 parent e44ccdabb97fa4a6cdc1a95adcad7bcc469d0c16 author Pavel <pavel@amd.ucw.cz> Mon, 05 May 2008 22:08:51 +0200 committer Pavel <pavel@amd.ucw.cz> Mon, 05 May 2008 22:08:51 +0200 drivers/net/wireless/winbond/winbondport/mds.c | 46 +++----------------- drivers/net/wireless/winbond/winbondport/wblinux.c | 8 +-- 2 files changed, 11 insertion...
May 5, 4:09 pm 2008
Johannes Berg
Re: w35und: some more code removal
Let me guess, you're using git-am too? :P johannes
May 5, 4:17 pm 2008
Pavel Machek May 5, 4:21 pm 2008
Johannes Berg
Re: w35und: some more code removal
You must be very bored ;) The delme.gz patch creates like a million empty files :) johannes
May 5, 5:26 pm 2008
Johannes Berg
Re: w35und: some more code removal
Seriously though, we (as inhabitants of linux-wireless) have no context for these patches, so I hope you're not expecting us to actually look at them. johannes
May 5, 4:23 pm 2008
Pavel Machek
Re: w35und: some more code removal
I mainly want them archived at public place, and maybe let others know that I'm working on this. Context is at http://code.google.com/p/winbondport/ . I hope to get something that can be merged one day; any help with cleaning the code is very welcome. I believe code is now in shape where it can be incrementally cleaned up for a merge, then features can be added back... (Currently it is locked to single channel at single speed). Pavel -- (english) [ message continues ]
" title="http://www.livejournal.com/~pavelma...">http://www.livejournal.com/~pavelma...
May 5, 5:13 pm 2008
David Miller
china email failures...
Folks, if you have friends in China, you may let them know that we've been increasing seeing site-wide bounce problems lasting days here at vger that require us to remove lots of people from the lists. This isn't isolated to one or two sites, it's been seen for anything from yahoo.com.cn to fujitsu.com.cn The error is always the same: User not local; please try <forward-path> and every recipient at the site fails this way. I don't know what causes this, or why it's seemingly only...
May 5, 4:07 pm 2008
David Miller
Re: + git-net-git-rejects.patch added to -mm tree
From: akpm@linux-foundation.org What happened here? Did you apply Ingo's IRDA build fixup patches, like I did, and clean them up or change them in some way? --
May 5, 3:51 pm 2008
Andrew Morton
Re: + git-net-git-rejects.patch added to -mm tree
On Mon, 05 May 2008 12:51:18 -0700 (PDT) I'm still working out how to incorporate linux-next so I didn't really look at the actual specfics of this problem. I noticed that there were rather a lot of changes in git+ssh://master.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6.git which are not in linux-next, perhaps due to time lag. So I generated a diff between linux-next and net-2.6.git using my rather wonky script to do that. This script does tend to muck things up sometimes. Then on to...
May 5, 4:09 pm 2008
David Miller
Re: + git-net-git-rejects.patch added to -mm tree
From: Andrew Morton <akpm@linux-foundation.org> Andrew, I think you simply have to "let go" of one side or the other. If you're going to base on top of linux-next, then let it run it's course and don't try to suck in the GIT trees on top of that which linux-next takes already. --
May 5, 5:04 pm 2008
previous daytodaynext day
May 4, 2008May 5, 2008May 6, 2008
speck-geostationary