From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from out30-119.freemail.mail.aliyun.com (out30-119.freemail.mail.aliyun.com [115.124.30.119]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id D28CB239562 for ; Wed, 5 Nov 2025 01:40:15 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=115.124.30.119 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1762306818; cv=none; b=Kec3w2Fw8NXfdG79XB+tXdFHJiZY2raenDJv7sJ+K6cGpKfM+4Bgfoz5s5yqERcpo8dal17GA3OJWnVu9kDIoBVXZq2bT2WCP6zPw9tSEjT0Z3Sd/hsMt3Xrgo3X3MJ5evkUiGOtTQsCqbCv7Da8ceo8MXv0Za23gvc+bQ1sJ3I= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1762306818; c=relaxed/simple; bh=GqDi5GkFAwbTiD5BQkfKO8wmpRw7mEjoIkWIofJtPwQ=; h=Message-ID:Date:MIME-Version:Subject:To:Cc:References:From: In-Reply-To:Content-Type; b=WtM9COIQyEXXVlqMTgYhvKoaNqgndFAqNR7OOAuWhSeUkZIDcuUlNt5LNukCFVG+Tji7UbjF4gxviSKo5rR9E/TSDzkKMF2SppMt72jSh4BCW4HgIi1Vtecu1MqbgMPTMuQWrHwW3svyl+kKZGcgJ/Y06Vxu1BKE9DFDkdaZAvA= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linux.alibaba.com; spf=pass smtp.mailfrom=linux.alibaba.com; dkim=pass (1024-bit key) header.d=linux.alibaba.com header.i=@linux.alibaba.com header.b=dBSSDS7y; arc=none smtp.client-ip=115.124.30.119 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linux.alibaba.com Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=linux.alibaba.com Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linux.alibaba.com header.i=@linux.alibaba.com header.b="dBSSDS7y" DKIM-Signature:v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.alibaba.com; s=default; t=1762306813; h=Message-ID:Date:MIME-Version:Subject:To:From:Content-Type; bh=KAltNraqZrxDP4Z4ttzZmN1l8i6KuuWtzoXbQ1bixls=; b=dBSSDS7ykJ6VkldWoaoKJCc7pkpm9EZ47ELeQbO6dNKq/wbDy5WkIciIcpkp2H8NxZAYbPKGyJqz9NDZTAeroAkNM/xNorSQjGypr2bAN9gDlkiUw19EF7+RaQnDM7C4Fqay/+uO9qdwkcc90av6gdvUBb+HGmSXrERy2snOuqs= Received: from 30.50.176.188(mailfrom:joseph.qi@linux.alibaba.com fp:SMTPD_---0WrjCNa9_1762306811 cluster:ay36) by smtp.aliyun-inc.com; Wed, 05 Nov 2025 09:40:12 +0800 Message-ID: Date: Wed, 5 Nov 2025 09:40:11 +0800 Precedence: bulk X-Mailing-List: ocfs2-devel@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 User-Agent: Mozilla Thunderbird Subject: Re: [RFC RFT PATCH] ocfs2: Mark inode bad upon validation failure during read To: Ahmet Eray Karadag , ocfs2-devel@lists.linux.dev Cc: Albin Babu Varghese , mark@fasheh.com, jlbec@evilplan.org, linux-kernel@vger.kernel.org, Heming Zhao , david.hunter.linux@gmail.com, skhan@linuxfoundation.org, syzbot+b93b65ee321c97861072@syzkaller.appspotmail.com References: <20251029225748.11361-2-eraykrdg1@gmail.com> From: Joseph Qi In-Reply-To: Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit On 2025/11/5 06:31, Ahmet Eray Karadag wrote: > Hi folks, > > I'm having some trouble getting xfstests-dev set up to test some ocfs2 > changes. I can't seem to get the configuration working correctly to run > the ocfs2 test group. > > Could anyone share some insights or pointers on the proper setup? Any > help would be much appreciated. > The basic steps is: 1. Configure a ocfs2 cluster, e.g: $ cat /etc/ocfs2/cluster.conf cluster: heartbeat_mode = local node_count = 1 name = ocfs2cluster node: number = 0 cluster = ocfs2cluster ip_port = 7777 ip_address = 127.0.0.1 name = localhost 2. Online ocfs2 cluster: $ /etc/init.d/o2cb.init online 3. Then run xfstests cases, e.g.: $ ./check generic/001 Actually we prefer ocfs2tests to test ocfs2, which can be cloned at: https://github.com/markfasheh/ocfs2-test Thanks, Joseph