RE: [PATCH 2/2] imsm: FIX: Be more patient during loading matadata
From: Kwolek, Adam <hidden>
Date: 2011-04-14 07:57:01
-----Original Message----- From: dan.j.williams@gmail.com [mailto:dan.j.williams@gmail.com] On Behalf Of Dan Williams Sent: Wednesday, April 13, 2011 8:56 PM To: Kwolek, Adam Cc: neilb@suse.de; linux-raid@vger.kernel.org; Ciechanowski, Ed; Neubauer, Wojciech Subject: Re: [PATCH 2/2] imsm: FIX: Be more patient during loading matadata 2011/4/12 Kwolek, Adam [off-list ref]:quoted
quoted
-----Original Message----- From: dan.j.williams@gmail.com [mailto:dan.j.williams@gmail.com] On Behalf Of Dan Williams Sent: Wednesday, April 13, 2011 2:45 AM To: Kwolek, Adam Cc: neilb@suse.de; linux-raid@vger.kernel.org; Ciechanowski, Ed; Neubauer, Wojciech Subject: Re: [PATCH 2/2] imsm: FIX: Be more patient during loading matadata On Tue, Apr 12, 2011 at 5:51 AM, Adam Kwolek [off-list ref] wrote:quoted
Sometimes occurs that metadata cannot be loaded e.g. wrong checksumquoted
quoted
quoted
It can happen due to metadata update racing with mdmon condition. If mpb loading is tried again, it is loaded successfully. Try to load metadata again before really giving up. Signed-off-by: Adam Kwolek <redacted> --- super-intel.c | 10 ++++++++-- 1 files changed, 8 insertions(+), 2 deletions(-)diff --git a/super-intel.c b/super-intel.c index dc5e34e..d23267a100644--- a/super-intel.c +++ b/super-intel.c@@ -2773,8 +2773,14 @@ load_and_parse_mpb(int fd, structintel_superquoted
quoted
*super, char *devname, int keep_fdquoted
int err; err = load_imsm_mpb(fd, super, devname); - if (err) - return err; + if (err) { + /* try to load mpb again, + * in case of mdmon race we could have more luck... + */ + err = load_imsm_mpb(fd, super, devname); + if (err) + return err; + } err = load_imsm_disk(fd, super, devname, keep_fd); if (err) return err;This is semi-duplicates the check we already do after returning from load_and_parse_mpb in load_super_imsm_all. I'm curious, are you hitting this path from load_super_imsm? If the container isassembledquoted
quoted
we should be loading from the container, if the container is not available then mdmon can't be running and checksum errors are real.My test scenario is that after boot I'm disassembling read only arrayand immediately new array is assembled for grow continuation.quoted
Sometimes occurs that mdadm throws exception and core file isgenerated. It shows that anchor pointer has NULL value due to CRC error.quoted
Second reading try helps, and anchor is always read correctly. This behavior and fact that if I put more time between arraydisassembling and assembling it again helps also suggest, that we have some race condition here. Right, so we need to fix that disassemble-to-assemble race, this patch only "helps" :-).quoted
Problem is not in currently monitored in mdmon container but rather ininteraction with previous mdmon session that is about to close.quoted
This patch makes that error condition never occurs in this scenario.That "never" needs to be qualified. This patch makes the race harder to lose, but as far as I can see not "impossible" to lose.
Grow.c looks all devices for metadata, so I think for both patches word never is ok (without qualified)
quoted
Grow.c is fixed for correct error condition behavior also. I can agree that both patches in this series can help for this problemseparately, but I think both should be placed in code. Why does this existing check: /* retry the load if we might have raced against mdmon */ if (err == 3 && mdmon_running(devnum)) for (retry = 0; retry < 3; retry++) { usleep(3000); err = load_and_parse_mpb(dfd, s, NULL, 1); if (err != 3) break; } ...not help in this case. I suspect due to that mdmon_running()
Probably because it is not in execution patch for my case ;) This is in load_super_imsm_all(), my case applies to load_super() /load_super_imsm()/ for particular device that is used in Grow.c:2934. As You point yourself, similar fix /workaround/ is applied for different usage scenario, so problem is not new and can be fixed in this way.
qualification and the fact that the test is only seeing this in a disassemble-to-assemble window. So that seems to be further evidence that a higher level fix is needed. -- Dan
I think that mdmon-mdadm synchronization/communication/ has to be discussed again. Such problems can push it to happen. Probably metadata loading via mdmon should be implemented (single metadata access point). Anchor passed to mdadm should be build by mdmon /not loaded from disks/. During mdmon life it needs one metadata load on start and then metadata snapshots should be flushed to disks only. It will take a while /if we decide to use this idea/, but at this moment we have to have code without execution exceptions. BR Adam