From mboxrd@z Thu Jan 1 00:00:00 1970 From: mjn3@codepoet.org (Manuel Novoa III) Subject: fs/minix/bitmap.c is broken in CVS Date: Tue, 18 Jun 2002 06:24:58 -0600 Sender: linux-8086-owner@vger.kernel.org Message-ID: <20020618122458.GA12082@codepoet.org> Mime-Version: 1.0 Return-path: Content-Disposition: inline List-Id: Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: linux-8086@vger.kernel.org Hello, Apparently during the recent changes, someone replaced the code sequence if (j == find_first_zero_bit(bh->b_data, 8192)) panic("still zero bit!%d\n", j); with j == (block_t) find_first_zero_bit(bh->b_data, 8192); if (j) panic("still zero bit!%d\n", j); in function minix_new_block in file fs/minix/bitmap.c. Manuel