search for: defailed

Displaying 14 results from an estimated 14 matches for "defailed".

Did you mean: defaced
2017 Aug 01
2
Fw: Re: Made a join with a netbios name, which already existed, now replication errors
> But with the DNS-Tool from Windows I can see a lot of entries for samba3, all of them for services like _gc, _kerberos, _ldap, _kpasswd. Cleaned the DNS manually with the DNS application, but still I can't join. Same error.
2020 Mar 16
0
[PATCH 1/4] memremap: add an owner field to struct dev_pagemap
...-git a/include/linux/memremap.h b/include/linux/memremap.h index 6fefb09af7c3..60d97e8fd3c0 100644 --- a/include/linux/memremap.h +++ b/include/linux/memremap.h @@ -103,6 +103,9 @@ struct dev_pagemap_ops { * @type: memory type: see MEMORY_* in memory_hotplug.h * @flags: PGMAP_* flags to specify defailed behavior * @ops: method table + * @owner: an opaque pointer identifying the entity that manages this + * instance. Used by various helpers to make sure that no + * foreign ZONE_DEVICE memory is accessed. */ struct dev_pagemap { struct vmem_altmap altmap; @@ -113,6 +116,7 @@ struct dev_pagem...
2017 Aug 02
2
Fw: Re: Made a join with a netbios name, which already existed, now replication errors
...a > "normal" object ? > > ... > Unxpectedly got mismatching RDN values when checking RDN against name > of CN=NTDS > Settings,CN=SAMBA3\0ADEL:e4ee9112-7457-47e9-a603-13a1c762cecf,CN=Servers,CN=Default-First-Site-Name,CN=Sites,CN=Configuration,DC=domain,DC=university,DC=deFailed No you cannot delete something that is already deleted, but then deleted objects should be ignored and I think this is fixed in later versions. Does your Samba version have 'samba-tool domain tombstones expunge' ? if it does, you can set the '--tombstone-lifetime' to 1 day and the...
2020 Mar 16
0
[PATCH 1/2] mm: handle multiple owners of device private pages in migrate_vma
...-git a/include/linux/memremap.h b/include/linux/memremap.h index 6fefb09af7c3..60d97e8fd3c0 100644 --- a/include/linux/memremap.h +++ b/include/linux/memremap.h @@ -103,6 +103,9 @@ struct dev_pagemap_ops { * @type: memory type: see MEMORY_* in memory_hotplug.h * @flags: PGMAP_* flags to specify defailed behavior * @ops: method table + * @owner: an opaque pointer identifying the entity that manages this + * instance. Used by various helpers to make sure that no + * foreign ZONE_DEVICE memory is accessed. */ struct dev_pagemap { struct vmem_altmap altmap; @@ -113,6 +116,7 @@ struct dev_pagem...
2017 Aug 02
0
Fw: Re: Made a join with a netbios name, which already existed, now replication errors
...DC -U"administrator" --dns-backend=SAMBA_INTERNAL ... Unxpectedly got mismatching RDN values when checking RDN against name of CN=NTDS Settings,CN=SAMBA3\0ADEL:e4ee9112-7457-47e9-a603-13a1c762cecf,CN=Servers,CN=Default-First-Site-Name,CN=Sites,CN=Configuration,DC=domain,DC=university,DC=deFailed to convert object CN=NTDS Settings,CN=SAMBA3\0ADEL:e4ee9112-7457-47e9-a603-13a1c762cecf,CN=Servers,CN=Default-First-Site-Name,CN=Sites,CN=Configuration,DC=domain,DC=university,DC=de: WERR_GEN_FAILURE Failed to convert objects: WERR_GEN_FAILURE Join failed - cleaning up Deleted CN=SAMBA6,OU=Domain C...
2017 Aug 01
0
Fw: Re: Made a join with a netbios name, which already existed, now replication errors
...values[0/0] Partition[CN=Configuration,DC=domain,DC=university,DC=de] objects[1655/1655] linked_values[52/0] Unxpectedly got mismatching RDN values when checking RDN against name of CN=NTDS Settings,CN=SAMBA3,CN=Servers,CN=Default-First-Site-Name,CN=Sites,CN=Configuration,DC=domain,DC=university,DC=deFailed to convert object CN=NTDS Settings,CN=SAMBA3,CN=Servers,CN=Default-First-Site-Name,CN=Sites,CN=Configuration,DC=domain,DC=university,DC=de: WERR_GEN_FAILURE Failed to convert objects: WERR_GEN_FAILURE Join failed - cleaning up Deleted CN=SAMBA5,OU=Domain Controllers,DC=domain,DC=university,DC=de De...
2008 Nov 28
7
[Bug 18809] New: X w/ nouveau driver doesn't start on G86M [ GeForce 8400M GT] chip
http://bugs.freedesktop.org/show_bug.cgi?id=18809 Summary: X w/ nouveau driver doesn't start on G86M [GeForce 8400M GT] chip Product: xorg Version: 7.4 Platform: Other OS/Version: All Status: NEW Severity: normal Priority: medium Component: Driver/nouveau AssignedTo: nouveau
2019 Jun 26
0
[PATCH 14/25] memremap: replace the altmap_valid field with a PGMAP_ALTMAP_VALID flag
...* @altmap: pre-allocated/reserved memory for vmemmap allocations @@ -96,19 +98,27 @@ struct dev_pagemap_ops { * @dev: host device of the mapping for debug * @data: private data pointer for page_free() * @type: memory type: see MEMORY_* in memory_hotplug.h + * @flags: PGMAP_* flags to specify defailed behavior * @ops: method table */ struct dev_pagemap { struct vmem_altmap altmap; - bool altmap_valid; struct resource res; struct percpu_ref *ref; struct device *dev; enum memory_type type; + unsigned int flags; u64 pci_p2pdma_bus_offset; const struct dev_pagemap_ops *ops; };...
2017 Aug 01
2
Fw: Re: Made a join with a netbios name, which already existed, now replication errors
> Get rid of samba3 by demoting it again as you did last time, search > through sam.ldb for any mention of samba3 and samba4 (you will > probably have to use '--cross-ncs' with ldbsearch or lbdedit), then > remove them. > Now start again with a new DC, but this time, call it anything but > samba3 or samba4. Getting worse and worse .... I demoted samba3 and then also
2020 Mar 16
14
ensure device private pages have an owner v2
When acting on device private mappings a driver needs to know if the device (or other entity in case of kvmppc) actually owns this private mapping. This series adds an owner field and converts the migrate_vma code over to check it. I looked into doing the same for hmm_range_fault, but as far as I can tell that code has never been wired up to actually work for device private memory, so instead of
2020 Mar 16
4
ensure device private pages have an owner
When acting on device private mappings a driver needs to know if the device (or other entity in case of kvmppc) actually owns this private mapping. This series adds an owner field and converts the migrate_vma code over to check it. I looked into doing the same for hmm_range_fault, but as far as I can tell that code has never been wired up to actually work for device private memory, so instead of
2000 Jul 14
1
Clarity on using SAMBA and Mapping to a Sun Server
My response is below. > -----Original Message----- > From: Gerald Carter [SMTP:gcarter@valinux.com] > Sent: Wednesday, July 12, 2000 12:29 PM > To: Hawks, Steven L > Cc: Multiple recipients of list SAMBA > Subject: Re: Can Samba be Installed on a Solaris 2.6 operating > system? > > "Hawks, Steven L" wrote: > > > > Can Samba be Installed on a
2019 Jun 26
41
dev_pagemap related cleanups v3
Hi Dan, Jérôme and Jason, below is a series that cleans up the dev_pagemap interface so that it is more easily usable, which removes the need to wrap it in hmm and thus allowing to kill a lot of code Note: this series is on top of Linux 5.2-rc5 and has some minor conflicts with the hmm tree that are easy to resolve. Diffstat summary: 32 files changed, 361 insertions(+), 1012 deletions(-) Git
2019 Jun 17
34
dev_pagemap related cleanups v2
Hi Dan, Jérôme and Jason, below is a series that cleans up the dev_pagemap interface so that it is more easily usable, which removes the need to wrap it in hmm and thus allowing to kill a lot of code Note: this series is on top of the rdma/hmm branch + the dev_pagemap releas fix series from Dan that went into 5.2-rc5. Git tree: git://git.infradead.org/users/hch/misc.git