[PATCH] tools/liblockdep: Fix linker error in case of cross compile.

2015-04-23 Thread Eunbong Song
If we try to cross compile liblockdep, even if we set the CROSS_COMPILE variable the linker error can occur because LD is not set with CROSS_COMPILE. This patch adds "LD" can be set automatically with CROSS_COMPILE variable so fixes linker error problem. Signed-off-by: Eunbong Song

Re: Re: [PATCH] tools/liblockdep: change current_obj from thread-local storage to non thread-local storage

2015-04-23 Thread Eunbong Song
> On 04/23/2015 02:55 AM, Eunbong Song wrote: >> current_obj is declared as a thread-local storage. >> This prevent to detect locking problem between multiple threads because >> each thread has it's own current_obj. liblockdep can only detect locking >> proble

[PATCH] tools/liblockdep: change current_obj from thread-local storage to non thread-local storage

2015-04-22 Thread Eunbong Song
ainly used for synchro nization of data between multiple threads. This patch changes current_obj to non thread-local storage. and current_obj.pid is getting from getpid system call. Signed-off-by: Eunbong Song --- tools/lib/lockdep/common.c |4 ++-- 1 files changed, 2 insertions(+), 2 dele

[Resend] [PATCH] tools/liblockdep: Fix compilation error.

2015-04-21 Thread Eunbong Song
Currently, liblockdep has compilation error. This causes from lockdep.c code changes. This patch fixes compilation error. Signed-off-by: Eunbong Song --- tools/lib/lockdep/uinclude/linux/kernel.h |3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/tools/lib/lockdep

[PATCH] tools/liblockdep: Fix compilation error.

2015-04-21 Thread Eunbong Song
ction 'lockdep_reset_lock': ../../../kernel/locking/lockdep.c:3994: error: 'hash_entry' undeclared (first use in this function) ../../../kernel/locking/lockdep.c:3994: error: expected ';' before '{' token This patch fixes this compilation error. Signe

[PATCH] staging: octeon-ethernet: disable load balance for receiving packet when CONFIG_RPS is enabled.

2014-10-29 Thread Eunbong Song
It's better disable load balance for receiving packet when CONFIG_RPS is enabled. If not, octeon-ethernet driver select CPU and then the rps select again CPU. It can be ipi interrupts overhead and packet reordering could be possible. Signed-off-by: Eunbong Song --- drivers/staging/o

[PATCH resend] mips: add arch_trigger_all_cpu_backtrace() function

2014-10-23 Thread Eunbong Song
_cpu_backtrace() for mips architecture. And this enables when softlockup_all_cpu_backtrace is equalt to 1 and softlock is occurred to dump all cpu's backtrace. Signed-off-by: Eunbong Song --- arch/mips/include/asm/irq.h |3 +++ arch/mips/kernel/process.c | 18 ++ 2 fil

Re: Re: [PATCH] mips: add arch_trigger_all_cpu_backtrace() function

