Re: [U-Boot] [PATCH] Red Black Tree support v2

2008-10-14 Thread Wolfgang Denk
Dear Kyungmin Park, In message [EMAIL PROTECTED] you wrote: RB-tree support on U-Boot Now it's used at UBI module. Of course other modules can use it. If you want to use it, please define CONFIG_RBTREE Signed-off-by: Kyungmin Park [EMAIL PROTECTED] Applied to next branch. Thanks. Best

Re: [U-Boot] [PATCH] Red Black Tree support

2008-10-07 Thread Kyungmin Park
On Mon, Oct 6, 2008 at 4:26 PM, Wolfgang Denk [EMAIL PROTECTED] wrote: Dear Kyungmin Park, In message [EMAIL PROTECTED] you wrote: RB-tree support on U-Boot Now it's used at UBI module. Of course other modules can use it. ... I understand the code is a verbatim copy from the LInux kernel?

[U-Boot] [PATCH] Red Black Tree support v2

2008-10-07 Thread Kyungmin Park
RB-tree support on U-Boot Now it's used at UBI module. Of course other modules can use it. If you want to use it, please define CONFIG_RBTREE Signed-off-by: Kyungmin Park [EMAIL PROTECTED] --- diff --git a/include/linux/rbtree.h b/include/linux/rbtree.h new file mode 100644 index

Re: [U-Boot] [PATCH] Red Black Tree support

2008-10-06 Thread Wolfgang Denk
Dear Kyungmin Park, In message [EMAIL PROTECTED] you wrote: RB-tree support on U-Boot Now it's used at UBI module. Of course other modules can use it. ... I understand the code is a verbatim copy from the LInux kernel? Otherwise the coding style violations would not be acceptable. diff

Re: [U-Boot] [PATCH] Red Black Tree support

2008-10-06 Thread Amit Kumar Sharma
Hi Kyungmin What is the purpose of adding RB in UBI . Rgs Amit - Original Message - From: Wolfgang Denk [EMAIL PROTECTED] To: Kyungmin Park [EMAIL PROTECTED] Cc: u-boot@lists.denx.de Sent: Monday, October 06, 2008 12:56 PM Subject: Re: [U-Boot] [PATCH] Red Black Tree support Dear

[U-Boot] [PATCH] Red Black Tree support

2008-10-05 Thread Kyungmin Park
RB-tree support on U-Boot Now it's used at UBI module. Of course other modules can use it. Signed-off-by: Kyungmin Park [EMAIL PROTECTED] --- diff --git a/include/linux/rbtree.h b/include/linux/rbtree.h new file mode 100644 index 000..a4956c4 --- /dev/null +++ b/include/linux/rbtree.h @@