| From | Subject | Date |
|---|---|---|
| Harvey Harrison | [PATCH] sh: module.c use kernel unaligned helpers
Replace the COPY_UNALIGNED_WORD helper.
Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com>
---
arch/sh/kernel/module.c | 39 +++++----------------------------------
1 files changed, 5 insertions(+), 34 deletions(-)
diff --git a/arch/sh/kernel/module.c b/arch/sh/kernel/module.c
index b3d0a03..5482e65 100644
--- a/arch/sh/kernel/module.c
+++ b/arch/sh/kernel/module.c
@@ -30,6 +30,7 @@
#include <linux/fs.h>
#include <linux/string.h>
#include <linux/kernel.h>...
| May 28, 7:38 pm 2008 |
| Harvey Harrison | [PATCH] m32r: module.c use kernel-provided unaligned helpers
Replace the hand-rolled COPY_UNALIGNED_WORD/HWORD
This also possibly fixes a bug in the R_M32R_16_RELA case as it was reading
2 bytes from hlocation, applying the relocation, but writing back 4 bytes
(perhaps it meant to use COPY_UNALIGNED_HWORD rather than _WORD) two bytes of
which were not calculated. This patch writes back only two bytes as hvalue
is a short.
Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com>
---
arch/m32r/kernel/module.c | 150 ++++++++++++++++------------...
| May 28, 7:30 pm 2008 |
| Hugh Dickins | [PATCH] tmpfs: support aio
We have a request for tmpfs to support the AIO interface: easily done,
no more than replacing the old shmem_file_read by shmem_file_aio_read,
cribbed from generic_file_aio_read. (In 2.6.25 its write side was
already changed to use generic_file_aio_write.)
Tests out fine with LTP's ltp-aiodio.sh, given hacks (not included)
to support O_DIRECT. tmpfs cannot honestly support O_DIRECT: its
cache-avoiding-IO nature is at odds with direct IO-avoiding-cache.
Signed-off-by: Hugh Dickins <hugh@verita...
| May 28, 7:13 pm 2008 |
| Andrew Morton | Re: [PATCH] tmpfs: support aio
On Thu, 29 May 2008 00:13:35 +0100 (BST)
hm. This version:
static ssize_t shmem_file_aio_read(struct kiocb *iocb,
const struct iovec *iov, unsigned long nr_segs, loff_t pos)
{
struct file *filp = iocb->ki_filp;
ssize_t retval;
unsigned long seg;
size_t count;
loff_t *ppos = &iocb->ki_pos;
count = 0;
retval = generic_segment_checks(iov, &nr_segs, &count, VERIFY_WRITE);
if (retval)
return retval;
if (count == 0)
return 0;
retval = 0;
for (seg = 0; s...
| May 28, 7:58 pm 2008 |
| Eugene_Bordenkircher | BUG/OOPS: Double Lock in fsl_usb2_udc.c
Hello All,
I have recently found an instance in the drivers/usb/gadget/fsl_usb2_udc.c
file that causes the udc->lock spinlock to be taken twice. The problem
arises when you disconnect from the DR port and then reconnect. The
interrupt routine for the driver receives a 'reset' event which takes the
lock and calls reset_queues() which in turn calls
udc->driver->disconnect(). Eventually, that disconnect() call comes back
up to the fsl_usb2_udc driver and calls fsl_ep_disable() which...
| May 28, 6:25 pm 2008 |
| Raz | mmap over HPET - 32 bit wrap arround
I am wondering wether someone can explain how hpet behaves. The bellow
is a short program that reads from a mmaped /dev/hpet the time. I am
running it and it looks that afer ~296 seconds the counter resets . I
AM RUNNING 64bi KERNEL(2.6.18-8.el5) and reading a 64BIT VARIABLE.
my hpet is 14MHZ, so I am guessing a 32bit wraparound ( ~296 * 14Mhz
) = MAX_INT . but why ?
thank you
raz
#include <stdint.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>...
| May 28, 6:19 pm 2008 |
| Lee Revell | Re: mmap over HPET - 32 bit wrap arround
HPET counter can be either 32 or 64 bit. Check COUNT_SIZE_CAP.
http://www.intel.com/hardwaredesign/hpetspec_1.pdf
Lee
--
| May 28, 7:57 pm 2008 |
| Doug Reiland | KBUILD_DEFCONFIG change
The following used to work:
ARCH=ia64 KBUILD_DEFCONFIG=bigsur_defconfig make defconfig
Now 2.6.25 makes you do:
ARCH=ia64 make KBUILD_DEFCONFIG=bigsur_defconfig defconfig
Is this my intent?
It seems like the arch/<xxxx>/Makefile files should be:
KBUILD_DEFCONFIG ?= generic_defconfig
Instead of
KBUILD_DEFCONFIG := generic_defconfig
--
| May 28, 6:05 pm 2008 |
| Sam Ravnborg | Re: KBUILD_DEFCONFIG change
Use the shorter version:
ARCH=ia64 make bigsur_defconfig
There is no need to fiddle with KBUILD_DEFCONFIG.
KBUILD_DEFCONFIG is a pure internal thing that
may change without notice.
Sam
--
| May 28, 7:44 pm 2008 |
| John W. Linville | pull request: wireless-2.6 2008-05-28
David,
Another round of fixes for 2.6.26 follows...
Please let me know if there are problems!
Thanks,
John
---
Individual patches are available here:
http://www.kernel.org/pub/linux/kernel/people/linville/wireless-2.6/
---
The following changes since commit 289c79a4bd350e8a25065102563ad1a183d1b402:
Patrick McHardy (1):
vlan: Use bitmask of feature flags instead of seperate feature bits
are available in the git repository at:
git://git.kernel.org/pub/scm/linux/...
| May 28, 5:38 pm 2008 |
| Johannes Berg | Re: pull request: wireless-2.6 2008-05-28
What about
[PATCH] b43legacy: fix build errors when DMA or PIO are not selected
johannes
| May 28, 6:11 pm 2008 |
| Jan Kara | [PATCH] Silence warnings about non-uptodate buffers
Hello,
the series of patches below gets rid of warning messages in mark_buffer_dirty()
when underlying block device becomes unavailable. Andrew, would you merge them
please?
Honza
--
| May 28, 5:56 pm 2008 |
| Jan Kara | Re: [PATCH] Silence warnings about non-uptodate buffers
And just for reference a similar patch for UDF which I'll merge through
my git tree.
Honza
--
Jan Kara <jack@suse.cz>
SUSE Labs, CR
---
From 756bc361a065b65df9977c2632472f587659a6f7 Mon Sep 17 00:00:00 2001
From: Jan Kara <jack@suse.cz>
Date: Wed, 28 May 2008 23:39:19 +0200
Subject: [PATCH] udf: Silence warnings about non-uptodate buffers
When underlying block device becomes unavailable (e.g. someone pulling an
USB stick from under us), kernel produces warning about...
| May 28, 6:06 pm 2008 |
| Jan Kara | [PATCH] ext4: Silence warnings about non-uptodate buffers
When underlying block device becomes unavailable (e.g. someone pulling an
USB stick from under us), kernel produces warning about non-uptodate buffer
(superblock) being marked dirty. Silence these warnings by making buffer
uptodate before marking it dirty.
Signed-off-by: Jan Kara <jack@suse.cz>
---
fs/ext4/super.c | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/fs/ext4/super.c b/fs/ext4/super.c
index 09d9359..298c94f 100644
--- a/fs/ext4/super.c
+++ b/fs/ext4/s...
| May 28, 5:56 pm 2008 |
| Jan Kara | [PATCH] jbd2: Silence warnings about non-uptodate buffers
When underlying block device becomes unavailable (e.g. someone pulling an
USB stick from under us), kernel produces warning about non-uptodate buffer
(superblock) being marked dirty. Silence these warnings by making buffer
uptodate before marking it dirty.
Signed-off-by: Jan Kara <jack@suse.cz>
---
fs/jbd2/journal.c | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/fs/jbd2/journal.c b/fs/jbd2/journal.c
index 2e24567..55de8f7 100644
--- a/fs/jbd2/journal.c
+++ b/fs...
| May 28, 5:56 pm 2008 |
| Jan Kara | [PATCH] jbd: Silence warnings about non-uptodate buffers
When underlying block device becomes unavailable (e.g. someone pulling an
USB stick from under us), kernel produces warning about non-uptodate buffer
(superblock) being marked dirty. Silence these warnings by making buffer
uptodate before marking it dirty.
Signed-off-by: Jan Kara <jack@suse.cz>
---
fs/jbd/journal.c | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/fs/jbd/journal.c b/fs/jbd/journal.c
index b99c3b3..9303608 100644
--- a/fs/jbd/journal.c
+++ b/fs/jbd...
| May 28, 5:56 pm 2008 |
| Jan Kara | [PATCH] ext3: Silence warnings about non-uptodate buffers
When underlying block device becomes unavailable (e.g. someone pulling an
USB stick from under us), kernel produces warning about non-uptodate buffer
(superblock) being marked dirty. Silence these warnings by making buffer
uptodate before marking it dirty.
Signed-off-by: Jan Kara <jack@suse.cz>
---
fs/ext3/super.c | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/fs/ext3/super.c b/fs/ext3/super.c
index fe3119a..19d2fb4 100644
--- a/fs/ext3/super.c
+++ b/fs/ext3/s...
| May 28, 5:56 pm 2008 |
| Jan Kara | [PATCH] ext2: Silence warnings about non-uptodate buffers
When underlying block device becomes unavailable (e.g. someone pulling an
USB stick from under us), kernel produces warning about non-uptodate buffer
(superblock) being marked dirty. Silence these warnings by making buffer
uptodate before marking it dirty.
Signed-off-by: Jan Kara <jack@suse.cz>
---
fs/ext2/super.c | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/fs/ext2/super.c b/fs/ext2/super.c
index ef50cbc..2941bc3 100644
--- a/fs/ext2/super.c
+++ b/fs/ext2/s...
| May 28, 5:56 pm 2008 |
| Bartlomiej Zolnierki... | [PATCH 00/21] ide: convert ide-timing.h to ide-timings.c lib...
This (fairly obvious/trivial) patchset converts drivers/ide/ide-timing.h
into ide-timings.c library (enabled by host drivers that want to use it by
selecting CONFIG_IDE_TIMINGS config option) and updates host drivers still
using ide_pio_timings[] to use ide_timing_find_mode() instead.
Also as a bonus it moves PIO blacklist from ide-lib.c to ide-pio-blacklist.c.
diffstat:
drivers/ide/Kconfig | 16 +
drivers/ide/Makefile | 4
drivers/ide/arm/palm_bk3710.c | 2...
| May 28, 5:39 pm 2008 |
| Bartlomiej Zolnierki... | [PATCH 20/21] ide: remove no longer used ide_pio_timings[]
Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
---
drivers/ide/ide-lib.c | 17 -----------------
include/linux/ide.h | 8 --------
2 files changed, 25 deletions(-)
Index: b/drivers/ide/ide-lib.c
===================================================================
--- a/drivers/ide/ide-lib.c
+++ b/drivers/ide/ide-lib.c
@@ -76,23 +76,6 @@ static u8 ide_rate_filter(ide_drive_t *d
}
/*
- * Standard (generic) timings for PIO modes, from ATA2 specification.
- * Thes...
| May 28, 5:43 pm 2008 |
| Bartlomiej Zolnierki... | [PATCH 21/21] ide: move PIO blacklist to ide-pio-blacklist.c
Move PIO blacklist to ide-pio-blacklist.c.
While at it:
- fix comment
- fix whitespace damage
There should be no functional changes caused by this patch.
Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
---
drivers/ide/Makefile | 3 -
drivers/ide/ide-lib.c | 96 ----------------------------------------
drivers/ide/ide-pio-blacklist.c | 94 +++++++++++++++++++++++++++++++++++++++
include/linux/ide.h | 2
4 files changed, 98 ...
| May 28, 5:43 pm 2008 |
| Bartlomiej Zolnierki... | [PATCH 19/21] ide: move ide_pio_cycle_time() to ide-timings.c
All ide_pio_cycle_time() users already select CONFIG_IDE_TIMINGS
so move the function from ide-lib.c to ide-timings.c.
While at it:
- convert ide_pio_cycle_time() to use ide_timing_find_mode()
- cleanup ide_pio_cycle_time() a bit
There should be no functional changes caused by this patch.
Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
---
drivers/ide/ide-lib.c | 23 -----------------------
drivers/ide/ide-timings.c | 22 ++++++++++++++++++++++
include/linux/...
| May 28, 5:43 pm 2008 |
| Bartlomiej Zolnierki... | [PATCH 18/21] ide-pmac: convert to use ide_timing_find_mode()
Also update my Copyrights while at it.
There should be no functional changes caused by this patch.
Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
---
drivers/ide/ppc/pmac.c | 13 ++++++-------
1 file changed, 6 insertions(+), 7 deletions(-)
Index: b/drivers/ide/ppc/pmac.c
===================================================================
--- a/drivers/ide/ppc/pmac.c
+++ b/drivers/ide/ppc/pmac.c
@@ -5,7 +5,7 @@
* for doing DMA.
*
* Copyright (C) 1998-2003 Pa...
| May 28, 5:43 pm 2008 |
| Bartlomiej Zolnierki... | [PATCH 17/21] ide-mpc8xx: convert to use ide_timing_find_mod...
Also fix (disabled) debugging code while at it.
There should be no functional changes caused by this patch.
Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
---
drivers/ide/ppc/mpc8xx.c | 33 +++++++++++++--------------------
1 file changed, 13 insertions(+), 20 deletions(-)
Index: b/drivers/ide/ppc/mpc8xx.c
===================================================================
--- a/drivers/ide/ppc/mpc8xx.c
+++ b/drivers/ide/ppc/mpc8xx.c
@@ -89,7 +89,7 @@ ide_ioport_desc_...
| May 28, 5:43 pm 2008 |
| Bartlomiej Zolnierki... | [PATCH 16/21] sl82c105: convert to use ide_timing_find_mode()
There should be no functional changes caused by this patch.
Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
---
drivers/ide/Kconfig | 1 +
drivers/ide/pci/sl82c105.c | 3 ++-
2 files changed, 3 insertions(+), 1 deletion(-)
Index: b/drivers/ide/Kconfig
===================================================================
--- a/drivers/ide/Kconfig
+++ b/drivers/ide/Kconfig
@@ -704,6 +704,7 @@ config BLK_DEV_SIS5513
config BLK_DEV_SL82C105
tristate "Winbond SL...
| May 28, 5:42 pm 2008 |
| Bartlomiej Zolnierki... | [PATCH 15/21] opti621: convert to use ide_timing_find_mode()
There should be no functional changes caused by this patch.
Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
---
drivers/ide/Kconfig | 1 +
drivers/ide/pci/opti621.c | 10 +++++-----
2 files changed, 6 insertions(+), 5 deletions(-)
Index: b/drivers/ide/Kconfig
===================================================================
--- a/drivers/ide/Kconfig
+++ b/drivers/ide/Kconfig
@@ -426,6 +426,7 @@ config BLK_DEV_GENERIC
config BLK_DEV_OPTI621
tristate "OPTi ...
| May 28, 5:42 pm 2008 |
| Bartlomiej Zolnierki... | [PATCH 14/21] cy82c693: convert to use ide_timing_find_mode()
There should be no functional changes caused by this patch.
Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
---
drivers/ide/Kconfig | 1 +
drivers/ide/pci/cy82c693.c | 9 ++++-----
2 files changed, 5 insertions(+), 5 deletions(-)
Index: b/drivers/ide/Kconfig
===================================================================
--- a/drivers/ide/Kconfig
+++ b/drivers/ide/Kconfig
@@ -510,6 +510,7 @@ config BLK_DEV_TRIFLEX
config BLK_DEV_CY82C693
tristate "...
| May 28, 5:42 pm 2008 |
| Bartlomiej Zolnierki... | [PATCH 13/21] cmd64x: convert to use ide_timing_find_mode()
There should be no functional changes caused by this patch.
Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
---
drivers/ide/Kconfig | 1 +
drivers/ide/pci/cmd64x.c | 6 +++---
2 files changed, 4 insertions(+), 3 deletions(-)
Index: b/drivers/ide/Kconfig
===================================================================
--- a/drivers/ide/Kconfig
+++ b/drivers/ide/Kconfig
@@ -495,6 +495,7 @@ config BLK_DEV_ATIIXP
config BLK_DEV_CMD64X
tristate "CMD64{3|6|...
| May 28, 5:42 pm 2008 |
| Bartlomiej Zolnierki... | [PATCH 12/21] cmd640: convert to use ide_timing_find_mode()
There should be no functional changes caused by this patch.
Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
---
drivers/ide/Kconfig | 1 +
drivers/ide/pci/cmd640.c | 8 ++++++--
2 files changed, 7 insertions(+), 2 deletions(-)
Index: b/drivers/ide/Kconfig
===================================================================
--- a/drivers/ide/Kconfig
+++ b/drivers/ide/Kconfig
@@ -329,6 +329,7 @@ config BLK_DEV_PLATFORM
config BLK_DEV_CMD640
tristate "CMD640 ch...
| May 28, 5:42 pm 2008 |
| Bartlomiej Zolnierki... | [PATCH 11/21] alim15x3: convert to use ide_timing_find_mode()
There should be no functional changes caused by this patch.
Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
---
drivers/ide/Kconfig | 1 +
drivers/ide/pci/alim15x3.c | 6 ++----
2 files changed, 3 insertions(+), 4 deletions(-)
Index: b/drivers/ide/Kconfig
===================================================================
--- a/drivers/ide/Kconfig
+++ b/drivers/ide/Kconfig
@@ -458,6 +458,7 @@ config BLK_DEV_AEC62XX
config BLK_DEV_ALI15X3
tristate "ALI ...
| May 28, 5:42 pm 2008 |
| Bartlomiej Zolnierki... | [PATCH 10/21] qd65xx: convert to use ide_timing_find_mode()
There should be no functional changes caused by this patch.
Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
---
drivers/ide/Kconfig | 1 +
drivers/ide/legacy/qd65xx.c | 3 ++-
2 files changed, 3 insertions(+), 1 deletion(-)
Index: b/drivers/ide/Kconfig
===================================================================
--- a/drivers/ide/Kconfig
+++ b/drivers/ide/Kconfig
@@ -1018,6 +1018,7 @@ config BLK_DEV_HT6560B
config BLK_DEV_QD65XX
tristate "QDI Q...
| May 28, 5:42 pm 2008 |
| Bartlomiej Zolnierki... | [PATCH 09/21] ht6560b: convert to use ide_timing_find_mode()
There should be no functional changes caused by this patch.
Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
---
drivers/ide/Kconfig | 1 +
drivers/ide/legacy/ht6560b.c | 7 +++----
2 files changed, 4 insertions(+), 4 deletions(-)
Index: b/drivers/ide/Kconfig
===================================================================
--- a/drivers/ide/Kconfig
+++ b/drivers/ide/Kconfig
@@ -1008,6 +1008,7 @@ config BLK_DEV_DTC2278
config BLK_DEV_HT6560B
tristat...
| May 28, 5:41 pm 2008 |
| Bartlomiej Zolnierki... | [PATCH 08/21] ali14xx: convert to use ide_timing_find_mode()
There should be no functional changes caused by this patch.
Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
---
drivers/ide/Kconfig | 1 +
drivers/ide/legacy/ali14xx.c | 3 ++-
2 files changed, 3 insertions(+), 1 deletion(-)
Index: b/drivers/ide/Kconfig
===================================================================
--- a/drivers/ide/Kconfig
+++ b/drivers/ide/Kconfig
@@ -988,6 +988,7 @@ config BLK_DEV_4DRIVES
config BLK_DEV_ALI14XX
tristate "ALI ...
| May 28, 5:40 pm 2008 |
| Bartlomiej Zolnierki... | [PATCH 07/21] ide: convert ide-timing.h to ide-timings.c lib...
* Don't include ide-timing.h in cs5535 and sis5513 host drivers
(they don't need it currently).
* Convert ide-timing.h to ide-timings.c library and add CONFIG_IDE_TIMINGS
config option to be selected by host drivers using the library.
While at it:
- fix ide_timing_find_mode() placement
There should be no functional changes caused by this patch.
Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
---
drivers/ide/Kconfig | 7 +
drivers/ide/Makefile ...
| May 28, 5:40 pm 2008 |
| Bartlomiej Zolnierki... | [PATCH 06/21] ide: checkpatch.pl fixes for ide-timing.h
Also fix placement of comments in ide_timing_compute() while at it.
There should be no functional changes caused by this patch
(md5sum was verified to be the same before/after the patch).
Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
---
drivers/ide/ide-timing.h | 93 ++++++++++++++++++++++++-----------------------
1 file changed, 48 insertions(+), 45 deletions(-)
Index: b/drivers/ide/ide-timing.h
===================================================================
---...
| May 28, 5:40 pm 2008 |
| Bartlomiej Zolnierki... | [PATCH 05/21] ide: remove XFER_* masks from ide-timing.h
* Check requested xfer mode against xfer modes instead of XFER_* masks
in ide_timing_compute() and cs5535.c::cs5535_set_speed().
* Remove XFER_[MODE,MWDMA,EPIO,PIO] masks.
There should be no functional changes caused by this patch.
Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
---
drivers/ide/ide-timing.h | 24 +++++++-----------------
drivers/ide/pci/cs5535.c | 4 +---
2 files changed, 8 insertions(+), 20 deletions(-)
Index: b/drivers/ide/ide-timing.h
=======...
| May 28, 5:40 pm 2008 |
| Bartlomiej Zolnierki... | [PATCH 04/21] ide: move some bits from ide-timing.h to <l...
Move struct ide_timing and IDE_TIMING_* defines to <linux/ide.h>
from drivers/ide/ide-timing.h.
While at it:
- use u8/u16 instead of short for struct ide_timing fields
- use enum for IDE_TIMING_*
There should be no functional changes caused by this patch.
Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
---
drivers/ide/ide-timing.h | 23 -----------------------
include/linux/ide.h | 28 ++++++++++++++++++++++++++++
2 files changed, 28 insertions(+), 23 ...
| May 28, 5:40 pm 2008 |
| Bartlomiej Zolnierki... | [PATCH 03/21] ide: use u8 for xfer modes in ide-timing.h
There should be no functional changes caused by this patch.
Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
---
drivers/ide/ide-timing.h | 11 ++++++-----
1 file changed, 6 insertions(+), 5 deletions(-)
Index: b/drivers/ide/ide-timing.h
===================================================================
--- a/drivers/ide/ide-timing.h
+++ b/drivers/ide/ide-timing.h
@@ -29,7 +29,7 @@
#include <linux/hdreg.h>
struct ide_timing {
- short mode;
+ u8 mode;
...
| May 28, 5:40 pm 2008 |
| Bartlomiej Zolnierki... | [PATCH 02/21] ide: remove unused XFER_UDMA_SLOW
Remove unused XFER_UDMA_SLOW from ide_timing[].
While at it:
- fix re-defining XFER_PIO_5 (no need to define it in ide-timing.h as
it is defined in <linux/ata.h> which is included by <linux/hdreg.h>)
- fix whitespace damage
There should be no functional changes caused by this patch.
Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
---
drivers/ide/ide-timing.h | 7 +------
1 file changed, 1 insertion(+), 6 deletions(-)
Index: b/drivers/ide/ide-timing...
| May 28, 5:40 pm 2008 |
| Bartlomiej Zolnierki... | [PATCH 01/21] ide: remove needless includes from ide-lib.c
Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
---
drivers/ide/ide-lib.c | 15 ---------------
1 file changed, 15 deletions(-)
Index: b/drivers/ide/ide-lib.c
===================================================================
--- a/drivers/ide/ide-lib.c
+++ b/drivers/ide/ide-lib.c
@@ -1,26 +1,11 @@
-#include <linux/module.h>
#include <linux/types.h>
#include <linux/string.h>
#include <linux/kernel.h>
-#include <linux/timer.h>
-#include...
| May 28, 5:39 pm 2008 |
| Theodore Ts'o | Call for nominations
[ This is the last message concerning the kernel summit that will be sent
to LKML; discussion should take place from henceforth on 2008 Kernel
Summit discuss list, and folks can subcribe by going to the URL:
https://lists.linux-foundation.org/mailman/listinfo/ksummit-2008-pc ]
Hi all,
As in previous years, the program committee will consider people from a
list of potential nominees. To quote from a message from Jonathan
Corbet documenting the process from previous years (with a few ligh...
| May 28, 5:34 pm 2008 |
| Dave Jones | Re: Call for nominations
On Wed, May 28, 2008 at 05:34:58PM -0400, Theodore Ts'o wrote:
>
> [ This is the last message concerning the kernel summit that will be sent
> to LKML; discussion should take place from henceforth on 2008 Kernel
> Summit discuss list, and folks can subcribe by going to the URL:
> https://lists.linux-foundation.org/mailman/listinfo/ksummit-2008-pc ]
That should be https://lists.linux-foundation.org/mailman/listinfo/ksummit-2008-discuss
of course. the -pc list is the list...
| May 28, 5:50 pm 2008 |
| Randy Dunlap | linux-next 20080528: XEN build error when no Power Mgt enabled
linux-next-20080528/drivers/xen/manage.c: In function 'xen_suspend':
linux-next-20080528/drivers/xen/manage.c:43: error: implicit declaration of function 'device_power_down'
linux-next-20080528/drivers/xen/manage.c:65: error: implicit declaration of function 'device_power_up'
linux-next-20080528/drivers/xen/manage.c: In function 'do_suspend':
linux-next-20080528/drivers/xen/manage.c:114: error: implicit declaration of function 'device_resume'
make[3]: *** [drivers/xen/manage.o] Error 1
---
~Randy...
| May 28, 5:38 pm 2008 |
| Jeremy Fitzhardinge | Re: linux-next 20080528: XEN build error when no Power Mgt e...
Thanks for the reminder. That was on my TODO list.
J
--
| May 28, 5:33 pm 2008 |
| Ondrej Zary | Oops during hibernation - two times the same one
Hello,
I'm using hibernation on my desktop machine every day instead of power off. It
mostly works but sometimes aborts with "no space left on device" error.
Closing some programs and trying again usually fixes it - but recently, I got
two oopses instead. I'm sending them because they're the same, only some
details are different. Does anyone know what might be wrong?
------------[ cut here ]------------
Kernel BUG at c015610b [verbose debug info unavailable]
invalid opcode: 0000 [#1]
Module...
| May 28, 5:23 pm 2008 |
| Rafael J. Wysocki | Re: Oops during hibernation - two times the same one
Thanks for the report, but I have no idea of what could go wrong.
--
"Premature optimization is the root of all evil." - Donald Knuth
--
| May 28, 6:09 pm 2008 |
| Andrew Morton | Re: Oops during hibernation - two times the same one
On Thu, 29 May 2008 00:09:36 +0200
Looks like this is
BUG_ON(inode->i_state == I_CLEAR);
Please do enable CONFIG_DEBUG_BUGVERBOSE. Turning off this stuff
Beats me. Somehow the swap device's blockdev inode got I_CLEAR set
while swsusp_write() was playing with it. Or during.
I guess we could add I_CLEAR checks on resume_bdev into
kernel/power/swap.c in various places.
Had there been any swapoffs before or during this suspend?
Does the above BUG only occur when swsusp encountered ...
| May 28, 6:29 pm 2008 |
| Fausto Richetti Blanco | Re: Pipe buffers' limit of 16 * 4K
I think you did not receive it so I'm sending again....
On Mon, May 26, 2008 at 2:43 PM, Fausto Richetti Blanco
--
| May 28, 5:22 pm 2008 |
| Jan Engelhardt | Re: Pipe buffers' limit of 16 * 4K
You could have a look at the tee(2) system call and see whether it helps
you a bit. Something along the lines of:
int pfd[2];
pipe(pfd); /* tee() wants an fd... */
tee(STDIN_FILENO, pfd[1], len, SPLICE_F_NONBLOCK);
read(pfd[0], ..., also in nonblock-mode)
Of course this also has a certain drawback, namely that the pipe will
only give you as much bytes as it carries, and no more than that,
because the write side of the pipe at STDIN_FILENO is currently
blocking exactly because the pipe i...
| May 28, 6:05 pm 2008 |
| James Kosin | Re: optimizing out inline functions
Another way would be to have:
static inline void some_debug_function(var1)
{
#ifdef KCONFIG_DEBUG_SOMETHING
something = var1;
printk(some debug text);
#endif
}
BUT, this probably violates some styling rules.
James
}
--
| May 28, 4:37 pm 2008 |
| previous day | today | next day |
|---|---|---|
| May 27, 2008 | May 28, 2008 | May 29, 2008 |
| Srivatsa Vaddagiri | containers (was Re: -mm merge plans for 2.6.23) |
| Greg KH | [GIT PATCH] driver core patches against 2.6.24 |
| Tarkan Erimer | Re: Dual-Licensing Linux Kernel with GPL V2 and GPL V3 |
| Benjamin Herrenschmidt | Re: [PATCH] Remove process freezer from suspend to RAM pathway |
git: | |
| Jarek Poplawski | [PATCH take 2] pkt_sched: Protect gen estimators under est_lock. |
| David Miller | [GIT]: Networking |
| Gerhard Pircher | 3c59x: shared interrupt problem |
| Gerrit Renker | [PATCH 27/37] dccp: Integration of dynamic feature activation - part 2 (server side) |
