Displaying 20 results from an estimated 95 matches for "prv".
Did you mean:
drv
2011 Sep 01
4
[PATCH] xen,credit1: Add variable timeslice
...int32_t runq_sort;
+ /* Period of master and tick in milliseconds */
+ unsigned tslice_ms, tick_period_us, ticks_per_tslice;
+ unsigned credits_per_tslice;
};
static void csched_tick(void *_cpu);
@@ -326,7 +325,7 @@ csched_free_pdata(const struct scheduler
spin_lock_irqsave(&prv->lock, flags);
- prv->credit -= CSCHED_CREDITS_PER_ACCT;
+ prv->credit -= prv->credits_per_tslice;
prv->ncpus--;
cpu_clear(cpu, prv->idlers);
cpu_clear(cpu, prv->cpus);
@@ -360,19 +359,19 @@ csched_alloc_pdata(const struct schedule
spin_lock_irqsave(...
2013 Nov 13
3
[Patch] credit: Update other parameters when setting tslice_ms
...a/xen/common/sched_credit.c b/xen/common/sched_credit.c
old mode 100644
new mode 100755
index 28dafcf..db5512e
--- a/xen/common/sched_credit.c
+++ b/xen/common/sched_credit.c
@@ -1071,6 +1071,17 @@ csched_dom_cntl(
return 0;
}
+static inline void
+__csched_set_tslice(struct csched_private *prv, unsigned timeslice)
+{
+ prv->tslice_ms = timeslice;
+ prv->ticks_per_tslice = CSCHED_TICKS_PER_TSLICE;
+ if ( prv->tslice_ms < prv->ticks_per_tslice )
+ prv->ticks_per_tslice = 1;
+ prv->tick_period_us = prv->tslice_ms * 1000 / prv->ticks_per_tslice;...
2013 Sep 02
5
[BUG] unfairness in Xen's credit scheduler
...the time slice to be *greater* than 30ms, the VM gets
much *less* CPU cycles than its allocation
-when setting the time slice to be *smaller* than 30ms, the VM gets
much *more* CPU cycles than its allocation
Problem happens in sched_credit.c/csched_sys_cntl():
--------------------
after changing prv->tslice_ms, other parameters *should* also be
changed accordingly:
csched_sys_cntl() {
...
prv->tslice_ms = params->tslice_ms;
prv->ratelimit_us = params->ratelimit_us;
-------
/* my patch: these parameters should also be changed */
prv->ticks_per_tslice...
2010 Mar 29
6
AD Auth Trusted Domain issues
...ind on our companies email
servers. That part is currently working. I have been trying to add an
existing "Trusted" child domain and allow authentication from that
domain as well. I am part of the way there, but not quite to the
functional point as of yet. Our primary domain is rdomainprv or
rdomain.prv and the child domain is kid.rdomain.prv. Below is what I am
seeing, followed by my configs. Also, we had to open ports 88, 139 and
389 (I believe those are the correct ports, though the networking guys
opened them) from the email/winbind server to the child domain, at the
firewall....
2024 Mar 09
2
Call for testing: OpenSSH 9.7
...>
Running the testsuite on Solaris 9 I see this:
set -xe ; if /export/home/tgc/buildpkg/openssh/src/openssh-git/ssh -Q
key | grep -q ^ssh-rsa ; then \
/export/home/tgc/buildpkg/openssh/src/openssh-git/ssh-keygen
-if
/export/home/tgc/buildpkg/openssh/src/openssh-git/regress/rsa_ssh2.prv |
diff - /export/home/tgc/buildpkg/openssh/src
/openssh-git/regress/rsa_openssh.prv ; \
tr '\n' '\r'
</export/home/tgc/buildpkg/openssh/src/openssh-git/regress/rsa_ssh2.prv
>
/export/home/tgc/buildpkg/openssh/src/openssh-git/regress/rsa_ssh2_cr.prv
; \...
2000 May 01
1
tick marks on mfrow=c(3,3) plot
.... I
would like tick marks on both the x and y axix of all 9 plots in my array.
I am generating plots using the following two functions
three.by.three.plot <- function(ss)
{
par(mfrow=c(3,3))
sub.plot(ss,1.5,0.02)
sub.plot(ss,1.5,0.04)
etc
par(mfrow=c(1,1))
}
sub.plot <- function(ss,gamma, prv)
{
plot(c(5,20,50),ss[ss[,"gam"]==gamma & ss[,"prev"]==prv,"x_Power"],
type = "n", xlab="4Nc", ylab="Power",xlim=c(0,55), ylim=c(0,1),las=1)
lines(c(5,20,50),ss[ss[,"gam"]==gamma & ss[,"prev"]==prv,"x...
2007 Apr 03
2
HPDinterval problem
...8727 0.025668727
pv2toa 0.004343653 0.004343653
sesblf2 0.074507427 0.074507427
sesblf3 -0.037144631 -0.037144631
sesblf4 0.155998825 0.155998825
log(prov.(In)) -1.547675380 -0.345723770
log(prov.pv1o) -5.610048117 -4.407086692
atanh(prv.(I).pv1) -2.509960360 -1.663905782
log(prov.(In)) -4.030294678 -2.823797787
log(prov.pv1t) -9.370781684 -8.165302813
atanh(prv.(I).pv1) -1.146944941 -0.289800204
log(pm.(In)) -4.420270387 -2.597929912
log(pm.pv1o) -7.227500164 -5.401277510
atanh(pm.(I).pv1) -2.172644329...
2018 Apr 12
4
OpenSSH 7.7 t1 script breakage
..............................................................................
................................................ 352 tests ok
test_hostkeys: .................. 18 tests ok
test_match: ...... 6 tests ok
/home/git/openssh-portable/ssh-keygen -if
/home/git/openssh-portable/regress/rsa_ssh2.prv | diff -
/home/git/openssh-portable/regress/rsa_openssh.prv
tr '\n' '\r' </home/git/openssh-portable/regress/rsa_ssh2.prv >
/home/git/openssh-portable/regress/rsa_ssh2_cr.prv
/home/git/openssh-portable/ssh-keygen -if
/home/git/openssh-portable/regress/rsa_ssh2_cr.prv | diff -...
2011 Feb 05
2
kernel messages question
Hi
I keep getting these messages on this one box. There are issues with at least one of the drives in it, but since there are some 80 drives in it, that''s not really an issue. I just want to know, if anyone knows, what this kernel message mean. Anyone?
Feb 5 19:35:57 prv-backup scsi: [ID 365881 kern.info] /pci at 7a,0/pci8086,340e at 7/pci1000,3140 at 0 (mpt1):
Feb 5 19:35:57 prv-backup Log info 0x31080000 received for target 13.
Feb 5 19:35:57 prv-backup scsi_status=0x0, ioc_status=0x804b, scsi_state=0x0
Vennlige hilsener / Best regards
roy
--
Roy Si...
2014 Nov 10
0
User's DPAPI/backupkey protected data lost when changing domain password
...ce
the repitition in the samba log and the Windows event log as the client
tries over-and-over again. I don't see any specific error in the samba log
though.
Any advice on getting this backupkey/DPAPI functionality to work very much
appreciated.
In the below the domain controller is
soda.mbsw.prv.mercedes-benzsouthwest.co.uk and the client is ex-wrk-11, the
user whose password is being changed is wtr30.
Audit failure log entries in Windows Event Viewer (from Windows 7 Pro PC),
there are nine entries total but the other seven appear to be duplicates of
the two below:
Log Name: Securi...
2010 Oct 26
3
[PATCH 0 of 3] credit2 updates
Address some credit2 issues. This patch series, along with the recent
changes to the cpupools interface, should address some of the strange
credit2 instability.
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
http://lists.xensource.com/xen-devel
2016 Dec 14
2
Call for testing: OpenSSH 7.4
On Tue, Dec 13, 2016 at 06:22:41PM -0700, The Doctor wrote:
> On Wed, Dec 14, 2016 at 12:12:21PM +1100, Damien Miller wrote:
> > On Tue, 13 Dec 2016, The Doctor wrote:
> >
> > > Got you. Will run make tests. So far running on
> > > FreeBSD 11.0 using openssl 1.0.2 current
> >
> > Thanks!
>
> Point of concern
>
> run test sftp-perm.sh
2008 Sep 27
2
Graphical net install
Is it at all possible to do a graphical netinstall ?
I am using centos 5.2, and i have been doing net installs (pxe) for a
while in console mode...
--
Test <test at remedial-teacher.nl>
2004 Jan 14
0
Problems with smbldap-tools 0.8.2 and Samba 3
...radd.pl -w -g 553 %u
Then, while I try to add a workstation to my domain, the script
adds a posixAccount, and then I get this error:
------
[2004/01/14 18:15:49, 1] passdb/pdb_ldap.c:ldapsam_modify_entry(1173)
ldapsam_modify_entry: Failed to add user
dn=uid=nodo03$,ou=Computers,dc=guaydil,dc=prv with: Already exists
[2004/01/14 18:15:49, 0] passdb/pdb_ldap.c:ldapsam_add_sam_account(1575)
ldapsam_add_sam_account: failed to modify/add user with uid = nodo03$
(dn = uid=nodo03$,ou=Computers,dc=guaydil,dc=prv)
[2004/01/14 18:15:49, 0] pc_server/srv_samr_nt.c:_samr_create_user(2330)
could...
2008 May 07
2
Request for generic engine support
...--------------------------------------------
=============================================
key_load_engine_private() added to authfile.c:
---------------------------------------------
48a49,50
> #include <openssl/conf.h>
> #include <openssl/engine.h>
611a614,679
> return prv;
> }
>
> /* Arguments passphrase and commentp are not used */
> Key *
> key_load_engine_private(char *engkey, const char *conffile,
> const char* stanza, const char *passphrase, char **commentp)
> {
> ENGINE *eng = NULL;
> EVP_PKEY *pk = NULL;
>...
2024 Mar 10
1
Call for testing: OpenSSH 9.7
...s/Makefile
+++ b/regress/Makefile
@@ -156,7 +156,7 @@ TEST_SSH_SSHKEYGEN?=ssh-keygen
CPPFLAGS=-I..
t1:
- set -xe ; if ${TEST_SSH_SSH} -Q key | grep -q ^ssh-rsa ; then \
+ set -xe ; if ${TEST_SSH_SSH} -Q key | grep -q "^ssh-rsa" ; then \
${TEST_SSH_SSHKEYGEN} -if ${.CURDIR}/rsa_ssh2.prv | diff - ${.CURDIR}/rsa_openssh.prv ; \
tr '\n' '\r' <${.CURDIR}/rsa_ssh2.prv > ${.OBJDIR}/rsa_ssh2_cr.prv ; \
${TEST_SSH_SSHKEYGEN} -if ${.OBJDIR}/rsa_ssh2_cr.prv | diff - ${.CURDIR}/rsa_openssh.prv ; \
@@ -165,31 +165,31 @@ t1:
fi
t2:
- set -xe ; if ${TEST_SSH_SSH...
2007 Feb 19
1
SBS2ke Ad integration
I have a couple of workstations that are perfect candidates for Linux at
a client's location. The only think i am shaky on is getting CentOS 4.4
to integrate into the AD domain. Any tips links would be highly
appreciated.
--
My "Foundation" verse:
Isa 54:17 No weapon that is formed against thee shall prosper; and
every tongue that shall rise against thee in judgment thou
2019 Aug 06
2
[PATCH v2] Remove sshkey_load_private()
...const char *, const char *,
struct sshkey **);
int sshkey_load_private_type(int, const char *, const char *,
diff --git a/ssh-keygen.c b/ssh-keygen.c
index ea3c0e63888..215693eaca6 100644
--- a/ssh-keygen.c
+++ b/ssh-keygen.c
@@ -275,7 +275,8 @@ load_identity(char *filename)
struct sshkey *prv;
int r;
- if ((r = sshkey_load_private(filename, "", &prv, NULL)) == 0)
+ if ((r = sshkey_load_private_type(KEY_UNSPEC, filename, "",
+ &prv, NULL)) == 0)
return prv;
if (r != SSH_ERR_KEY_WRONG_PASSPHRASE)
fatal("Load key \"%s\": %s",...
2012 Sep 09
2
Patch for ssh-keygen to allow conversion of public key to openssh format
...ERR_error_string(ERR_get_error(), NULL));
+ if (x != NULL)
+ X509_free(x);
+ return NULL;
+ } else {
+ pub = key_new(KEY_UNSPEC);
+ pub->rsa = RSAPublicKey_dup(EVP_PKEY_get1_RSA(pk));
+ pub->type = KEY_RSA;
+ name = "rsa w/o comment";
+#ifdef DEBUG_PK
+ RSA_print_fp(stderr, prv->rsa, 8);
+#endif
+ }
+
+ fclose(fp);
+
+ if (pk != NULL)
+ EVP_PKEY_free(pk);
+ if (x != NULL)
+ X509_free(x);
+
+ if (pub != NULL && commentp)
+ *commentp = xstrdup(name);
+ debug("read PEM public key done: type %s",
+ pub ? key_type(pub) : "<unknown>")...
2018 Jun 22
2
Domain trust and browsing users and groups problem
Hi list,
we have a forest trust of two domains. One domain in US (us.root.prv)
running exclusively on Windows 2012 R2 and one in EU
(spreadshirt.private) running exclusively Sernet Samba 4.8.2-11. Both
domains run functional level "2008 R2". The trust validates successful
using "samba-tool domain trust validate" and in "Domains and trusts".
My...