2009-11-18 07:23:01

by Li Yang

[permalink] [raw]
Subject: [RFC] char/mem: Honor O_SYNC over intelligent setting of uncached access

The original code will automatially set the page non-cacheable if the mmap'ped
address is not in kernel managed low memory.

We already have O_SYNC flag to pass the cacheability settings. Therefore we should
honor the case that O_SYNC is delibrately not used. For example, it is useful to the
case that not all system memory is managed by Linux, and want to be mmaped cacheable.

Not sure if there is anything out there depending on the previous behavior.

Signed-off-by: Li Yang <[email protected]>
---
drivers/char/mem.c | 8 +++-----
1 files changed, 3 insertions(+), 5 deletions(-)

diff --git a/drivers/char/mem.c b/drivers/char/mem.c
index a074fce..34a9b24 100644
--- a/drivers/char/mem.c
+++ b/drivers/char/mem.c
@@ -56,12 +56,10 @@ static inline int uncached_access(struct file *file, unsigned long addr)
}
#else
/*
- * Accessing memory above the top the kernel knows about or through a file pointer
- * that was marked O_SYNC will be done non-cached.
+ * Accessing memory through a file pointer that was marked O_SYNC will be done
+ * non-cached.
*/
- if (file->f_flags & O_SYNC)
- return 1;
- return addr >= __pa(high_memory);
+ return (file->f_flags & O_SYNC) ? 1 : 0;
#endif
}

--
1.6.3.1.6.g4bf1f


2009-11-18 10:40:58

by Andi Kleen

[permalink] [raw]
Subject: Re: [RFC] char/mem: Honor O_SYNC over intelligent setting of uncached access

Li Yang <[email protected]> writes:

D> The original code will automatially set the page non-cacheable if the mmap'ped
> address is not in kernel managed low memory.
>
> We already have O_SYNC flag to pass the cacheability settings. Therefore we should
> honor the case that O_SYNC is delibrately not used. For example, it is useful to the
> case that not all system memory is managed by Linux, and want to be mmaped cacheable.
>
> Not sure if there is anything out there depending on the previous behavior.

Very likely there is. That change seems rather dangerous.

If you wanted to do something like this you would need a long
deprecation period with printks and format warnings. But most likely
it's not worth it, what advantage does the change have?

-Andi

--
[email protected] -- Speaking for myself only.

2009-11-18 11:22:18

by Li Yang

[permalink] [raw]
Subject: Re: [RFC] char/mem: Honor O_SYNC over intelligent setting of uncached access

On Wed, Nov 18, 2009 at 6:41 PM, Andi Kleen <[email protected]> wrote:
> Li Yang <[email protected]> writes:
>
> D> The original code will automatially set the page non-cacheable if the mmap'ped
>> address is not in kernel managed low memory.
>>
>> We already have O_SYNC flag to pass the cacheability settings.   Therefore we should
>> honor the case that O_SYNC is delibrately not used.  For example, it is useful to the
>> case that not all system memory is managed by Linux, and want to be mmaped cacheable.
>>
>> Not sure if there is anything out there depending on the previous behavior.
>
> Very likely there is. That change seems rather dangerous.
>
> If you wanted to do something like this you would need a long
> deprecation period with printks and format warnings. But most likely
> it's not worth it, what advantage does the change have?

The general advantage is that user has the true control of the page
cacheability through O_SYNC file open() flag. For the previous way,
kernel might map memory as non-cacheable when it's not necessary. One
most common use case is that, user could limit the memory managed by
kernel and mmap the memory manually. But he can't make that VMA
cacheable. The user should have a better idea than kernel if a
certain memory space is I/O or not when using mmap().

- Leo