| To: | Ajeet Yadav <ajeet.yadav.77@gmail.com> |
|---|---|
| Subject: | Re: XFS mounting fails on MIPS |
| From: | Christoph Hellwig <hch@infradead.org> |
| Date: | Tue, 9 Nov 2010 09:05:28 -0500 |
| Cc: | Christoph Hellwig <hch@infradead.org>, "xfs@oss.sgi.com" <xfs@oss.sgi.com>, linux-mips@linux-mips.org |
| In-reply-to: | <AANLkTinqK-HvuHPeaTgxJOJuWMfomP2C12G=uVcqhWdn@mail.gmail.com> |
| Original-recipient: | rfc822;linux-mips@linux-mips.org |
| References: | <AANLkTi=mLwQ0N_cErHzES1ZWvOa8jQspeYwKgn9sU4Jm@mail.gmail.com> <20101104125052.GA22429@infradead.org> <AANLkTinqK-HvuHPeaTgxJOJuWMfomP2C12G=uVcqhWdn@mail.gmail.com> |
| Sender: | linux-mips-bounce@linux-mips.org |
| User-agent: | Mutt/1.5.21 (2010-09-15) |
Hi Ajeet,
On Tue, Nov 09, 2010 at 04:43:04PM +0530, Ajeet Yadav wrote:
> True, its the same system and you were right it was cache VIPT cache problem
> the cache hold the stale value even after xlog_bread() update the buffer.
> I do not know whether its correct ways to resolve the problem, but the
> problem no longer occur.
It seems like you more less re-implemented the vmap coherency hooks
inside XFS, hardcoded to the mips implementation.
The actual helpers would looks something like:
static inline void flush_kernel_vmap_range(void *addr, int size)
{
dma_cache_inv(addr, size);
}
static inline void invalidate_kernel_vmap_range(void *addr, int size)
{
dma_cache_inv(addr, size);
}
For some reason the kernel also expects flush_dcache_page to be
implemented by an architecture if we want to implement these two
(it's keyed off ARCH_IMPLEMENTS_FLUSH_DCACHE_PAGE).
Can someone of the mips folks helps with this?
The testcase is easy, mounting an xfs filesystem after an unclean
shutdown on a machine with virtually indexed caches.
|
| <Prev in Thread] | Current Thread | [Next in Thread> |
|---|---|---|
| ||
| Previous by Date: | Re: [PATCH] MIPS: Separate two consecutive loads in memset.S, Ralf Baechle |
|---|---|
| Next by Date: | Re: [PATCH] Enable AT_PLATFORM for Loongson 2F CPU, Ralf Baechle |
| Previous by Thread: | [PATCH] MIPS: Separate two consecutive loads in memset.S, Tony Wu |
| Next by Thread: | Re: XFS mounting fails on MIPS, Ajeet Yadav |
| Indexes: | [Date] [Thread] [Top] [All Lists] |