search for: pentry

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

Did you mean: entry
2009 May 14
4
[PATCH] isohybrid: user options
Allow the user to define the type of partition and its number from the command line. The following example creates partition numer 4 with type 1c (hidden FAT32 LBA): isohybrid -fstype=28 -pentry=4 hybrid.iso --- utils/isohybrid.in | 11 ++++++++--- 1 files changed, 8 insertions(+), 3 deletions(-) diff --git a/utils/isohybrid.in b/utils/isohybrid.in index 83f9dc0..d67a2b5 100644 --- a/utils/isohybrid.in +++ b/utils/isohybrid.in @@ -1,4 +1,4 @@ -#!/usr/bin/perl +#!/usr/bin/perl -s ## --...
2012 Jul 23
2
[PATCH V2] qemu-xen-traditionnal, Fix dirty logging during migration.
...t_phys_addr_t phys_addr, uint8_t lock) return last_address_vaddr + address_offset; } -void qemu_invalidate_entry(uint8_t *buffer) +void qemu_invalidate_entry(uint8_t *buffer, target_phys_addr_t access_len, + int was_written) { struct map_cache *entry = NULL, *pentry = NULL; struct map_cache_rev *reventry; @@ -210,6 +211,17 @@ void qemu_invalidate_entry(uint8_t *buffer) fprintf(logfile, "Trying to unmap address %p that is not in the mapcache!\n", buffer); return; } + if (xen_logdirty_enable && was_written) { +...
2004 Aug 19
0
net groupmap -> gidNumber=4294967295
...ffix = ldap suffix = dc=agrl,dc=ethz debuginfo: ./net groupmap add -d 5 ntgroup="Domain Admins" unixgroup=domadm \ type=d rid=512 .... [2004/08/19 10:43:52, 5] lib/smbldap.c:smbldap_search(932) smbldap_search: base => [dc=agrl,dc=ethz], filter => [(&(objectClass=sambaIdma pEntry)(gidNumber=4294967295))], scope => [2] [2004/08/19 10:43:52, 5] lib/smbldap.c:smbldap_search(932) smbldap_search: base => [ou=groups,dc=agrl,dc=ethz], filter => [(&(objectClass =sambaGroupMapping)(gidNumber=4294967295))], scope => [2] [2004/08/19 10:43:52, 4] passdb/pdb_ldap.c...
2010 Oct 28
0
[LLVMdev] Landing my new development on the trunk ...
On Wed, Oct 27, 2010 at 1:29 PM, Brian West <bnwest at rice.edu> wrote: > Here is the patch for the new Operator Strength Reduction optimization > pass that I have written.  The bulk of the code is in > > lib/Transforms/Scalar/OperatorStrengthReduce.cpp > > The algorithm finds reduction opportunities in both array accesses and > explicit multiplications within loops.
2010 Oct 27
2
[LLVMdev] Landing my new development on the trunk ...
Here is the patch for the new Operator Strength Reduction optimization pass that I have written. The bulk of the code is in lib/Transforms/Scalar/OperatorStrengthReduce.cpp The optimization is based on the algorithm described within the paper that can be found here: http://portal.acm.org/citation.cfm?id=504709.504710 Keith D. Cooper , L. Taylor Simpson , Christopher A. Vick, Operator strength
2014 Jan 30
2
[PATCH 04/05] utils/mkdiskimage.in: New option -S to sync zeroizing after each cylinder and to issue pacifier messages
utils/mkdiskimage.in: New option -S to sync zeroizing after each cylinder and to issue pacifier messages. --- utils/mkdiskimage_patched_03.in 2014-01-30 20:54:27.000000000 +0100 +++ utils/mkdiskimage.in 2014-01-30 20:59:19.000000000 +0100 @@ -139,6 +139,7 @@ if ( $file eq '' || $c < 1 || $h < 1 || print STDERR " -4 use partition entry 4 (standard for
2014 Jul 10
4
[PATCH 1/5] utils/mkdiskimage.in: Option -s caused freshly created image files to be too small by a factor of 512.
--- utils/mkdiskimage.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/mkdiskimage.in b/utils/mkdiskimage.in index 533193a..a95a077 100644 --- a/utils/mkdiskimage.in +++ b/utils/mkdiskimage.in @@ -218,7 +218,7 @@ $totalsize = $c*$h*$s; $tracks = $c*$h; # If -s is given, try to simply use truncate... -unless ($opt{'s'} && truncate(OUTPUT,
2010 Oct 28
3
[LLVMdev] Landing my new development on the trunk ...
...seful, and whether > the performance is an issue.) -loop-reduce (LSR) only looks at implicit multiplication in array accesses. The following code has an explicit multiplication within a loop that LSR will not reduce: extern float loop4(float* a, int start, int stop) { int i; float sum; float *pEntry; char *p; unsigned long offset; const unsigned int float_size = sizeof(float); sum = 0.0; p = (char*)a; for (i=start-1; i<stop; ++i) { offset = i * float_size; pEntry = (float*) (p + offset); sum += *pEntry; } return sum; } OSR also finds reductions in some esoteric array accesses that LSR m...
2014 Jan 30
1
[PATCH] Mending proposals for mkdiskimage
...-01-30 17:57:30.000000000 +0100 @@ -19,6 +19,7 @@ use bytes; use integer; use Fcntl; +use Fcntl qw(:seek); use Errno; use Cwd; use IO::Handle; # For flush() @@ -94,6 +95,7 @@ while (defined($a = shift(@ARGV))) { ($file,$c,$h,$s) = @args; $c += 0; $h += 0; $s += 0; +$zero_tail = 0; $pentry = 1; $pentry = 2 if ( $opt{'2'} ); @@ -107,7 +109,9 @@ if ( $opt{'z'} ) { if ( $opt{'M'} && $h && $s ) { # Specify size in megabytes, not in cylinders + $mb = $c; $c = ($c*1024*2)/($h*$s); + $zero_tail = ($mb * 1024 * 2 - $c * $h * $s); }...
2014 Jun 21
1
isohybrid has 2 variants
Op 2014-06-20 om 15:56 schreef Ady: > > The Perl variant, isohybrid.in, seems to be getting left behind > regarding several patches. I don't recall whether there is at least > some mention in the isohybrid docs about the existence of 2 variants > included in Syslinux (and that is in addition to other isohybrid > methods outside Syslinux). Is there any reference? >
2006 Aug 02
2
PDC problem
...Conectarea la director nu se face criptat ldap ssl = no ; Sufixul nostru ldap suffix = dc=info,dc=uvt,dc=ro ; Administratorul ldap admin dn = cn=root,dc=info,dc=uvt,dc=ro ; Sufixul pentru grupuri ldap group suffix = ou=Groups ; Sufixul pentry utilizatori ldap user suffix = ou=Users ; Sufixul pentru Masini ldap machine suffix = ou=Computers ; Sufixul pentru Idmap ldap idmap suffix = ou=Idmap ; Mapare de id-uri idmap gid = 40000-50000 idmap uid = 40000-50000 ;==============...
2013 Mar 13
16
frequently ballooning results in qemu exit
We created a 64bit SLES11 SP1 guest, and then used a script to change memory (using mem-set command) periodically (in 1 second): set 1G, set 2G, set 1G, set 2G, and so on. After a few minutes, we encountered QEMU exit due to SIGBUS error. Below is the call trace captured by gdb: The call trace: Program received signal SIGBUS, Bus error. 0x00007f94f74773d7 in memcpy () from /lib64/libc.so.6 (gdb)
2010 Aug 12
59
[PATCH 00/15] RFC xen device model support
Hi all, this is the long awaited patch series to add xen device model support in qemu; the main author is Anthony Perard. Developing this series we tried to come up with the cleanest possible solution from the qemu point of view, limiting the amount of changes to common code as much as possible. The end result still requires a couple of hooks in piix_pci but overall the impact should be very
2013 Jul 31
29
[PATCH 0/9] tools: remove or disable old/useless/unused/unmainted stuff
depends on "autoconf: regenerate configure scripts with 4.4 version" This series removes some of the really old deadwood from the tools build and makes some other things which are on their way out configurable at build time with a default depending on how far down the slope I judge them to be. * nuke in tree copy of libaio * nuke obsolete tools: xsview, miniterm, lomount & sv *