Re: [Devel] containers mini-summit?

2007-08-15 Thread Oren Laadan
Hi all, [very brief intro: I'm with the Zap project; finally have time to join the discussions after a short period of passively watching the list] There is a good chance I'll be passing nearby, and that would be an excellent opportunity for me to personally meet those who plan to attend, as

[Devel] Re: [PATCH] ext3: fix ext34_fill_super group description initialization

2007-08-15 Thread Mariusz Kozlowski
-s_group_desc have to be zero filled because if sb_read() failed we jump to following error path. failed_mount2: for (i = 0; i db_count; i++) brelse(sbi-s_group_desc[i]); Bad things may happen here Signed-off-by: Dmitry Monakhov [EMAIL PROTECTED] --- fs/ext3/super.c

[Devel] Re: [PATCH] ext3: fix ext34_fill_super group description initialization

2007-08-15 Thread Aneesh Kumar K.V
Dmitry Monakhov wrote: -s_group_desc have to be zero filled because if sb_read() failed we jump to following error path. failed_mount2: for (i = 0; i db_count; i++) brelse(sbi-s_group_desc[i]); Bad things may happen here But the db_count is updated in the failure

[Devel] Re: [-mm PATCH 4/9] Memory controller memory accounting (v4)

2007-08-15 Thread YAMAMOTO Takashi
YAMAMOTO Takashi wrote: + lock_meta_page(page); + /* + * Check if somebody else beat us to allocating the meta_page + */ + race_mp = page_get_meta_page(page); + if (race_mp) { + kfree(mp); + mp = race_mp; + atomic_inc(mp-ref_cnt); +

[Devel] Re: [-mm PATCH 4/9] Memory controller memory accounting (v4)

2007-08-15 Thread Balbir Singh
YAMAMOTO Takashi wrote: YAMAMOTO Takashi wrote: + lock_meta_page(page); + /* + * Check if somebody else beat us to allocating the meta_page + */ + race_mp = page_get_meta_page(page); + if (race_mp) { + kfree(mp); + mp = race_mp; +