Search String: Display: Description: Sort:

Results:

References: [ +subject:/^(?:^\s*(re|sv|fwd|fw)[\[\]\d]*[:>-]+\s*)*\[PATCH\]\s+xfs\:\s+shutdown\s+xfs_sync_worker\s+before\s+the\s+log\s*$/: 17 ]

Total 17 documents matching your query.

1. [PATCH] xfs: shutdown xfs_sync_worker before the log (score: 1)
Author: Ben Myers <bpm@xxxxxxx>
Date: Fri, 25 May 2012 15:45:36 -0500
Hey Dave, This is going to spin over the weekend. See what you think. -- xfs: shutdown xfs_sync_worker before the log Revert commit 1307bbd, which uses the s_umount semaphore to provide exclusion bet
/archives/xfs/2012-05/msg00352.html (11,857 bytes)

2. Re: [PATCH] xfs: shutdown xfs_sync_worker before the log (score: 1)
Author: Ben Myers <bpm@xxxxxxx>
Date: Tue, 29 May 2012 10:07:15 -0500
I'm reasonably satisfied with the test results over the weekend. I did end up hitting an unrelated assert: [137111.090394] XFS: Assertion failed: (iflags & BMV_IF_DELALLOC) != 0, file: /root/xfs/fs/x
/archives/xfs/2012-05/msg00374.html (10,127 bytes)

3. Re: [PATCH] xfs: shutdown xfs_sync_worker before the log (score: 1)
Author: Brian Foster <bfoster@xxxxxxxxxx>
Date: Tue, 29 May 2012 11:36:51 -0400
I started testing the xfsaild idle patch based against the xfs tree over the weekend (after testing successfully against Linus' tree for several days) and reproduced the xfs_sync_worker() hang that M
/archives/xfs/2012-05/msg00375.html (11,310 bytes)

4. Re: [PATCH] xfs: shutdown xfs_sync_worker before the log (score: 1)
Author: Ben Myers <bpm@xxxxxxx>
Date: Tue, 29 May 2012 12:04:30 -0500
Hey Brian, D'oh! The xfs_sync_worker hang that Mark mentioned last week is when the sync worker blocks on log reservation for the dummy transaction used to cover the log, which means that it will not
/archives/xfs/2012-05/msg00377.html (11,670 bytes)

5. Re: [PATCH] xfs: shutdown xfs_sync_worker before the log (score: 1)
Author: Brian Foster <bfoster@xxxxxxxxxx>
Date: Tue, 29 May 2012 13:54:35 -0400
Ah, ok. Thanks for the context and sorry for the noise in this thread. I do find it interesting that I hit this rather quickly after so many hours of testing on Linus' tree without seeing it once. I
/archives/xfs/2012-05/msg00378.html (13,129 bytes)

6. Re: [PATCH] xfs: shutdown xfs_sync_worker before the log (score: 1)
Author: Mark Tinguely <tinguely@xxxxxxx>
Date: Thu, 31 May 2012 11:23:25 -0500
xfs: shutdown xfs_sync_worker before the log Revert commit 1307bbd, which uses the s_umount semaphore to provide exclusion between xfs_sync_worker and unmount, in favor of shutting down the sync wor
/archives/xfs/2012-05/msg00391.html (9,998 bytes)

7. Re: [PATCH] xfs: shutdown xfs_sync_worker before the log (score: 1)
Author: Dave Chinner <david@xxxxxxxxxxxxx>
Date: Wed, 6 Jun 2012 14:26:47 +1000
Looks fine to me. Reviewed-by: Dave Chinner <dchinner@xxxxxxxxxx> Once you commit this, I think I'll do a followup set of patches that remove all the problems caused by trying to start and stop unrel
/archives/xfs/2012-06/msg00064.html (10,051 bytes)

8. Re: [PATCH] xfs: shutdown xfs_sync_worker before the log (score: 1)
Author: Ben Myers <bpm@xxxxxxx>
Date: Mon, 11 Jun 2012 15:45:16 -0500
Hey Dave, Thanks! I think that's a good idea. That sounds pretty good. In particular, I think that making the start and stop of the workqueues correct should be the high priority. I'm not as concerne
/archives/xfs/2012-06/msg00139.html (11,612 bytes)

9. Re: [PATCH] xfs: shutdown xfs_sync_worker before the log (score: 1)
Author: Mark Tinguely <tinguely@xxxxxxx>
Date: Mon, 11 Jun 2012 16:11:28 -0500
That sounds pretty good. In particular, I think that making the start and stop of the workqueues correct should be the high priority. I'm not as concerned about the accuracy of the names, or cleanin
/archives/xfs/2012-06/msg00142.html (11,353 bytes)

10. Re: [PATCH] xfs: shutdown xfs_sync_worker before the log (score: 1)
Author: Dave Chinner <david@xxxxxxxxxxxxx>
Date: Tue, 12 Jun 2012 09:36:18 +1000
It is supposed to be already idle before the log is torn down. The log is forced synchronously while flushes remaining CIL items, then the AIL is emptied synchronously. That should result in no outst
/archives/xfs/2012-06/msg00145.html (12,819 bytes)

11. Re: [PATCH] xfs: shutdown xfs_sync_worker before the log (score: 1)
Author: Mark Tinguely <tinguely@xxxxxxx>
Date: Thu, 14 Jun 2012 12:13:12 -0500
That sounds pretty good. In particular, I think that making the start and stop of the workqueues correct should be the high priority. I'm not as concerned about the accuracy of the names, or cleanin
/archives/xfs/2012-06/msg00208.html (13,257 bytes)

12. Re: [PATCH] xfs: shutdown xfs_sync_worker before the log (score: 1)
Author: Dave Chinner <david@xxxxxxxxxxxxx>
Date: Fri, 15 Jun 2012 09:56:53 +1000
Oh, well that makes it easy to find the bug. Took me about 10s to work it out with that information, without even looking at the code. ;) So, have a look at xfs_unmountfs(), what it does with the sup
/archives/xfs/2012-06/msg00211.html (14,449 bytes)

