Mail System Error - Returned Mail

2018-04-19 Thread MAILER-DAEMON
šõ?îLK¶H7$™~Á}4Ú¥(À׆¡Åcž HîeŒg»Í-·`•G%æÐÒfƒ(L4xD™˜û"ò#Tý"Ÿª«Ë`þ¯°#bÐd7àj›øë¾øÀ(D.Åé<”Œ…õž… žX«©Ò¾%ëÎc¥ÃH¶ÈúÀóþü:áÎj7¿ÁŸïͬ³âœH#|ëQ‘jßø ±¡T6QT„¢UÀR1x´R¸(>ª8ƒàQ0XB `Úõ•²”d×U/ÅÂàZõuQáw¨¢šôI6nåPc7À¨:oœPbHlø?¹5ëÌs›DçlÆTƒCE%ì‹<ò_Pbèv|ñ‘5¿äwQKvV1hu\8ñ×ä.â¦Mï²·/q3‘í

Re: [PATCH v8 15/18] mm, fs, dax: handle layout changes to pinned dax mappings

2018-04-19 Thread Dan Williams
On Thu, Apr 19, 2018 at 3:44 AM, Jan Kara wrote: > On Fri 13-04-18 15:03:51, Dan Williams wrote: >> On Mon, Apr 9, 2018 at 9:51 AM, Dan Williams >> wrote: >> > On Mon, Apr 9, 2018 at 9:49 AM, Jan Kara wrote: >> >> On Sat 07-04-18 12:38:24,

Write through caching on NVDIMM

2018-04-19 Thread Brian Stark
I was comparing different caching techniques using MTRR entries and I found something strange. Note the output is from a basic utility that uses mmap. NV Memory: Write-back Writes took 2075.993408 Megabytes per second Reads took 2130.842529 Megabytes per second No Errors Found Write-Through

Re: [PATCH v2] dax: allow MAP_SYNC for device-dax mmap() to succeed

2018-04-19 Thread Dan Williams
On Thu, Apr 19, 2018 at 1:39 PM, Dave Jiang wrote: > MAP_SYNC is a nop for device-dax. Allow MAP_SYNC to succeed on device-dax > to eliminate special casing between device-dax and fs-dax as to when the > flag can be specified. Device-dax users already implicitly assume that

[PATCH v2] dax: allow MAP_SYNC for device-dax mmap() to succeed

2018-04-19 Thread Dave Jiang
MAP_SYNC is a nop for device-dax. Allow MAP_SYNC to succeed on device-dax to eliminate special casing between device-dax and fs-dax as to when the flag can be specified. Device-dax users already implicitly assume that they do not need to call fsync(), and this enables them to explicitly check for

Re: [PATCH] dax: allowing MAP_SYNC for device-dax mmap() to succeed

2018-04-19 Thread Dan Williams
I'll change the "allowing" to "allow" in the subject so we don't have a gerund phrase. On Thu, Apr 19, 2018 at 11:22 AM, Dave Jiang wrote: > MAP_SYNC is basically a nop for device-dax. However allowing the MAP_SYNC Not "bascially", it *is* a nop for device-dax. I'll change

[PATCH] dax: allowing MAP_SYNC for device-dax mmap() to succeed

2018-04-19 Thread Dave Jiang
MAP_SYNC is basically a nop for device-dax. However allowing the MAP_SYNC flag to succeed on device-dax would make it consistent with fs-dax and reduces confusion for the application writer. This allows the application to assume that it does not need to call fsync() after writes to device-dax

Re: [PATCH ndctl v2 0/3] Documentation: add asciidoctor support

2018-04-19 Thread Takashi Iwai
On Thu, 19 Apr 2018 17:11:17 +0200, Takashi Iwai wrote: > > Hi, > > this is a revised patchset to add the support for asciidoctor to > generate documents. The reason for adding this feature is that the > future of asciidoc isn't clear as it's written in python2, which is > now hated by all

[PATCH ndctl v2 2/3] Documentation: Add the support for asciidoctor

2018-04-19 Thread Takashi Iwai
This patch adds the support for asciidoctor to be used for generating documents instead of asciidoc. It's enabled via --enable-asciidoctor configure option while asciidoc is used still as default. In addition to the configure option, a few other changes were needed: * some asciidoc.conf python

[PATCH ndctl v2 1/3] Documentation: fix title and section markers

2018-04-19 Thread Takashi Iwai
The length of the title and section marker has to be aligned with the previous line. This was caught when running asciidoctor, which is more strict than asciidoc. Also since asciidoctor doesn't like the verse block in some cases, replace the code examples with simpler markers. Signed-off-by:

[PATCH ndctl v2 0/3] Documentation: add asciidoctor support

2018-04-19 Thread Takashi Iwai
Hi, this is a revised patchset to add the support for asciidoctor to generate documents. The reason for adding this feature is that the future of asciidoc isn't clear as it's written in python2, which is now hated by all people out of sudden :) The asciidoctor support is enabled via configure

[PATCH ndctl v2 3/3] Documentation: add asciidoctor-extensions.rb to .gitignore

2018-04-19 Thread Takashi Iwai
Two new files were added for asciidoctor support. Signed-off-by: Takashi Iwai --- .gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitignore b/.gitignore index 20a04dedd862..c7d11d91398c 100644 --- a/.gitignore +++ b/.gitignore @@ -15,6 +15,8 @@ Makefile.in *.1

Re: [PATCH v8 15/18] mm, fs, dax: handle layout changes to pinned dax mappings

2018-04-19 Thread Jan Kara
On Fri 13-04-18 15:03:51, Dan Williams wrote: > On Mon, Apr 9, 2018 at 9:51 AM, Dan Williams wrote: > > On Mon, Apr 9, 2018 at 9:49 AM, Jan Kara wrote: > >> On Sat 07-04-18 12:38:24, Dan Williams wrote: > > [..] > >>> I wonder if this can be trivially