I want to find a prince who is given to me by fate.
by linux-nvdimm@lists.01.org
Dear,
It's a beautiful day and i'am in a hurry to get in touch with you asap!
My name is Sevgi, and I'm from Turkey.
I really do believe in a destiny with a bright future for myself and that you could become a part of it become my true soulmate.
I do want to be next to a loving man.
I love traveling, movies, pop music, seafood, and doing crazy things, but i feel like loneliness is swallowing me intensely lonely sometimes.
I wish to find for my second half, who a man that will give me a real hope and true love!
Hope you're interested in becoming a part of my adventure and will reply back soon.
In the next letter, I'll send you my photo.
Please write me back using my personal email: sevgilonely88(a)aol.com
--------------------------
Your true soul,
Sevgi.
1 year, 7 months
Friendship, love, passion and trust - this is what I'm looking for!
by linux-nvdimm@lists.01.org
Dear,
It's a beautiful day and i'am in a hurry to get in touch with you asap!
My name is Sevgi, and I'm from Turkey.
I really do believe in a destiny with a bright future for myself and that you could become a part of it become my true soulmate.
I do want to be next to a loving man.
I love traveling, movies, pop music, seafood, and doing crazy things, but i feel like loneliness is swallowing me intensely lonely sometimes.
I wish to find for my second half, who a man that will give me a real hope and true love!
Hope you're interested in becoming a part of my adventure and will reply back soon.
In the next letter, I'll send you my photo.
Please write me back using my personal email: sevgilonely88(a)aol.com
--------------------------
Your true soul,
Sevgi.
1 year, 7 months
Searching for a beloved prince is my main goal!
by carmelina@discotherm.fr
Dear,
It's a beautiful day and i'am in a hurry to get in touch with you asap!
My name is Sevgi, and I'm from Turkey.
I really do believe in a destiny with a bright future for myself and that you could become a part of it become my true soulmate.
I do want to be next to a loving man.
I love traveling, movies, pop music, seafood, and doing crazy things, but i feel like loneliness is swallowing me intensely lonely sometimes.
I wish to find for my second half, who a man that will give me a real hope and true love!
Hope you're interested in becoming a part of my adventure and will reply back soon.
In the next letter, I'll send you my photo.
Please write me back using my personal email: sevgilonely88(a)aol.com
--------------------------
Your true soul,
Sevgi.
1 year, 7 months
I'm a princess who's waiting for her prince!
by ferhat.1993@otmail.fr
Dear,
It's a beautiful day and i'am in a hurry to get in touch with you asap!
My name is Sevgi, and I'm from Turkey.
I really do believe in a destiny with a bright future for myself and that you could become a part of it become my true soulmate.
I do want to be next to a loving man.
I love traveling, movies, pop music, seafood, and doing crazy things, but i feel like loneliness is swallowing me intensely lonely sometimes.
I wish to find for my second half, who a man that will give me a real hope and true love!
Hope you're interested in becoming a part of my adventure and will reply back soon.
In the next letter, I'll send you my photo.
Please write me back using my personal email: sevgident88(a)aol.com
--------------------------
Your true soul,
Sevgi.
1 year, 7 months
[PATCH] dax: Fix use of zero page
by Matthew Wilcox
I plucked this patch from my XArray work. It seems self-contained enough
that it could go into the DAX tree for merging this cycle.
>From 8cb56f4ba36af38814ca7b8ba030a66384e59a21 Mon Sep 17 00:00:00 2001
From: Matthew Wilcox <mawilcox(a)microsoft.com>
Date: Thu, 29 Mar 2018 22:41:18 -0400
Subject: [PATCH] dax: Fix use of zero page
Use my_zero_pfn instead of ZERO_PAGE, and pass the vaddr to it so it
works on MIPS and s390.
Signed-off-by: Matthew Wilcox <mawilcox(a)microsoft.com>
---
fs/dax.c | 10 +---------
1 file changed, 1 insertion(+), 9 deletions(-)
diff --git a/fs/dax.c b/fs/dax.c
index 6a26626f20f3..f643e8fc34ee 100644
--- a/fs/dax.c
+++ b/fs/dax.c
@@ -1006,17 +1006,9 @@ static vm_fault_t dax_load_hole(struct address_space *mapping, void *entry,
struct inode *inode = mapping->host;
unsigned long vaddr = vmf->address;
vm_fault_t ret = VM_FAULT_NOPAGE;
- struct page *zero_page;
void *entry2;
- pfn_t pfn;
-
- zero_page = ZERO_PAGE(0);
- if (unlikely(!zero_page)) {
- ret = VM_FAULT_OOM;
- goto out;
- }
+ pfn_t pfn = pfn_to_pfn_t(my_zero_pfn(vaddr));
- pfn = page_to_pfn_t(zero_page);
entry2 = dax_insert_mapping_entry(mapping, vmf, entry, pfn,
DAX_ZERO_PAGE, false);
if (IS_ERR(entry2)) {
--
2.17.0
1 year, 7 months
[PATCH] dax: dax_insert_mapping_entry always succeeds
by Matthew Wilcox
Another bugfix from the XArray work; please queue for merge.
>From 4a53cab1968d2a1022f35d00b29519970ef624e9 Mon Sep 17 00:00:00 2001
From: Matthew Wilcox <mawilcox(a)microsoft.com>
Date: Thu, 29 Mar 2018 22:47:50 -0400
Subject: [PATCH] dax: dax_insert_mapping_entry always succeeds
It does not return an error, so we don't need to check the return value
for IS_ERR(). Indeed, it is a bug to do so; with a sufficiently large
PFN, a legitimate DAX entry may be mistaken for an error return.
Signed-off-by: Matthew Wilcox <mawilcox(a)microsoft.com>
---
fs/dax.c | 18 ++----------------
1 file changed, 2 insertions(+), 16 deletions(-)
diff --git a/fs/dax.c b/fs/dax.c
index f643e8fc34ee..99c5084b845c 100644
--- a/fs/dax.c
+++ b/fs/dax.c
@@ -1005,19 +1005,13 @@ static vm_fault_t dax_load_hole(struct address_space *mapping, void *entry,
{
struct inode *inode = mapping->host;
unsigned long vaddr = vmf->address;
- vm_fault_t ret = VM_FAULT_NOPAGE;
- void *entry2;
+ vm_fault_t ret;
pfn_t pfn = pfn_to_pfn_t(my_zero_pfn(vaddr));
- entry2 = dax_insert_mapping_entry(mapping, vmf, entry, pfn,
+ dax_insert_mapping_entry(mapping, vmf, entry, pfn,
DAX_ZERO_PAGE, false);
- if (IS_ERR(entry2)) {
- ret = VM_FAULT_SIGBUS;
- goto out;
- }
ret = vmf_insert_mixed(vmf->vma, vaddr, pfn);
-out:
trace_dax_load_hole(inode, vmf, ret);
return ret;
}
@@ -1327,10 +1321,6 @@ static vm_fault_t dax_iomap_pte_fault(struct vm_fault *vmf, pfn_t *pfnp,
entry = dax_insert_mapping_entry(mapping, vmf, entry, pfn,
0, write && !sync);
- if (IS_ERR(entry)) {
- error = PTR_ERR(entry);
- goto error_finish_iomap;
- }
/*
* If we are doing synchronous page fault and inode needs fsync,
@@ -1411,8 +1401,6 @@ static vm_fault_t dax_pmd_load_hole(struct vm_fault *vmf, struct iomap *iomap,
pfn = page_to_pfn_t(zero_page);
ret = dax_insert_mapping_entry(mapping, vmf, entry, pfn,
DAX_PMD | DAX_ZERO_PAGE, false);
- if (IS_ERR(ret))
- goto fallback;
ptl = pmd_lock(vmf->vma->vm_mm, vmf->pmd);
if (!pmd_none(*(vmf->pmd))) {
@@ -1534,8 +1522,6 @@ static vm_fault_t dax_iomap_pmd_fault(struct vm_fault *vmf, pfn_t *pfnp,
entry = dax_insert_mapping_entry(mapping, vmf, entry, pfn,
DAX_PMD, write && !sync);
- if (IS_ERR(entry))
- goto finish_iomap;
/*
* If we are doing synchronous page fault and inode needs fsync,
--
2.17.0
1 year, 7 months
[ndctl PATCH] ndctl: fix libtool versioning
by Vishal Verma
Commit fdd4f06 ("libndctl, ars: add an API to retrieve clear_err_unit")
incremented the libtool versioning 'vurrent', but neglected to increment
the 'age', resulting in an soname bump.
Fixes: commit fdd4f06 ("libndctl, ars: add an API to retrieve clear_err_unit")
Reported-by: Arjan van de Ven <arjan(a)linux.intel.com>
Cc: Dan Williams <dan.j.williams(a)intel.com>
Signed-off-by: Vishal Verma <vishal.l.verma(a)intel.com>
---
Makefile.am.in | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Makefile.am.in b/Makefile.am.in
index b23b175..479d4a5 100644
--- a/Makefile.am.in
+++ b/Makefile.am.in
@@ -37,7 +37,7 @@ SED_PROCESS = \
LIBNDCTL_CURRENT=16
LIBNDCTL_REVISION=0
-LIBNDCTL_AGE=9
+LIBNDCTL_AGE=10
LIBDAXCTL_CURRENT=3
LIBDAXCTL_REVISION=0
--
2.14.3
1 year, 7 months
I need someone who can love and appreciate me.
by ryuji.takata@japan-bioserum.jp
Dear,
It's a beautiful day and i'am in a hurry to get in touch with you asap!
My name is Sevgi, and I'm from Turkey.
I really do believe in a destiny with a bright future for myself and that you could become a part of it become my true soulmate.
I do want to be next to a loving man.
I love traveling, movies, pop music, seafood, and doing crazy things, but i feel like loneliness is swallowing me intensely lonely sometimes.
I wish to find for my second half, who a man that will give me a real hope and true love!
Hope you're interested in becoming a part of my adventure and will reply back soon.
Please write me back using my personal email: sevgident88(a)aol.com
Your true soul,
Sevgi.
1 year, 7 months
I want to find a prince who is given to me by fate.
by ernen.staatsregierung@jasmin-wagner-fans.de
Dear,
It's a beautiful day and i'am in a hurry to get in touch with you asap!
My name is Sevgi, and I'm from Turkey.
I really do believe in a destiny with a bright future for myself and that you could become a part of it become my true soulmate.
I do want to be next to a loving man.
I love traveling, movies, pop music, seafood, and doing crazy things, but i feel like loneliness is swallowing me intensely lonely sometimes.
I wish to find for my second half, who a man that will give me a real hope and true love!
Hope you're interested in becoming a part of my adventure and will reply back soon.
Please write me back using my personal email: r_oken(a)aol.com
Your true soul,
Sevgi.
1 year, 7 months
ndctl create-namespace '--map' option
by Korman, Yigal
Hi Dan,
I was wandering why there's no way of checking where an existing namespace keeps its page-structs (AKA --map={mem,dev})?
'ndctl list --namespaces' doesn't seem to show this.
Is this intentional? Or just a missing feature?
Thanks,
Yigal
1 year, 7 months