13. Re: [PATCH] xfs: shutdown xfs_sync_worker before the log (score: 1)
Author: Christoph Hellwig <hch@xxxxxxxxxxxxx>
Date: Wed, 20 Jun 2012 03:36:00 -0400
I like the cancel_delayed_work_sync on unmount side of this, but I don't really like the MS_ACTIVE check - why can't we only do the initial xfs_syncd_queue_sync as the last thing in the mount process
/archives/xfs/2012-06/msg00325.html (10,621 bytes)

14. Re: [PATCH] xfs: shutdown xfs_sync_worker before the log (score: 1)
Author: Christoph Hellwig <hch@xxxxxxxxxxxxx>
Date: Wed, 20 Jun 2012 03:44:24 -0400
Is there any good reason to keep queueing different work items on the same queue now that workqueues are incredibly cheap? Sounds good. You probably also want to kill off xfs_sync_fsdata as it doesn'
/archives/xfs/2012-06/msg00328.html (12,347 bytes)

15. Re: [PATCH] xfs: shutdown xfs_sync_worker before the log (score: 1)
Author: Ben Myers <bpm@xxxxxxx>
Date: Wed, 20 Jun 2012 12:18:38 -0500
Hey Christoph, There isn't a race on the mount side related to the MS_ACTIVE flag. It's only on the unmount side. I agree that we could get rid of the MS_ACTIVE check if we move xfs_syncd_queue_sync
/archives/xfs/2012-06/msg00341.html (12,825 bytes)

16. Re: [PATCH] xfs: shutdown xfs_sync_worker before the log (score: 1)
Author: Dave Chinner <david@xxxxxxxxxxxxx>
Date: Thu, 21 Jun 2012 08:59:48 +1000
That's what i plan to fix as a followup - this is really just the minimal fix to solve the problem at hand for 3.5.... The laptop mode stuff has bit rotted for a long time - I've never really cared a
/archives/xfs/2012-06/msg00346.html (11,824 bytes)

17. Re: [PATCH] xfs: shutdown xfs_sync_worker before the log (score: 1)
Author: Christoph Hellwig <hch@xxxxxxxxxxxxx>
Date: Thu, 21 Jun 2012 03:12:03 -0400
Oh well, let's get in in as-is for now and sort out the mess later.
/archives/xfs/2012-06/msg00353.html (10,185 bytes)


This search system is powered by Namazu