[patch] minix zmap block counts calculation fix

2014-08-03 Thread Qi Yong
9 14:50:26 2011 -0400 This patch corrects that zmap blocks calculation and tidy a printk message while at it. Signed-off-by: Qi Yong -- Qi Yong diff --git a/fs/minix/bitmap.c b/fs/minix/bitmap.c index 4bc50da..742942a 100644 --- a/fs/minix/bitmap.c +++ b/fs/minix/bitmap.c @@ -96,7 +96,7 @@

[patch] set_page_refcounted VM_BUG_ON fix

2007-12-13 Thread Qi Yong
Hello, The current PageTail semantic is that a PageTail page is first a PageCompound page. So remove the redundant PageCompound test in set_page_refcounted(). Signed-off-by: Qi Yong <[EMAIL PROTECTED]> --- diff --git a/fs/fs-writeback.c b/fs/fs-writeback.c diff --git a/mm/internal.

[patch] skip writing data pages when inode is under I_SYNC

2007-12-02 Thread Qi Yong
iting entirely. Otherwise, we are double calling do_writepages() Signed-off-by: Qi Yong <[EMAIL PROTECTED]> diff --git a/fs/fs-writeback.c b/fs/fs-writeback.c index 0fca820..4f8ec63 100644 --- a/fs/fs-writeback.c +++ b/fs/fs-writeback.c @@ -334,9 +334,6 @@ __writeback_single_inode(struct i

[patch] kill an unused PTR_ERR in bdev_cache_init

2007-11-30 Thread Qi Yong
Kill an old unused PTR_ERR in bdev_cache_init(). Signed-off-by: Qi Yong <[EMAIL PROTECTED]> diff --git a/fs/block_dev.c b/fs/block_dev.c index 993f78c..b5fa625 100644 --- a/fs/block_dev.c +++ b/fs/block_dev.c @@ -534,7 +534,6 @@ void __init bdev_cache_init(void) i

Re: [PATCH] swsusp: Use platform mode by default

2007-10-16 Thread Qi Yong
On Wed, Oct 17, 2007 at 10:46:12AM +0800, Qi Yong wrote: > On 12/05/2007, Linus Torvalds <[EMAIL PROTECTED]> wrote: > > > > > > On Fri, 11 May 2007, Rafael J. Wysocki wrote: > > > > > > We're working on fixing the breakage, but currently it'

Re: [PATCH] swsusp: Use platform mode by default

2007-10-16 Thread Qi Yong
r/disk.c > @@ -60,9 +60,9 @@ void hibernation_set_ops(struct hibernation_ops *ops) > } > mutex_lock(&pm_mutex); > hibernation_ops = ops; > - if (ops) > - hibernation_mode = HIBERNATION_PLATFORM; > - else if (hibernation_mode == HIBERNATION_

Re: [PATCH] swsusp: Use platform mode by default

2007-10-16 Thread Qi Yong
; (Are there machines with broken ACPI BIOS around? ;-) > > Your additional "fall back to shutdown if !(ops)"-fix looks very sane, > however, and is definitely a good idea. The key point is "fall back to shutdown _only_ if !ops, otherwise don't touch hibernation_mode".

Re: [patch] add printk_ratelimit to atkbd_interrupt

2007-06-20 Thread Qi Yong
Dmitry Torokhov wrote: On Tuesday 19 June 2007 21:17, Qi Yong wrote: Add printk_ratelimit() to atkbd_interrupt(). I get "Spurious ACK" messages flushing on my screen. This patch helps to read the screen. Will apply, thank you. Do you have any idea why you are getting s

[patch] add printk_ratelimit to atkbd_interrupt

2007-06-19 Thread Qi Yong
Add printk_ratelimit() to atkbd_interrupt(). I get "Spurious ACK" messages flushing on my screen. This patch helps to read the screen. Signed-off-by: Qi Yong <[EMAIL PROTECTED]> -- diff --git a/drivers/input/keyboard/atkbd.c b/drivers/input/keyboard/atkbd.c index be1fe46..13e6

Re: [RFD] Documentation/HOWTO translated into Japanese

2007-06-11 Thread Qi Yong
f you want to update "HOWTO", please update English version first. Don't fork from original if you update this file. Last Updated: 2007/06/04 Version: 2.6.21 == not worth writing ? -Kame -- Qi Yong - To unsubscribe from this list: send the line "unsubscribe linux-kernel"

Re: [PATCH] add a trivial patch style checker

2007-05-28 Thread Qi Yong
to the latest linus git tree. -10) Include PATCH in the subject +11) Include PATCH in the subject Due to high e-mail traffic to Linus, and to linux-kernel, it is common convention to prefix your subject line with [PATCH]. This lets Linus or use "patch", to be easier to read.

Re: Linux v2.6.22-rc3

2007-05-27 Thread Qi Yong
x/linux-2.6/arch/arm/plat-s3c24xx/devs.c:411: error: 'S3C2443_SZ_HSMMC' undeclared here (not in a function) -- Qi Yong - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/

Re: [PATCH - 1/1] Documentation/HOWTO

2007-05-25 Thread Qi Yong
On Thu, May 24, 2007 at 08:49:12AM -0700, Linus Torvalds wrote: > > > On Thu, 24 May 2007, Diego Calleja wrote: > > El Thu, 24 May 2007 17:45:04 +0800, "Qi Yong" <[EMAIL PROTECTED]> escribió: > > > > D'oh, it seems the patch was picked from the

Re: [PATCH - 1/1] Documentation/HOWTO

2007-05-24 Thread Qi Yong
ng Signed-off-by: Diego Calleja <[EMAIL PROTECTED]> Signed-off-by: Andrew Morton <[EMAIL PROTECTED]> Signed-off-by: Linus Torvalds <[EMAIL PROTECTED]> -- Qi Yong - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/

Re: syscall: sys_promote

2005-08-31 Thread Qi Yong
Alan Cox wrote: On Llu, 2005-08-29 at 11:54 +0800, qiyong wrote: We can ignore it safely. sys_promote is a different approach from selinux. sys_promote is to let sysadmin manually manipulate a running process, You can ignore the patch easily enough. Ignoring the locking doesn't wor

Re: syscall: sys_promote

2005-08-31 Thread Qi Yong
Ulrich Drepper wrote: On 8/29/05, Alan Cox <[EMAIL PROTECTED]> wrote: Fixing it might be useful in some obscure cases anyway - POSIX threads might benefit from it too, providing the functionality of changing all thread uids at once isnt triggered for sensible threaded app behaviour. I