2014-10-22 Thread Eunbong Song
>> This patch adds arch_trigger_all_cpu_backtrace() for mips architecture. > Don't forget your Signed-off-by I'm sorry fot this. >> +static void arch_dump_stack(void *info) >> +{ >> + struct pt_regs *regs; >> + >> + regs = get_irq_regs(); >> + >> + if(regs) >> + show_regs(regs); >> + >> +

Re: Re: [PATCH] mips: add arch_trigger_all_cpu_backtrace() function

2014-10-21 Thread Eunbong Song
> Hi Eubong, > one small question inline ... >> +void arch_trigger_all_cpu_backtrace(bool); +#define >> arch_trigger_all_cpu_backtrace arch_trigger_all_cpu_backtrace > What is the purpose of this define ? is this maybe a leftover from > some regex/cleanups ? Hi John. Actually, I just follow th

[PATCH] mips: add arch_trigger_all_cpu_backtrace() function

2014-10-21 Thread Eunbong Song
Currently, arch_trigger_all_cpu_backtrace() is defined in only x86 and sparc which has nmi interrupt. But in case of softlockup not a hardlockup, it could be possible to dump backtrace of all cpus. and this could be helpful for debugging. for example, if system has 2 cpus. CPU 0

Re: RE: [PATCH] lib : lz4 using put_unaligned_le16 instead of put_unaligned

2014-07-22 Thread Eunbong Song
> If your patch is applied, the data which is compressed > by your big-endian system won't be decompressed in other little-endian system. I can't understand this. Please, could you explain this more ? My patch just replaces put_unaligned with put_unaligned_le16. and this just write compression

Re: RE: [PATCH] lib : lz4 using put_unaligned_le16 instead of put_unaligned

2014-07-22 Thread Eunbong Song
Hello. >Can you check if this patch fix your problem also? Unfortunately your patch does not fix my problem. My test logs are as follow. I did the same test with lzo compression algorithm and with my patch, and these work well. debug_shell:/user> echo 1 > /sys/block/zram0/reset debug_shell:/us

Re: Re: Re: [PATCH] lib : lz4 using put_unaligned_le16 instead of put_unaligned

2014-07-21 Thread Eunbong Song
> So it's never worked? Yes, it's always failed to mount. > Did you test on a little endian machine after making this change? Unfortunately, i don't have little endian machine. So i couldn't test that. Additionaly, when lz4 compress calls lz4_compressctx() function and uses LZ4_WRITE_LITTLEENDI

Re: Re: [PATCH] lib : lz4 using put_unaligned_le16 instead of put_unaligned

2014-07-21 Thread Eunbong Song
> Odd line wrapping :( Sorry, for this. > Anyway, is this a new problem? Or something that has always been there > in this compression function? Actually, i have tested zram with lz4 functions in my board(mips64 big endian). Everytime i try to mount my ext4 zram image i have failed. After

[PATCH] lib : lz4 using put_unaligned_le16 instead of put_unaligned

2014-07-21 Thread Eunbong Song
ompression failed! err=-1, page=0" in mips bigendian machine. Signed-off-by: Eunbong Song --- lib/lz4/lz4defs.h |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/lib/lz4/lz4defs.h b/lib/lz4/lz4defs.h index abcecdc..dc7ef14 100644 --- a/lib/lz4/lz4defs.h +++ b/li

Re: Re: mips: math-emu: Fix compilation error ieee754.c

2014-06-11 Thread Eunbong Song
> What gcc version are you using? > Ralf I am using gcc 4.4.1. Thanks.

mips: math-emu: Fix compilation error ieee754.c

2014-06-11 Thread Eunbong Song
ieee754dp has bitfield member in struct without name. And this cause compilation error. This patch removes struct in ieee754dp declaration. So compilation error is fixed. Signed-off-by: Eunbong Song --- arch/mips/math-emu/ieee754.h | 20 1 files changed, 8 insertions

[PATCH] mips: Fix compile warnings of perf "tests/attr.c" on mips64.

2014-04-25 Thread Eunbong Song
On mips64, we by default include ' which results in __u64 being an unsigned long. This causes compile warnings which are treated as errors due to '-Werror'. This patch references commit e3541ec7. Signed-off-by: Eunbong Song --- arch/mips/include/uapi/asm/types.h |2 +- 1 f

[PATCH] MIPS: Octeon: Add PCIe2 support in arch_setup_msi_irq()

2014-04-11 Thread Eunbong Song
In arch_setup_msi_irq(), there is no case for PCIe2. So board which have PCIe2 functionality fails to boot with "Kernel panic - not syncing: arch_setup_msi_irq: Invalid octeon_dma_bar_type" message. This patch solve this problem. Signed-off-by: Eunbong Song --- arch/mips/pci/ms

tools/liblockdep: Build failure

2014-03-31 Thread Eunbong Song
There is tools/liblockdep build failure. I have been trying to find the cause and i found commit id 63f9a7fde715352e0769302527670542a664b981 is the casue. Author: Andi Kleen Date: Sat Feb 8 08:52:01 2014 +0100 asmlinkage: Make lockdep_sys_exit asmlinkage lockdep_sys_exit can be call

[PATCH] mtd: fsl_ifc_nand: Recover corrupted empty page for preventing read-only mount in UBIFS

2014-03-31 Thread Eunbong Song
safe because ecc controller can correct up to chip->ecc.strength bits. Signed-off-by: Eunbong Song --- drivers/mtd/nand/fsl_ifc_nand.c | 41 +++ 1 files changed, 41 insertions(+), 0 deletions(-) diff --git a/drivers/mtd/nand/fsl_ifc_nand.c b/drivers/mtd/nand/f

[PATCH] mtd: nand: make more readable panic_nand_wait_ready() and nand_wait_ready()

2014-01-07 Thread Eunbong Song
panic_nand_wait_ready() and nand_wait_ready() calls dev_ready() without checking if it exists. This patch add check routine dev_ready() before run dev_ready() and this makes the code more readable Signed-off-by: Eunbong Song --- drivers/mtd/nand/nand_base.c | 12 1 files

[PATCH] ARM: Kill CONFIG_MTD_PARTITIONS

2013-12-05 Thread Eunbong Song
This patch removes CONFIG_MTD_PARTITIONS in config files for ARM. Because CONFIG_MTD_PARTITIONS was removed by commit 6a8a98b22b10f1560d5f90aded4a54234b9b2724. Signed-off-by: Eunbong Song Acked-by: Tony Lindgren --- arch/arm/configs/acs5k_defconfig|1 - arch/arm/configs

[PATCH] ARM : Kill CONFIG_MTD_PARTITIONS

2013-11-27 Thread Eunbong Song
This patch removes CONFIG_MTD_PARTITIONS in config files for arm. Because CONFIG_MTD_PARTITIONS was removed by commit 6a8a98b22b10f1560d5f90aded4a54234b9b2724. Signed-off-by: Eunbong Song Acked-by: Tony Lindgren --- I resend this patch because i forgot signoff. I really sorry for annoying

[PATCH] ARM : Kill CONFIG_MTD_PARTITIONS

2013-11-27 Thread Eunbong Song
This patch removes CONFIG_MTD_PARTITIONS in config files for arm. Because CONFIG_MTD_PARTITIONS was removed by commit 6a8a98b22b10f1560d5f90aded4a54234b9b2724. --- I resend this patch because i forgot signoff. -- arch/arm/configs/acs5k_defconfig|1 - arch/arm/configs/acs5k_tiny_defco

Re: Re: [PATCH] m68k : Kill CONFIG_MTD_PARTITIONS

2013-11-27 Thread Eunbong Song
> Hi Eunbong, >Acked-by: Greg Ungerer >Did you want me to pick this up for the m68knommu git tree? Hello, Greg. I'm glad if you pick up this patch. Thanks EunBong

[PATCH] sh : Kill CONFIG_MTD_PARTITIONS

2013-11-26 Thread Eunbong Song
This patch removes CONFIG_MTD_PARTITIONS in config files for sh. Because CONFIG_MTD_PARTITIONS was removed by commit 6a8a98b22b10f1560d5f90aded4a54234b9b2724. Signed-off-by: Eunbong Song --- arch/sh/configs/ap325rxa_defconfig|1 - arch/sh/configs/apsh4a3a_defconfig|1

[PATCH] mn10300 : Kill CONFIG_MTD_PARTITIONS

2013-11-26 Thread Eunbong Song
This patch removes CONFIG_MTD_PARTITIONS in config files for mn10300. Because CONFIG_MTD_PARTITIONS was removed by commit 6a8a98b22b10f1560d5f90aded4a54234b9b2724. Signed-off-by: Eunbong Song --- arch/mn10300/configs/asb2303_defconfig |1 - arch/mn10300/configs/asb2364_defconfig |1

[PATCH] m68k : Kill CONFIG_MTD_PARTITIONS

2013-11-26 Thread Eunbong Song
This patch removes CONFIG_MTD_PARTITIONS in config files for m68k. Because CONFIG_MTD_PARTITIONS was removed by commit 6a8a98b22b10f1560d5f90aded4a54234b9b2724. Signed-off-by: Eunbong Song --- arch/m68k/configs/m5208evb_defconfig |1 - arch/m68k/configs/m5249evb_defconfig |1 - arch

[PATCH] m32r : Kill CONFIG_MTD_PARTITIONS

2013-11-26 Thread Eunbong Song
This patch removes CONFIG_MTD_PARTITIONS in config files for m32r. Because CONFIG_MTD_PARTITIONS was removed by commit 6a8a98b22b10f1560d5f90aded4a54234b9b2724. Signed-off-by: Eunbong Song --- arch/m32r/configs/m32700ut.smp_defconfig |1 - arch/m32r/configs/m32700ut.up_defconfig |1

[PATCH] blackfin: Kill CONFIG_MTD_PARTITIONS

2013-11-26 Thread Eunbong Song
This patch removes CONFIG_MTD_PARTITIONS in config files for blackfin. Because CONFIG_MTD_PARTITIONS was removed by commit 6a8a98b22b10f1560d5f90aded4a54234b9b2724. Signed-off-by: Eunbong Song --- arch/blackfin/configs/BF538-EZKIT_defconfig |1 - arch/blackfin/configs/BF561

[PATCH] avr32: Kill CONFIG_MTD_PARTITIONS

2013-11-26 Thread Eunbong Song
This patch removes CONFIG_MTD_PARTITIONS in config files for avr32. Because CONFIG_MTD_PARTITIONS was removed by commit 6a8a98b22b10f1560d5f90aded4a54234b9b2724. Signed-off-by: Eunbong Song --- arch/avr32/configs/atngw100_defconfig |1 - arch/avr32/configs

[PATCH] powerpc: : Kill CONFIG_MTD_PARTITIONS

2013-11-26 Thread Eunbong Song
This patch removes CONFIG_MTD_PARTITIONS in config files for powerpc. Because CONFIG_MTD_PARTITIONS was removed by commit 6a8a98b22b10f1560d5f90aded4a54234b9b2724. Signed-off-by: Eunbong Song --- arch/powerpc/configs/40x/acadia_defconfig|1 - arch/powerpc/configs/40x

Fwd: [PATCH] MIPS: Kill CONFIG_MTD_PARTITIONS

2013-11-26 Thread Eunbong Song
This patch removes CONFIG_MTD_PARTITIONS in config files for MIPS. Because CONFIG_MTD_PARTITIONS was removed by commit 6a8a98b22b10f1560d5f90aded4a54234b9b2724. Signed-off-by: Eunbong Song --- arch/mips/configs/ar7_defconfig|1 - arch/mips/configs/bcm47xx_defconfig

Re: Re: [PATCH] ARM: Kill CONFIG_MTD_PARTITIONS

2013-11-26 Thread Eunbong Song
> Missing Signed-off-by? Sorry, I forgot signed-off. Please, add signed-off. >This patch is probably best sent to the arm-soc maintainers so >they can pick it up. For the omap changes: Thanks for your advice. linux-arm-ker...@lists.infradead.org is included in recipien list. > Acked-by: Tony Lind

[PATCH] ARM: Kill CONFIG_MTD_PARTITIONS

2013-11-26 Thread Eunbong Song
This patch removes CONFIG_MTD_PARTITIONS in config files for ARM. Because CONFIG_MTD_PARTITIONS was removed by commit 6a8a98b22b10f1560d5f90aded4a54234b9b2724. --- arch/arm/configs/acs5k_defconfig|1 - arch/arm/configs/acs5k_tiny_defconfig |1 - arch/arm/configs/assabet_defcon

kbuild: warning with cavium_octeon_defconfig

2013-05-21 Thread EUNBONG SONG
Hello. Every time i config with arch/mips/configs/cavium_octeon_defconfig, the following warning messages are showed. warning: (MIPS_SEAD3 && PMC_MSP && CPU_CAVIUM_OCTEON) selects USB_EHCI_BIG_ENDIAN_MMIO which has unmet direct dependencies (USB_SUPPORT && USB && USB_EHCI_HCD) warning: (MIPS_S

[PATCH] i2c: i2c-designware: Fix compilation warning

2013-05-20 Thread EUNBONG SONG
Fix the following compilation warning when CONFIG_PM_RUNTIME is not enabled: drivers/i2c/busses/i2c-designware-pcidrv.c:188: warning: 'i2c_dw_pci_runtime_idle' defined but not used Signed-off-by: EunBong Song --- drivers/i2c/busses/i2c-designware-pcidrv.c |2 ++ 1 file

[PATCH] mips: Fix compilation warning

2013-05-20 Thread EUNBONG SONG
Fix the following compilation warning: mm/page_alloc.c: In function 'free_reserved_area': mm/page_alloc.c:5162: warning: passing argument 1 of 'virt_to_phys' makes pointer from integer without a cast Signed-off-by: Eunbong Song --- arch/mips/include/asm/page.h |2 +-

[PATCH] mips: Fix compilation warning

2013-05-20 Thread EUNBONG SONG
Fix the following compilation warning: mm/page_alloc.c: In function 'free_reserved_area': mm/page_alloc.c:5162: warning: passing argument 1 of 'virt_to_phys' makes pointer from integer without a cast /home/ebsong/backup/linux_git/linux/arch/mips/include/asm/io.h:119: note: expected 'const volat

Re: Re: Question about ext4 excessive stall time

2013-05-15 Thread EUNBONG SONG
> On Wed, May 15, 2013 at 07:15:02AM +0000, EUNBONG SONG wrote: > > I know my kernel version is so old. I just want to know why this > > problem is happened. Because of my kernel version is old? or > > Because of disk ?,, If anyone knows about this problem, Could you >

Question about ext4 excessive stall time

2013-05-15 Thread EUNBONG SONG
Hello. I saw some commit messages about excessive stall times in ext4. The same problem was reproduced in my board. Actually, i'm not sure that is the same problem. But the calltrace message is very similar with commit id: f783f091. My board configuration as follow. Linux: 2.6.32.60 CPU: 8CPU

Re: Re: Re: EXT4 panic at jbd2_journal_put_journal_head() in 3.9+

2013-05-13 Thread Eunbong Song
13 May 2013 19:26:34 +0800, Zheng Liu wrote: >> On Mon, May 13, 2013 at 09:53:25AM +, EUNBONG SONG wrote: >> > >> > >> > > Hi all, >> > >> > > First of all I couldn't reproduce this regression in my sand box. So >> >

Re: Re: Re: EXT4 panic at jbd2_journal_put_journal_head() in 3.9+

2013-05-13 Thread EUNBONG SONG
> Hi all, > First of all I couldn't reproduce this regression in my sand box. So > the following speculation is only my guess. I suspect that the commit > (ae4647fb) isn't root cause. It just uncover a potential bug that has > been there for a long time. I look at the code, and found two > s

Re: Re: EXT4 panic at jbd2_journal_put_journal_head() in 3.9+

2013-05-13 Thread EUNBONG SONG
Hi, I have some problem to boot with 3.10-rc1. So i will test with e0fd9affeb64088eff407dfc98bbd3a5c17ea479. The commit message is as follow. commit e0fd9affeb64088eff407dfc98bbd3a5c17ea479 Merge: 3d15b79 ea9627c Author: Linus Torvalds Date: Wed May 8 15:29:48 2013 -0700 Merge tag 'rdma

Re: Re: EXT4 panic at jbd2_journal_put_journal_head() in 3.9+

2013-05-12 Thread EUNBONG SONG
> Hi, > Bitfields are likely to be implemented using read-modify-write semantics. > Modifications of either b_jlist or b_jmodified must be done under lock > since they share same uint. I guess this lock is missing somewhere. Hi, I agree with you. b_jlist and b_jmodified share the same unit. I t

Re: Re: Re: EXT4 panic at jbd2_journal_put_journal_head() in 3.9+

2013-05-12 Thread EUNBONG SONG
> CONFIG_IA64_PAGE_SIZE_64KB=y > fsblock size is whatever is the default for SLES11SP2 on ia64 - which > tool will tell me? > My git bisect finally competed and points the a finger at: > bisect> git bisect good > ae4647fb7654676fc44a97e86eb35f9f06b99f66 is first bad commit > commit ae4647fb765

[PATCH] mips: fix build error for crash_dump.c in 3.10-rc1

2013-05-12 Thread EUNBONG SONG
t makes pointer from integer without a cast Signed-off-by: EunBong Song --- arch/mips/kernel/crash_dump.c |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/arch/mips/kernel/crash_dump.c b/arch/mips/kernel/crash_dump.c index 35bed0d..3be9e7b 100644 --- a/arch/mips/kerne

Re: Re: Re: EXT4 regression caused 4eec7

2013-05-12 Thread EUNBONG SONG
reduce journal_head size." I write just code patch which revert ae4647fb7654676fc44a97e86eb35f9f06b99f66 because I don't know the root cause. Signed-off-by: Eunbong Song --- include/linux/journal-head.h | 11 +-- 1 files changed, 9 insertions(+), 2 deletions(-) diff --git a/include/l

Re: Re: EXT4 regression caused 4eec7

2013-05-12 Thread EUNBONG SONG
> Since at this point it's safer to rollback the change and we can > investigate more deeply how to fix it correctly for the next > development cycle, this is the patch which I'm testing. > - Ted Hello, I've tested with your patch. But the same problem was reproduced. Curren

Re: Re: EXT4 panic at jbd2_journal_put_journal_head() in 3.9+

2013-05-09 Thread EUNBONG SONG
> Can you give us the full crash message, (i.e., the panic, the BUG, > WARN, the registers, etc.), and not the stack trace? > - Ted Hi, Ted Actually i try to find the crash point. And i confirmed crash point is in __journal_remove_journal_head() function. I added some debu

EXT4 panic at jbd2_journal_put_journal_head() in 3.9+

2013-05-09 Thread EUNBONG SONG
Hello. In my board, i ran the iozone with multi-thread option. My board has 8 cores and i enabled CONFIG_SMP. the iozone command as follow: iozone -l 20 -u 20 -r 64k -s 5m -o -F /user/f1 /user/f2 /user/f3 /user/f4 /user/f5 /user/f6 /user/f7 /user/f8 /user/f9 /user/f10 /user/f11 /user/f12 /user

Fwd: [PATCH v2] MIPS: Make virt_to_phys() work for all unmapped addresses.

2013-05-08 Thread EUNBONG SONG
> From: David Daney > This one appears to build against Linus' tree. > This could also fix problems noted by Eunbong Song with the > free_initmem_default() call. I tested your patch, And i confirmed your patch fixes panic at free_initmem_default() problem. Thanks.

Re: Re: MIPS: Test reault for enable interrupts before WAIT instruction patch

2013-05-07 Thread EUNBONG SONG
>> >> Hello. I tested with two patches. >> The first one is thomas gleixner's patch. The patch is as follow. >> This patch works well without any problem. >You don't need them both. When we fix it, it will be one or the other, >not both. Hello. David. Maybe i didn't write clearly for test re

MIPS: Test reault for enable interrupts before WAIT instruction patch

2013-05-06 Thread EUNBONG SONG
Hello. I tested with two patches. The first one is thomas gleixner's patch. The patch is as follow. This patch works well without any problem. Index: linux-2.6/arch/mips/kernel/process.c === --- linux-2.6.orig/arch/mips/kernel/proce

Re: Re: MIPS : die at free_initmem() function 3.9+

2013-05-05 Thread EUNBONG SONG
>So on 64bits MIPS platforms, __va(__pa(x)) may not equal to x, that may cause >trouble to free_initmem_default(). Could you please help to do another test >by changing >free_initmem_default(POISON_FREE_INITMEM); >to >free_initmem_default(0); >This test could help to identify whether this panic i

MIPS : die at free_initmem() function 3.9+

2013-05-03 Thread EUNBONG SONG
Hello. I try to boot my cavium board with david's patch. It's is not applied yet in linux tree, i got the patch from mailing list. And the patch is as follow. This is only very lightly tested, we need more testing before declaring it the definitive fix. arch/mips/kernel/genex.S | 7 --- 1

Re: Re: mips; boot fail after merge 3.9+

2013-05-02 Thread EUNBONG SONG
> Does the patch below fix your issue ? I applied your patch, but it still fails to boot. the boot logs are same. Thanks > Thanks, > tglx > diff --git a/kernel/cpu/idle.c b/kernel/cpu/idle.c > index 8b86c0c..a8972fe 100644 > --- a/kernel/cpu/idle.c > +++ b/kernel/cpu/idle.c > @@ -70,8 +70,10

Re: Re: [PATCH] MIPS: remove USB_EHCI_BIG_ENDIAN_{DESC,MMIO} depends on architecture symbol

2013-05-02 Thread EUNBONG SONG
>These are selects and don't prevent anyone else from also selecting > them. If you look at your referenced commit, you see it removed the >/depends/, not the selects. It actually added selects to several > platforms. Platforms are supposed to select them if they need them. Hello. Every time i c

[PATCH ] MIPS: Fix build error crash_dump.c file.

2013-05-02 Thread EUNBONG SONG
e.o GZIPkernel/config_data.gz CHK kernel/config_data.h LD kernel/built-in.o Signed-off-by: Eunbong Song --- arch/mips/kernel/crash_dump.c |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/arch/mips/kernel/crash_dump.c b/arch/mips/kernel/crash_dump.c in

[PATCH] MIPS: Fix build error crash_dump.c file.

2013-05-02 Thread EUNBONG SONG
This patch fixes crash_dump.c build error. Signed-off-by: Eunbong Song --- arch/mips/kernel/crash_dump.c |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/arch/mips/kernel/crash_dump.c b/arch/mips/kernel/crash_dump.c index 35bed0d..3be9e7b 100644 --- a/arch/mips/kernel

[PATCH] MIPS: remove USB_EHCI_BIG_ENDIAN_{DESC,MMIO} depends on architecture symbol

2013-05-02 Thread EUNBONG SONG
This patch removes the architecture specific symbols which prevent these configuration symbols from being selected by platforms/architectures requiring it. I reference commit 9296d94d83649e1c2f25c87dc4ead9c2ab073305. Signed-off-by: Eunbong Song --- arch/mips/Kconfig |5 - 1 files

mips; boot fail after merge 3.9+

2013-04-30 Thread EUNBONG SONG
Hello. After merge cavium board boots fail, boot log messages are as follows. I enabled initcall_debug for debugging. [0.00] Initializing cgroup subsys cpuset [0.00] Initializing cgroup subsys cpuacct [0.00] Linux version 3.9.0+ (ebsong@ubi) (gcc version 4.4.1 (MontaVist

Re: Re: Re: Re: [PATCH] I2C: Change the value of octeon i2c adapter timeout value

2013-04-23 Thread EUNBONG SONG
Sender : Wolfram Sang Date : 2013-04-24 01:27 (GMT+09:00) Title : Re: Re: Re: [PATCH] I2C: Change the value of octeon i2c adapter timeout value > Well, OK, I don't mind. We can increase it later if needed. > Applied to for-next, thanks! Please have a look later how I changed your > commit mess

Re: Re: Re: [PATCH] I2C: Change the value of octeon i2c adapter timeout value

2013-04-20 Thread EUNBONG SONG
> > Have you been writing to EEPROMS? Their erase/write cycle might be > longer. But I am not forcing you to change the value, just giving some > suggestions. My board has i2c mux, temp sensor, eeprom. And I added some debugging code for measuring i2c response time as below and run i2c opera

Re: Re: [PATCH] I2C: Change the value of octeon i2c adapter timeout value

2013-04-19 Thread EUNBONG SONG
On Fri, Apr 19, 2013 at 12:01:04AM +, EUNBONG SONG wrote: >> >> I think HZ/50 is better than 2 for adapter timeout. > Basically OK. But why HZ/50? Most drivers use HZ. Actually, I just translated 2 jiffies because HZ is 100 in default cavium config. You can find tha

[PATCH] I2C: Change the value of octeon i2c adapter timeout value

2013-04-18 Thread EUNBONG SONG
I think HZ/50 is better than 2 for adapter timeout. Signed-off-by: Eunbong Song --- drivers/i2c/busses/i2c-octeon.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/i2c/busses/i2c-octeon.c b/drivers/i2c/busses/i2c-octeon.c index 935585e..ca489f3 100644 --- a

[PATCH] mips: Fix invalid interrupt name in cavium-octeon

2013-04-18 Thread EUNBONG SONG
proc+0x108/0x130 [ 24.993642] [] __setup_irq+0x210/0x540 [ 24.998963] [] request_threaded_irq+0x114/0x1a0 [ 25.005060] [] prom_free_prom_memory+0xd4/0x588 [ 25.011164] [] free_initmem+0x10/0xc0 [ 25.016390] [] kernel_init+0x20/0x100 [ 25.021624] [] ret_from_kernel_thread+0x10/0x18 Signed-o

[PATCH] um: set CONFIG_LOCKDEP_SUPPORT to CONFIG_LOCKDEP

2013-04-16 Thread EUNBONG SONG
CONFIG_LOCKDEP_SUPPORT is no longer valid. Singed-off-by: EunBong Song --- arch/um/defconfig |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/arch/um/defconfig b/arch/um/defconfig index 08107a7..bbc5aa7 100644 --- a/arch/um/defconfig +++ b/arch/um/defconfig @@ -7,7

[PATCH] swiotlb: Replace dma_length to sg_dma_len() macro

2013-04-15 Thread EUNBONG SONG
This patch replace dma_length in "lib/swiotlb.c" to sg_dma_len() macro, because the build error can occur if CONFIG_NEED_SG_DMA_LENGTH is not set, and CONFIG_SWIOTLB is set. I confirmed compile only. Singed-off-by: EunBong Song --- lib/swiotlb.c |8 1 files

[PATCH] mips: Fix typo in cavium-octeon

2013-04-11 Thread EUNBONG SONG
I think "CUI2" should be changed to "CIU2", because CIU means Central Intrrupt Unit. Singed-off-by: EunBong Song --- arch/mips/cavium-octeon/octeon-irq.c |2 +- arch/mips/include/asm/mach-cavium-octeon/irq.h |2 +- 2 files changed, 2 insertions(+), 2 dele

[PATCH] staging: Enhance cpu load-balance octeon ethernet driver

2013-04-10 Thread EUNBONG SONG
when backlog packet count is greater than budget. I tested with patch and the result is more cpu is scheduled in traffic congestion situation. Signed-off-by: EunBong Song --- drivers/staging/octeon/ethernet-rx.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers

Re: Re: I2C: Fix i2c fail problem when a process is terminated by a signal on octeon in 3.8

2013-03-22 Thread EUNBONG SONG
>Basically OK, but you have lots of whitespace issues, so I can't apply >your patch. Please resend and make sure it applies. Sorry, I rewrite my patch here. Signed-off-by: EunBong Song --- drivers/i2c/busses/i2c-octeon.c |8 1 files changed, 4 insertions(+), 4 deletio

[PATCH] phydev: Add sysctl variable for polling interval of phy

2013-03-10 Thread EUNBONG SONG
From d55a22be52e5a768409aa0999d6636cdfc369676 Mon Sep 17 00:00:00 2001 From: eunbonsong Date: Sun, 10 Mar 2013 04:57:39 -0700 Subject: [PATCH] phydev: Add sysctl variable for polling interval of phy state This adds a dev.phy.phy_poll_interval sysctl variable. This value is represented in millis