In my life there is no happiness, I want to find it!
by info@slater.com
Dear,
It's a beautiful day and i'am in a hurry to get in touch with you asap!
My name is Nataliya.
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: natali(a)izmircities.info
--------------------------
Your true soul,
Nataliya.
2 years, 4 months
Friendship, love, passion and trust - this is what I'm looking for!
by xtc91177@iaoss.com
Dear,
It's a beautiful day and i'am in a hurry to get in touch with you asap!
My name is Nataliya.
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: natali(a)izmircities.info
--------------------------
Your true soul,
Nataliya.
2 years, 4 months
I'm a princess who's waiting for her prince!
by angelmoniadydt@uolmail.com.mx
Dear,
It's a beautiful day and i'am in a hurry to get in touch with you asap!
My name is Nataliya, 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: natali(a)izmircities.info
--------------------------
Your true soul,
Nataliya.
2 years, 4 months
[PATCH] libnvdimm, region_devs: stop NDD_ALIASING bit test if one test pass
by Ocean He
From: Ocean He <hehy1(a)lenovo.com>
There is no need to finish entire loop to execute NDD_ALIASING bit test
against every nvdimm->flags. In practice, all the nd_mapping->nvdimm
have the same flags.
Because the check of alias is "if (alias)" but not
"if (alias == nd_region->ndr_mappings)", there is no function change while
just save a few cycles.
Signed-off-by: Ocean He <hehy1(a)lenovo.com>
---
A test to check if all the nd_mapping->nvdimm have the same flags, using
Lenovo ThinkSystem SR630 and 4.18-rc6.
# ipmctl show -dimm
DimmID Capacity HealthState ActionRequired LockState FWVersion
0x0021 125.7 GiB Healthy 0 Disabled 01.00.00.4888
0x0121 125.7 GiB Healthy 0 Disabled 01.00.00.4888
0x1021 125.7 GiB Healthy 0 Disabled 01.00.00.4888
0x1121 125.7 GiB Healthy 0 Disabled 01.00.00.4888
# ipmctl create -f -goal -socket 0x0 PersistentMemoryType=AppDirect
# ipmctl create -f -goal -socket 0x1 PersistentMemoryType=AppDirect
# reboot, to make goal configuration take effect.
# ndctl create-namespace -r region0 -s 100m -t pmem -m fsdax
# ndctl create-namespace -r region1 -s 100m -t pmem -m fsdax
# reboot and find all the nd_mapping->nvdimm have the same flags.
drivers/nvdimm/region_devs.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/drivers/nvdimm/region_devs.c b/drivers/nvdimm/region_devs.c
index ec3543b..fc3bc1c 100644
--- a/drivers/nvdimm/region_devs.c
+++ b/drivers/nvdimm/region_devs.c
@@ -234,8 +234,10 @@ int nd_region_to_nstype(struct nd_region *nd_region)
struct nd_mapping *nd_mapping = &nd_region->mapping[i];
struct nvdimm *nvdimm = nd_mapping->nvdimm;
- if (test_bit(NDD_ALIASING, &nvdimm->flags))
+ if (test_bit(NDD_ALIASING, &nvdimm->flags)) {
alias++;
+ break;
+ }
}
if (alias)
return ND_DEVICE_NAMESPACE_PMEM;
--
1.8.3.1
2 years, 4 months