search for: mcs

Displaying 20 results from an estimated 587 matches for "mcs".

Did you mean: cs
2003 Dec 01
0
No subject
...http://lists.samba.org/mailman/listinfo/samba>, <mailto:samba-request@lists.samba.org?subject=unsubscribe> List-Archive: http://lists.samba.org/pipermail/samba/ > if you use the 2.2.0-rpm ^^^^^^^^ there's rpm for Solaris ?? Alain Return-Path: <mark@mcs.vuw.ac.nz> Delivered-To: samba@lists.samba.org Received: from kaukau.mcs.vuw.ac.nz (kaukau.mcs.vuw.ac.nz [130.195.5.20]) by lists.samba.org (Postfix) with ESMTP id C47B2486E for <samba@lists.samba.org>; Mon, 21 May 2001 20:02:18 -0700 (PDT) Received: from city-art.mcs.vuw.ac.nz (city-a...
2018 Nov 22
2
Extending Samba-4 Schema to get Microsoft LAPS working
Hi, I am trying to get the Microsoft LAPS working in my samba-4 AD environment. Microsoft LAPS requires us to extend the schema and add two attributes "ms-Mcs-AdmPwd" (Stores the password in plain text) and "ms-Mcs-AdmPwdExpirationTime" (Stores the time to reset the password). I have added the Group Policy part of Microsoft LAPS to Windows RSAT (on Windows Server 208 R2) and also been able to extend the samba-4 schema by adding the two...
2023 Mar 10
1
Winbind auhentication
>>>>> "Luciano" == Luciano Mannucci <luciano at vespaperitivo.it> writes: > I'm trying to set up a dovecot server so that it authenticates local > user via /etc/passwd (I'm on a Freebsd 13.1) and via winbindd for > those that it cannot find localy. The samba suite is alive and well, > postfix gets happily mail from domain users and saves it with
2008 Feb 27
2
Winbind+ldap = core dump
...mail server). At the moment we are generating about 10gb/hour of core dumps which a cron job is keeping cleaned up. Has anyone got any ideas on this? also is it possible to tell samba/winbind not to do core dumps? smb.conf (only shown one share as we have lots!): [global] printer admin = @"MCS+sysadmin","MCS+root","MCS+administrator" add machine script = /usr/sbin/useradd -d /dev/null -g samba-clients -s /bin/false -M %u server string = Meadows log level = 1 syslog = 0 # vfs objects = extd_audit log file = /var/log/samba/%U.smbd.log max log size= 100000 pri...
2009 Dec 07
3
Regular expression help
...ke this i want to extract 9831019 from this string i used a regular expresion \d+ by which i can only make it to see 7 and returns. This type of number(9831019) appears in any part of the string and is definitely more than 5 digits all the time and i want to give that as a condition UV7C11-F9-E1 MCS#9831019 MCS Lot #9512516" how do i go abt it Ramya -- View this message in context: http://n4.nabble.com/Regular-expression-help-tp954834p954834.html Sent from the R help mailing list archive at Nabble.com.
2014 May 30
0
[PATCH v11 14/16] pvqspinlock: Add qspinlock para-virtualization support
...Queue | + * | Head |<-------| Node | .... <-| Tail | + * +------+ +------+ +------+ + * | | | + * V V V + * +------+ +------+ +------+ + * mcs_spinlock |locked| |locked| |locked| + * | = 1 |------->| = 0 |-> .... | = 0 | + * +------+ next +------+ next +------+ + * + * The PV support code for queue spinlock is roughly the same as that + * of the ticket spinlock. Each CPU waiting for the...
2019 Jan 18
2
Can't find symbol from llvm backend
...new GlobalVariable(*m, tmp->getType(), true, llvm::GlobalValue::ExternalLinkage, tmp, "test_llvm_var"); where tmp is a function. Then I tried to access this global variable in the back end MachineFunctionPass like this: MCContext& MCC = MF.getContext(); MCSymbol* MCS = MCC.lookupSymbol("test_llvm_var"); if (MCS == NULL) { errs() << ">>> MCSymbol is null\n"; } else { MCS->dump(); } (MF is a MachineFunction). However I always get MCS=...
2019 Jan 19
3
Can't find symbol from llvm backend
...::ExternalLinkage, tmp, "test_llvm_var"); > > > > where tmp is a function. > > > > Then I tried to access this global variable in the back end > MachineFunctionPass like this: > > > > MCContext& MCC = MF.getContext(); > MCSymbol* MCS = MCC.lookupSymbol("test_llvm_var"); > if (MCS == NULL) { > errs() << ">>> MCSymbol is null\n"; > } > else { > MCS->dump(); > } > > > > (MF...
2014 May 07
0
[PATCH v10 09/19] qspinlock: Prepare for unfair lock support
If unfair lock is supported, the lock acquisition loop at the end of the queue_spin_lock_slowpath() function may need to detect the fact the lock can be stolen. Code are added for the stolen lock detection. A new qhead macro is also defined as a shorthand for mcs.locked. Signed-off-by: Waiman Long <Waiman.Long at hp.com> --- kernel/locking/qspinlock.c | 26 +++++++++++++++++++------- 1 files changed, 19 insertions(+), 7 deletions(-) diff --git a/kernel/locking/qspinlock.c b/kernel/locking/qspinlock.c index e98d7d4..9e7659e 100644 --- a/kernel/loc...
2017 May 04
4
Xen package security updates for jessie 4.4, XSA-213, XSA-214
...multi->args[2], multi->args[3], + multi->args[4]); ++ return mc_continue; /* XXX XSA-213 remains! */ + } + + /* +--- xen-4.4.1.orig/xen/common/multicall.c ++++ xen-4.4.1/xen/common/multicall.c +@@ -40,6 +40,7 @@ do_multicall( + struct mc_state *mcs = &current->mc_state; + uint32_t i; + int rc = 0; ++ enum mc_disposition disp = mc_continue; + + if ( unlikely(__test_and_set_bit(_MCSF_in_multicall, &mcs->flags)) ) + { +@@ -50,7 +51,7 @@ do_multicall( + if ( unlikely(!guest_handle_okay(ca...
2014 Jun 17
2
[PATCH 01/11] qspinlock: A simple generic 4-byte queue spinlock
> + * The basic principle of a queue-based spinlock can best be understood > + * by studying a classic queue-based spinlock implementation called the > + * MCS lock. The paper below provides a good description for this kind > + * of lock. > + * > + * http://www.cise.ufl.edu/tr/DOC/REP-1992-71.pdf > + * > + * This queue spinlock implementation is based on the MCS lock, however to make > + * it fit the 4 bytes we assume spinlock_t to be, a...
2014 Jun 17
2
[PATCH 01/11] qspinlock: A simple generic 4-byte queue spinlock
> + * The basic principle of a queue-based spinlock can best be understood > + * by studying a classic queue-based spinlock implementation called the > + * MCS lock. The paper below provides a good description for this kind > + * of lock. > + * > + * http://www.cise.ufl.edu/tr/DOC/REP-1992-71.pdf > + * > + * This queue spinlock implementation is based on the MCS lock, however to make > + * it fit the 4 bytes we assume spinlock_t to be, a...
2014 May 07
0
[PATCH v10 08/19] qspinlock: Make a new qnode structure to support virtualization
In order to support additional virtualization features like unfair lock and para-virtualized spinlock, it is necessary to store additional CPU specific data into the queue node structure. As a result, a new qnode structure is created and the mcs_spinlock structure is now part of the new structure. It is also necessary to expand arch_mcs_spin_lock_contended() to the underlying while loop as additional code will need to be inserted into the loop. Signed-off-by: Waiman Long <Waiman.Long at hp.com> --- kernel/locking/qspinlock.c | 3...
2017 May 04
3
Bug#861660: Xen package security updates for jessie 4.4, XSA-213, XSA-214
Moritz Muehlenhoff writes ("Re: Xen package security updates for jessie 4.4, XSA-213, XSA-214"): > On Thu, May 04, 2017 at 05:06:07PM +0100, Ian Jackson wrote: > > I have fixed these in stretch but the jessie package remains unfixed. > > I think I may be able to find some backports somewhere. Would that be > > useful ? Is anyone else working on this ? > >
2007 Jun 28
1
registering Asterisk on SIP/Nortel MCS server
hello there... our telecom sold us VoIP-numbering, managed by Nortel MCS I successfully registered Ekiga to it ( http://sol.chel.skbkontur.ru/ekiga.png) What exactly do I have to write in sip.conf to make Asterisk register on this SIP ? Cheers, Kate -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.digium.com/pipermail/asteri...
2019 Jul 24
0
Extending Samba-4 Schema to get Microsoft LAPS working
Hi, I just did this a view days agon. These where the ldifs I used. laps_1.ldif dn: CN=ms-MCS-AdmPwd,CN=Schema,cn=configuration,DC=X changetype: add objectClass: attributeSchema ldapDisplayName: ms-MCS-AdmPwd adminDisplayName: ms-MCS-AdmPwd adminDescription: Stores password of local Administrator account on workstation attributeId: 1.2.840.113556.1.8000.2554.50051.45980.28112.18903.35903.66...
2019 Jul 23
2
Extending Samba-4 Schema to get Microsoft LAPS working
Am 01.07.19 um 07:48 schrieb Stefan G. Weichinger via samba: > Am 23.11.18 um 03:33 schrieb Ardos via samba: >> Hi, >> >> Thank you very much for your support. >> >> With your ldif, one of the attributes got added to computer container. >> Second one is having a trouble. The modification command is reporting it >> is not able to find the attribute
2007 Oct 12
10
[PATCH 00/10] REVIEW: Xen patches for 2.6.24
This is my current set of updates to Xen for 2.6.24. This is largely a bugfix set, and a couple of them are also relevent to 2.6.23. These are in the pre-x86 merge form; I'll update them once the merge goes into git. Quick overview: - remove some dead code in arch/i386/mm/init.c - clean up some duplicate includes - when sending an IPI, yield the vcpu if the destination doesn't have
2007 Oct 12
10
[PATCH 00/10] REVIEW: Xen patches for 2.6.24
This is my current set of updates to Xen for 2.6.24. This is largely a bugfix set, and a couple of them are also relevent to 2.6.23. These are in the pre-x86 merge form; I'll update them once the merge goes into git. Quick overview: - remove some dead code in arch/i386/mm/init.c - clean up some duplicate includes - when sending an IPI, yield the vcpu if the destination doesn't have
2007 Oct 12
10
[PATCH 00/10] REVIEW: Xen patches for 2.6.24
This is my current set of updates to Xen for 2.6.24. This is largely a bugfix set, and a couple of them are also relevent to 2.6.23. These are in the pre-x86 merge form; I'll update them once the merge goes into git. Quick overview: - remove some dead code in arch/i386/mm/init.c - clean up some duplicate includes - when sending an IPI, yield the vcpu if the destination doesn't have