search for: _compat

Displaying 5 results from an estimated 5 matches for "_compat".

Did you mean: compat
2006 May 25
0
[RFC][PATCH] Allow privcmd to support the _compat hypercalls
Hi Keir, I was encountering an odd error where Xend was tossing an EINVAL on xc_evtchn_alloc_unbound. After tracking it down, it turns out that this was because of an older userspace that was using the _compat version of the hypercalls. Since the hypervisor still supports these calls, is there a compelling reason to not allow privcmd to expose these calls? If not, please apply the following patch. Regards, Anthony Liguori _______________________________________________ Xen-devel mailing list Xen...
2020 Feb 28
0
Unable to get primary group information when using AD authentication with samba-4.10.4
...plus??? ??? ??? Use NIS+ (NIS version 3) #??? nis??? ??? ??? Use NIS (NIS version 2), also called YP #??? dns??? ??? ??? Use DNS (Domain Name Service) #??? files??? ??? ??? Use the local files in /etc #??? db??? ??? ??? Use the pre-processed /var/db files #??? compat??? ??? ??? Use /etc files plus *_compat pseudo-databases #??? hesiod??? ??? ??? Use Hesiod (DNS) for user lookups #??? [NOTFOUND=return]??? Stop searching if not found so far # passwd:????? files winbind systemd shadow:????? files systemd group:?????? files winbind systemd hosts:????? files dns myhostname bootparams: files ethers:???...
2007 Feb 08
5
FreeBSD and Winbind
...BSD? From what I have read so far, I am guessing these should be copied to /usr/lib. I have run ldconfig and it shows (using -r) libnss_winbind.so.1 and libnss_winbind.so.2 being listed in the hints file. My nsswitch has the following configuration passwd: files winbind group: files winbind group_compat: nis hosts: files dns networks: files passwd_compat: nis shells: files Any suggestions concerning how to proceed would be greatly appreciated. Thanks, Jay
2020 Feb 19
14
Unable to get primary group information when using AD authentication with samba-4.10.4
Hi, When using AD authentication from a rhel8.1 environment with samba-4.10.4 installed, information on the primary group group01 set on the AD side for any user user01 cannot be obtained. [root @ rhel8_1 ~] # id user01 uid=2001107(user01) gid=2000513(domain users) groups=2000513(domain users),2001107(oec0814e),2001103(group01) If you perform the same operation on the same AD from the
2012 Sep 04
2
[PATCH] valgrind: Support for ioctls used by Xen toolstack processes.
...MOD*/SyscallArgs* arrghs, + /*OUT*/SyscallStatus* status, + /*OUT*/UWord* flags, + __vki_u32 cmd, void *arg, int compat) +{ + PRINT("__HYPERVISOR_event_channel_op%s ( %d, %p )", + compat ? "_compat" : "", cmd, arg); + + switch (cmd) { + case EVTCHNOP_alloc_unbound: { + struct evtchn_alloc_unbound *alloc_unbound = arg; + PRE_MEM_READ("EVTCHNOP_alloc_unbound", + (Addr)&alloc_unbound->dom, sizeof(alloc_unbound->dom)); + PRE_...