Displaying 20 results from an estimated 24 matches for "emsg".
Did you mean:
cmsg
2007 Apr 10
6
[PATCH 0/6] openssh V_4_6: minor fixes/cleanups
This patch series consists of minor fixes and cleanups I made during
update to openssh V_4_6 branch.
openssh/auth-pam.c | 9 ++++-----
openssh/auth2.c | 2 --
openssh/readconf.c | 7 ++++---
openssh/servconf.c | 14 ++++++++------
openssh/sftp-server.c | 9 ++++++---
openssh/sshd.c | 2 +-
6 files changed, 23 insertions(+), 20 deletions(-)
--
ldv
2002 Jun 16
1
multiple definition of `optind'
Any ideas of the best way around this problem? Should I just hack the
source code, or is there a magic switch somewhere I'm missing? I'm
assuming I can't just dismiss that function as OpenSSH is probably
based on the OpenBSD semantics.
=============================================================================
gcc -g -O2 -Wall -Wno-uninitialized -I. -I.
2012 Aug 30
2
[PATCH 01/11] vmci_context.patch: VMCI context list operations.
...}
+ rcu_read_unlock();
+ spin_unlock(&ctx_list.firingLock);
+
+ /* Fire event to all subscribers. */
+ arraySize = vmci_handle_arr_get_size(subscriberArray);
+ for (i = 0; i < arraySize; i++) {
+ int result;
+ struct vmci_event_msg *eMsg;
+ struct vmci_event_payld_ctx *evPayload;
+ char buf[sizeof(*eMsg) + sizeof(*evPayload)];
+
+ eMsg = (struct vmci_event_msg *)buf;
+
+ /* Clear out any garbage. */
+ memset(eMsg, 0, sizeof(*eMsg) + sizeof(*evPayload));
+...
2012 Aug 30
2
[PATCH 01/11] vmci_context.patch: VMCI context list operations.
...}
+ rcu_read_unlock();
+ spin_unlock(&ctx_list.firingLock);
+
+ /* Fire event to all subscribers. */
+ arraySize = vmci_handle_arr_get_size(subscriberArray);
+ for (i = 0; i < arraySize; i++) {
+ int result;
+ struct vmci_event_msg *eMsg;
+ struct vmci_event_payld_ctx *evPayload;
+ char buf[sizeof(*eMsg) + sizeof(*evPayload)];
+
+ eMsg = (struct vmci_event_msg *)buf;
+
+ /* Clear out any garbage. */
+ memset(eMsg, 0, sizeof(*eMsg) + sizeof(*evPayload));
+...
2012 Aug 30
0
[PATCH 08/11] vmci_queue_pair.patch: VMCI queue pair implementation.
...return entry;
+ }
+
+ return NULL;
+}
+
+/*
+ * Dispatches a queue pair event message directly into the local event
+ * queue.
+ */
+static int qp_notify_peer_local(bool attach,
+ struct vmci_handle handle)
+{
+ struct vmci_event_msg *eMsg;
+ struct vmci_event_payld_qp *ePayload;
+ /* buf is only 48 bytes. */
+ char buf[sizeof(*eMsg) + sizeof(*ePayload)];
+ uint32_t contextId;
+
+ contextId = vmci_get_context_id();
+
+ eMsg = (struct vmci_event_msg *)buf;
+ ePayload = vmci_event_data_payload(...
2012 Aug 30
0
[PATCH 08/11] vmci_queue_pair.patch: VMCI queue pair implementation.
...return entry;
+ }
+
+ return NULL;
+}
+
+/*
+ * Dispatches a queue pair event message directly into the local event
+ * queue.
+ */
+static int qp_notify_peer_local(bool attach,
+ struct vmci_handle handle)
+{
+ struct vmci_event_msg *eMsg;
+ struct vmci_event_payld_qp *ePayload;
+ /* buf is only 48 bytes. */
+ char buf[sizeof(*eMsg) + sizeof(*ePayload)];
+ uint32_t contextId;
+
+ contextId = vmci_get_context_id();
+
+ eMsg = (struct vmci_event_msg *)buf;
+ ePayload = vmci_event_data_payload(...
2012 Jun 12
11
[vmw_vmci RFCv2 00/11] VMCI for Linux
Second revision of the VMware VMCI RFC patchset. It incorperates
fixes for all the feedback about the comment blocks and style and now
passes checkpatch with 0 errors and 0 warnings. Thanks to all who
have reviewed the code thus far.
* * *
In an effort to improve the out-of-the-box experience with Linux
kernels for VMware users, VMware is working on readying the Virtual
Machine Communication
2012 Jun 12
11
[vmw_vmci RFCv2 00/11] VMCI for Linux
Second revision of the VMware VMCI RFC patchset. It incorperates
fixes for all the feedback about the comment blocks and style and now
passes checkpatch with 0 errors and 0 warnings. Thanks to all who
have reviewed the code thus far.
* * *
In an effort to improve the out-of-the-box experience with Linux
kernels for VMware users, VMware is working on readying the Virtual
Machine Communication
2016 Mar 19
3
classicupgrade migration issues
...], logger)
File "/usr/local/samba/lib/python2.7/site-packages/samba/upgrade.py",
line 317, in add_users_to_group
raise ProvisioningError("Could not add member '%s' to group '%s'
as either group or user record doesn't exist: %s" % (member_sid,
group.sid, emsg))
============================
I don't think the missing idmap (simply don't have one) database is an issue.
But the 3 lines after "Importing groups" having to do with the "Print
Operators" group are possible issues.
And then the ERROR (uncaught exception) after an atte...
2012 Jul 26
16
[vmw_vmci 00/11] VMCI for Linux
In an effort to improve the out-of-the-box experience with Linux
kernels for VMware users, VMware is working on readying the Virtual
Machine Communication Interface (vmw_vmci) and VMCI Sockets
(vmw_vsock) kernel modules for inclusion in the Linux kernel. The
purpose of this post is to acquire feedback on the vmw_vmci kernel
module. The vmw_vsock kernel module will be presented in a later post.
2012 Jul 26
16
[vmw_vmci 00/11] VMCI for Linux
In an effort to improve the out-of-the-box experience with Linux
kernels for VMware users, VMware is working on readying the Virtual
Machine Communication Interface (vmw_vmci) and VMCI Sockets
(vmw_vsock) kernel modules for inclusion in the Linux kernel. The
purpose of this post is to acquire feedback on the vmw_vmci kernel
module. The vmw_vsock kernel module will be presented in a later post.
2013 Aug 19
1
samba-tool classicupgrade throws uncaught exception
...logger)
File "/usr/local/samba/lib64/python2.6/site-packages/samba/upgrade.py",
line 316, in add_users_to_group
raise ProvisioningError("Could not add member '%s' to group '%s' as
either group or user record doesn't exist: %s" % (member_sid, group.sid,
emsg))
I'm wondering if my winbindd_idmap.tdb is invalid, as ldbdump
winbindd_idmap.tdb returns nothing, and the tdb file is only 696 bytes. If
this is the issue, can I "rebuild it" on the samba3 server?
Here's the global section of my smb.conf:
workgroup = MYDOMAIN...
2012 May 15
13
[vmw_vmci RFC 00/11] VMCI for Linux
In an effort to improve the out-of-the-box experience with Linux
kernels for VMware users, VMware is working on readying the Virtual
Machine Communication Interface (vmw_vmci) and VMCI Sockets (vmw_vsock) kernel
modules for inclusion in the Linux kernel. The purpose of this post
is to acquire feedback on the vmw_vmci kernel module. The vmw_vsock
kernel module will be presented in a later post.
2012 May 15
13
[vmw_vmci RFC 00/11] VMCI for Linux
In an effort to improve the out-of-the-box experience with Linux
kernels for VMware users, VMware is working on readying the Virtual
Machine Communication Interface (vmw_vmci) and VMCI Sockets (vmw_vsock) kernel
modules for inclusion in the Linux kernel. The purpose of this post
is to acquire feedback on the vmw_vmci kernel module. The vmw_vsock
kernel module will be presented in a later post.
2016 Dec 09
2
Samba on Debian 8; NT4 domain, win10
On Fri, 9 Dec 2016 11:11:56 +0100
"Stefan G. Weichinger via samba" <samba at lists.samba.org> wrote:
> From: "Stefan G. Weichinger via samba" <samba at lists.samba.org>
> To: samba at lists.samba.org
> Subject: Re: [Samba] Samba on Debian 8; NT4 domain, win10
> Date: Fri, 9 Dec 2016 11:11:56 +0100
> Reply-To: "Stefan G. Weichinger"
2013 Apr 17
1
user both missing and present
...logger)
File "/usr/local/samba/lib/python2.6/site-packages/samba/upgrade.py",
line 316, in add_users_to_group
raise ProvisioningError("Could not add member '%s' to group '%s' as
either group or user record doesn't exist: %s" % (member_sid, group.sid,
emsg))
I've found that the user -42545 does not exist in my samba3 as a user,
but somehow does exist as a member of the -1231 group.
I'm using the ldapsam passdb backend, and I don't understand how this
situation has occurred. In my LDAP directory the -42545 user looks just
like some o...
2016 Feb 28
0
Problem with classicupgrade / ProvisioningError
...r(g.sid)], logger)
File "/usr/local/lib/python2.7/site-packages/samba/upgrade.py", line 321, in add_users_to_group
raise ProvisioningError("Could not add member '%s' to group '%s' as either group or user record doesn't exist: %s" % (member_sid, group.sid, emsg))
-------------------------
Thanks,
Scott
2016 Dec 12
0
Samba on Debian 8; NT4 domain, win10
...s[str(g.sid)], logger)
File "/usr/lib/python2.7/dist-packages/samba/upgrade.py", line 317, in
add_users_to_group
raise ProvisioningError("Could not add member '%s' to group '%s' as
either group or user record doesn't exist: %s" % (member_sid, group.sid,
emsg))
pls advise, thanks
2016 Mar 19
0
classicupgrade migration issues
...ot;/usr/local/samba/lib/python2.7/site-packages/samba/upgrade.py",
> line 317, in add_users_to_group
> raise ProvisioningError("Could not add member '%s' to group '%s'
> as either group or user record doesn't exist: %s" % (member_sid,
> group.sid, emsg))
> ============================
>
> I don't think the missing idmap (simply don't have one) database is an issue.
> But the 3 lines after "Importing groups" having to do with the "Print
> Operators" group are possible issues.
> And then the ERROR (unca...
2016 Dec 12
2
Samba on Debian 8; NT4 domain, win10
...ger) File "/usr/lib/python2.7/dist-packages/samba/upgrade.py",
> line 317, in add_users_to_group
> raise ProvisioningError("Could not add member '%s' to group '%s'
> as either group or user record doesn't exist: %s" % (member_sid,
> group.sid, emsg))
>
> pls advise, thanks
>
>
>
Who is 'S-1-5-21-2777655458-4002997014-749295002-1000' and what is
'S-1-5-21-2777655458-4002997014-749295002-1006' ?
Rowland