Displaying 20 results from an estimated 34 matches for "458752".
2008 May 06
4
DeviceIoControl + IOCTL_DISK_GET_DRIVE_GEOMETRY problem
...this
handle = get_osfhandle(fh.fileno)
if handle == INVALID_HANDLE_VALUE
puts "get_osfhandle failed"
fh.close
exit
end
buf = 0.chr * 24 # sizeof(DISK_GEOMETRY)
bytes = [0].pack(''L'')
bool = DeviceIoControl(
handle,
IOCTL_DISK_GET_DRIVE_GEOMETRY(), # 458752
nil,
0,
buf,
buf.size,
bytes,
0
)
# Fails here
unless bool
puts "DeviceIoControl failed: " + get_last_error
fh.close
exit
End
fh.close
Thanks,
Dan
PS - I''ve added several IOCTL macro methods to Windows::DeviceIO in CVS
(part of windows-pr).
This...
2020 Mar 04
2
Can't use DNS Manager in MMC on Samba 4.12.0
...signature.//
//dcerpc_pull_auth_trailer: auth_pad_length 0//
//Unsealed 112 bytes, with 76 bytes header/signature.//
//???? DnssrvComplexOperation2: struct DnssrvComplexOperation2//
//??????? in: struct DnssrvComplexOperation2//
//??????????? dwClientVersion????????? : DNS_CLIENT_VERSION_LONGHORN
(458752)//
//??????????? dwSettingFlags?????????? : 0x00000000 (0)//
//??????????? pwszServerName?????????? : *//
//??????????????? pwszServerName?????????? : 'xxx.xxx.xxx.xxx'//
//??????????? pszZone????????????????? : NULL//
//??????????? pszOperation???????????? : *//
//??????????????? pszOperat...
2015 Apr 05
4
Is efiboot.img required?
...by including the Linux kernel and the initramfs
None of the ISOs i know has this stuff in the FAT image.
There must be some way for GRUB/GRUB2 to escape from FAT
into the ISO.
debian-7.7.0-amd64-netinst.iso does the job by a
bootx64.efi binary of 421888 bytes. It's the only file
in the FAT (of 458752 bytes).
It might be a workaround for ISOLINUX to bring ISOLINUX
configuration and a minimal Linux into the FAT which is
then able to start the desired operating system from
the ISO.
> but that's sub-optimal since I need to have them in two places.
Especially since the size of an El Torit...
2004 Aug 16
1
huge array with floats: allocation error
Hi
After searching through a couples of documents and the mailing list I
dare to ask it here
I need to define an array with the size 64 x 64 x 16 x 1000 for
single-precision floating-point numbers. With 1G RAM I get always the
error:
"cannot allocate vector of size 458752 Kb"
"reached total allocation of 1022MB: see help(memory.size)"
I consulted memory.size() but it didn't help me.
so my question: I know that there is NO float type in R. Is there any
way to solve my problem, without increasing the RAM?
many thanks
Cheers!
Christoph
2020 Mar 14
2
Can't use DNS Manager in MMC on Samba 4.12.0
...h_pad_length 0//
>> //Unsealed 112 bytes, with 76 bytes header/signature.//
>> // DnssrvComplexOperation2: struct DnssrvComplexOperation2//
>> // in: struct DnssrvComplexOperation2//
>> // dwClientVersion : DNS_CLIENT_VERSION_LONGHORN
>> (458752)//
>> // dwSettingFlags : 0x00000000 (0)//
>> // pwszServerName : *//
>> // pwszServerName : 'xxx.xxx.xxx.xxx'//
>> // pszZone : NULL//
>> // pszOperation...
2020 Mar 15
3
Can't use DNS Manager in MMC on Samba 4.12.0
...aled 112 bytes, with 76 bytes header/signature.//
>>>> // DnssrvComplexOperation2: struct DnssrvComplexOperation2//
>>>> // in: struct DnssrvComplexOperation2//
>>>> // dwClientVersion : DNS_CLIENT_VERSION_LONGHORN
>>>> (458752)//
>>>> // dwSettingFlags : 0x00000000 (0)//
>>>> // pwszServerName : *//
>>>> // pwszServerName : 'xxx.xxx.xxx.xxx'//
>>>> // pszZone : NULL//
>...
2019 Nov 19
5
[PATCH 0/2] rhv-upload: Complete refactoring
Fix NameError introduced by inocomplete change to extract create_transfer() by
extracting cancel_transfer() function.
Finally extract finallize_transfer() function, dealing with the poorly
documented and over complicated oVirt SDK.
Tested with:
libguestfs-1.40.2-4.fc30.x86_64
nbdkit-1.12.8-1.fc30.x86_64
Tested flows:
- Successful import
- Error in close() - by injecting long sleep in vdsm
2019 Jun 27
0
Re: [libnbd PATCH] generator: Add support for namespace constants
...ATE_HOLE|
+
LIBNBD_STATE_ZERO));
/* allocated zero offset 512k size 64k */
- assert (entries[4] == 65536); assert (entries[5] == 2);
+ assert (entries[4] == 65536); assert (entries[5] ==
LIBNBD_STATE_ZERO);
/* hole|zero offset 576k size 448k */
- assert (entries[6] == 458752); assert (entries[7] == 3);
+ assert (entries[6] == 458752); assert (entries[7] ==
(LIBNBD_STATE_HOLE|
+
LIBNBD_STATE_ZERO));
}
}
else if (strcmp (metacontext, bitmap) == 0) {
@@ -117,7 +118,7 @@ main (int argc, char *argv[])
exit (EXIT_FAILURE);
}
- nbd_add_meta_context (...
2011 Oct 25
1
Page allocation failure
...0*512kB 1*1024kB 0*2048kB 0*4096kB = 1884kB
[488054.896733] 306011 total pagecache pages
[488054.896741] 338 pages in swap cache
[488054.896748] Swap cache stats: add 1457, delete 1119, find 106250/106300
[488054.896757] Free swap = 1044524kB
[488054.896764] Total swap = 1048568kB
[488054.900014] 458752 pages RAM
[488054.900014] 9907 pages reserved
[488054.900014] 303804 pages shared
[488054.900014] 151251 pages non-shared
[488054.900014] SLUB: Unable to allocate memory on node -1 (gfp=0x20)
[488054.900014] cache: kmalloc-256, object size: 256, buffer size: 256, default order: 0, min order: 0
[4...
2018 Mar 26
4
Re: [PATCH v7 6/6] v2v: Add -o rhv-upload output mode (RHBZ#1557273).
On Mon, Mar 26, 2018 at 11:41 AM Richard W.M. Jones <rjones@redhat.com>
wrote:
> On Sun, Mar 25, 2018 at 08:05:14PM +0000, Nir Soffer wrote:
> > When using the sdk, you can select both the image format and sparse, so
> you
> > can create invalid combinations. oVirt selects the allocation for you.
> >
> > storage type image format sparse | allocation
2015 Apr 05
0
Is efiboot.img required?
> None of the ISOs i know has this stuff in the FAT image.
> There must be some way for GRUB/GRUB2 to escape from FAT
> into the ISO.
> debian-7.7.0-amd64-netinst.iso does the job by a
> bootx64.efi binary of 421888 bytes. It's the only file
> in the FAT (of 458752 bytes).
I'll try to use it to see if it works.
> It might be a workaround for ISOLINUX to bring ISOLINUX
> configuration and a minimal Linux into the FAT which is
> then able to start the desired operating system from
> the ISO.
That's just what I did :-) Didn't though a...
2015 Apr 05
0
Is efiboot.img required?
...ia Syslinux wrote:
> None of the ISOs i know has this stuff in the FAT image.
> There must be some way for GRUB/GRUB2 to escape from FAT
> into the ISO.
> debian-7.7.0-amd64-netinst.iso does the job by a
> bootx64.efi binary of 421888 bytes. It's the only file
> in the FAT (of 458752 bytes).
[ long time syslinux user -- thanks all!! ]
At the risk of contributing to the 'urban legends' and the 'salads' I
have found this sequence of blog posts about UEFI/ISO/xorriso/GRUB2
enlightening:
http://lukeluo.blogspot.com/2013/06/grub-how-to-2-make-boot-able-iso-with.ht...
2018 Mar 29
0
Re: [PATCH v7 6/6] v2v: Add -o rhv-upload output mode (RHBZ#1557273).
...tor 25343488: Input/output error
On the server side we see it's something to do with the ticket
expiring:
2018-03-29 12:59:24,215 INFO (Thread-18701) [web] START [192.168.0.128] PUT /images/4e8567f6-939d-471f-8ea8-e64d172c0a26
2018-03-29 12:59:24,216 INFO (Thread-18701) [images] Writing 458752 bytes at offset 12975407104 to /rhev/data-center/mnt/ham0.home.annexia.org:_mnt_ovirt-data/7b4ae32d-bc79-4368-b683-3e0b58b64bf6/images/b4c31e0c-16c0-47d0-a162-9db4357a2dc5/89d70696-2075-4d30-b30e-86465060f677 for ticket 4e8567f6-939d-471f-8ea8-e64d172c0a26
2018-03-29 12:59:24,272 INFO (Thread-18...
2020 Mar 05
0
Can't use DNS Manager in MMC on Samba 4.12.0
...l_auth_trailer: auth_pad_length 0//
> //Unsealed 112 bytes, with 76 bytes header/signature.//
> // DnssrvComplexOperation2: struct DnssrvComplexOperation2//
> // in: struct DnssrvComplexOperation2//
> // dwClientVersion : DNS_CLIENT_VERSION_LONGHORN
> (458752)//
> // dwSettingFlags : 0x00000000 (0)//
> // pwszServerName : *//
> // pwszServerName : 'xxx.xxx.xxx.xxx'//
> // pszZone : NULL//
> // pszOperation : *//
&g...
2024 Mar 18
0
smbd rejects all and any authentication attempts due to a corrupted "gencache.tdb"
...021, 5] ../../source3/lib/gencache.c:89(gencache_init)
Opening cache file at /var/cache/samba/gencache.tdb
[2024/03/18 08:22:50.790204, 1] ../../lib/tdb_wrap/tdb_wrap.c:65(tdb_wrap_log)
tdb(/var/cache/samba/gencache.tdb): tdb_mutex_open_ok[/var/cache/samba/gencache.tdb]: Mutex size changed from 458752 to 401408
.Opening /var/cache/samba/gencache.tdb failed: Invalid argument
[2024/03/18 08:22:50.790473, 4] ../../source3/smbd/sec_ctx.c:443(pop_sec_ctx)
pop_sec_ctx (0, 0) - sec_ctx_stack_ndx = 0
[2024/03/18 08:22:50.790538, 3] ../../source3/smbd/smb2_server.c:3962(smbd_smb2_request_error_ex)
s...
2005 May 17
0
data overrun on SCSI drive
...Have seen Data Phase. Length = 255. NumSGs = 1.
sg[0] - Addr 0x03ace40 : Length 255
(scsi0:A:1:0): data overrun detected in Data-in phase. Tag == 0x2.
(scsi0:A:1:0): Have seen Data Phase. Length = 255. NumSGs = 1.
sg[0] - Addr 0x03ace40 : Length 255
scsi scan: 255 byte inquiry failed with code 458752. Consider
BLIST_INQUIRY_36 for this device
Vendor: WDIGTL Model: WDE18300 ULTRA2 Rev: 1.30
Type: Direct-Access ANSI SCSI revision: 02
scsi0:A:1:0: Tagged Queuing enabled. Depth 4
SCSI device sdb: 35761710 512-byte hdwr sectors (18310 MB)
SCSI device sdb: drive cach...
2005 Jul 20
0
rsync breaks suddenly
...recv 32768 at 98304
data recv 32768 at 131072
data recv 32768 at 163840
data recv 32768 at 196608
data recv 32768 at 229376
data recv 32768 at 262144
data recv 32768 at 294912
data recv 32768 at 327680
data recv 32768 at 360448
data recv 32768 at 393216
data recv 32768 at 425984
data recv 32768 at 458752
data recv 32768 at 491520
data recv 32768 at 524288
data recv 32768 at 557056
data recv 32768 at 589824
data recv 32768 at 622592
data recv 32768 at 655360
data recv 32768 at 688128
data recv 32768 at 720896
data recv 32768 at 753664
data recv 32768 at 786432
data recv 32768 at 819200
data recv 327...
2020 Sep 26
0
[PATCH nbdinfo v2] info: Add a --map option for displaying allocation metadata.
...test $( jq -r '.[0].offset' < $out ) -eq 0
+test $( jq -r '.[0].length' < $out ) -eq 131072
+test $( jq -r '.[0].type' < $out ) -eq 0
+test $( jq -r '.[0].description' < $out ) = "allocated"
+
+test $( jq -r '.[3].offset' < $out ) -eq 458752
+test $( jq -r '.[3].length' < $out ) -eq 589824
+test $( jq -r '.[3].type' < $out ) -eq 3
+test $( jq -r '.[3].description' < $out ) = "hole,zero"
diff --git a/info/info-map-base-allocation.sh b/info/info-map-base-allocation.sh
new file mode 100755
index...
2020 Mar 14
0
Can't use DNS Manager in MMC on Samba 4.12.0
...; //Unsealed 112 bytes, with 76 bytes header/signature.//
> > > // DnssrvComplexOperation2: struct DnssrvComplexOperation2//
> > > // in: struct DnssrvComplexOperation2//
> > > // dwClientVersion : DNS_CLIENT_VERSION_LONGHORN
> > > (458752)//
> > > // dwSettingFlags : 0x00000000 (0)//
> > > // pwszServerName : *//
> > > // pwszServerName : 'xxx.xxx.xxx.xxx'//
> > > // pszZone : NULL//
> > &g...
2019 Jun 27
3
[libnbd PATCH] generator: Add support for namespace constants
This just defines the namespace, its contexts and related constants and the only
supported one is currently base:allocation. The names of the constants are not
very future-proof, but shorter than LIBNBD_META_NS_CONTEXT_BASE_ALLOCATION or
similar.
Currently the output looks like this:
/* "base" namespace */
/* "base" namespace contexts */
/* "base:allocation"