search for: psize

Displaying 20 results from an estimated 72 matches for "psize".

Did you mean: size
2008 Sep 28
3
Stubdom and blktap
Recently we had a try of stubdom, whose general status is good. One issue we found is with aio/sync blktap as backend, disk performance is obviously slower, and there are some IDE kernel error messages (like irq timeout) at boot time. Another issue (not stubdom specific) comes from blktap''s support for QCOW image which is based on a backing file. We never tried this configure
2009 Dec 15
7
ZFS Dedupe reporting incorrect savings
...272 on disk, 140 in core DDT-sha256-zap-unique: 278241 entries, size 274 on disk, 142 in core DDT histogram (aggregated over all DDTs): bucket allocated referenced ______ ______________________________ ______________________________ refcnt blocks LSIZE PSIZE DSIZE blocks LSIZE PSIZE DSIZE ------ ------ ----- ----- ----- ------ ----- ----- ----- 1 272K 17.0G 17.0G 17.0G 272K 17.0G 17.0G 17.0G 2 32.7K 2.05G 2.05G 2.05G 65.6K 4.10G 4.10G 4.10G 4 15 960K 960K 960K...
2010 Apr 05
2
Regarding problem with encoding / decoding
Hi, Tank you for your reply. I have tried the sample programs given the manual and done encoding and decoding a wave file. That is working fine. I have already read the manual and API reference. But this problem did not occured with the wave file encoding/decoding. While capturing the data from MIC and encoding/decoding is giving this problem. Thanks and Regards, Vijender Reddy, -----
2010 Apr 20
0
Regarding problem with encoding / decoding
...t; k++) // storing the encoded data in outbuffer outbuffer[k]= cbits[m++]; I am repeatedly doing until the input buffer is over. The encoded data is storing in outbuffer[]. In decoding: I am reading first byte stored in size variable then reading the data. psize = buffer[i]; //size of the encoded data frame j=0; for(int k=i+1; k <= i+psize;k++) cbits[j++]= buffer[k]; //Reading encoded data speex_bits_read_from(&bits, cbits, psize); /*Decode the frame*/ speex_decode_int(state, &bits, data); for...
2011 May 19
1
Specifying Splits WhenUusing rpart
I am using the package rpart to explore various classification structures. The call looks like: seekhi1<-rpart(pvol~spec+a1+psize+eppres+numpt+icds+bivalcrt+stents+ppshare+ nhosp+nyrs,data=dat,method="class", control=rpart.control(minsplit=30,xval=10)) The output is 1) root 198 87 1 (0.5606061 0.4393939) 2) psize=1,2 122 43 1 (0.6475410 0.3524590) 4) a1=3 23 5 1 (0.7826087 0.2173913...
2010 Jun 29
2
fresh install of centos looking for non-existant /dev/hda : /dev/hda: open failed: No medium found
# lvm pvs /dev/hda: open failed: No medium found Couldn't find device with uuid r5HNPO-l18V-XfJ7-9RXY-AaWC-a4YY-3oL5h7. PV VG Fmt Attr PSize PFree /dev/sda2 VolGroup01 lvm2 a- 232.72G 0 /dev/sdb1 VolGroup00 lvm2 a- 232.81G 32.00M unknown device VolGroup00 lvm2 a- 232.72G 32.00M I just installed the OS, did some tweaks, but did nothing to hardware. There was no /dev/hda listed when I went through the partitio...
2012 Apr 22
1
problems with PV snapshots
...time on the standard LVM partition and the other time on the snapshot partition so te PV is foudn to be duplicate and I cannot mount it. > pvs Found duplicate PV 5ZTDCmWHDH6M04nl58Wyyi3nYG8BOCRo: using /dev/mapper/mpathl not /dev/mapper/mpathi PV VG Fmt Attr PSize PFree /dev/mapper/mpathk NetCluster0 lvm2 a-- 1.67t 1020.00m I need a hint on how to fix this problem. I need to access the snaphot volume to backup my data but I am unable to do it... thank you very much Rick
2014 Jul 30
1
Shrinking a RAID array
My google-fu appears to be weak today... I currently have 8*4Tb in a RAID6. So far I'm only using 6Tb PV VG Fmt Attr PSize PFree Used /dev/md6 Large lvm2 a-- 21.83t 15.37t 6.46t Let's say I wanted to remove 2 of these disks from the array and shrink it down to a 6*4Tb How would I do this? -- rgds Stephen
2014 Jun 22
0
[PATCH 3/6] utils/isohybrid.c: Correct end block address of first GPT partition
...-797,7 +797,7 @@ initialise_gpt(uint8_t *gpt, uint32_t current, uint32_t alternate, int primary) memcpy(part->partGUID, iso_uuid, sizeof(uuid_t)); memcpy(part->partTypeGUID, basic_partition, sizeof(uuid_t)); part->firstLBA = lendian_64(0); - part->lastLBA = lendian_64(psize); + part->lastLBA = lendian_64(psize - 1); memcpy(part->name, part_name_iso, 28); gpt += sizeof(struct gpt_part_header); -- 1.8.4.2
2020 Jul 16
0
[RFC for qemu v4 2/2] virtio_balloon: Add dcvq to deflate continuous pages
..._balloon_handle_output(VirtIODevice *vdev, VirtQueue *vq) > pa = (hwaddr) p << VIRTIO_BALLOON_PFN_SHIFT; > offset += 4; > > - if (vq == s->icvq) { > + if (vq == s->icvq || vq == s->dcvq) { > uint32_t psize_ptr; > if (iov_to_buf(elem->out_sg, elem->out_num, offset, &psize_ptr, 4) != 4) { > break; > @@ -383,8 +385,9 @@ static void virtio_balloon_handle_output(VirtIODevice *vdev, VirtQueue *vq) > balloon_inflate_page(s, sec...
2010 May 05
1
VDI size on local repository always 0
Hello guys, I''m working on a cloud computing project involving Xen Hypervisor. I looked for the issue described in the subject in old posts but no success. I''m using the local storage repository and I can''t set physical_utilisation and virtual_utilisation via xen API because XendVDI.py has hardcoded the 0 value for local repository while is passed for QcoW storage
2024 Mar 15
1
[PATCH] drm/nouveau/dp: Fix incorrect return code in r535_dp_aux_xfer()
...5.c b/drivers/gpu/drm/nouveau/nvkm/engine/disp/r535.c index 6a0a4d3b8902d..027867c2a8c5b 100644 --- a/drivers/gpu/drm/nouveau/nvkm/engine/disp/r535.c +++ b/drivers/gpu/drm/nouveau/nvkm/engine/disp/r535.c @@ -1080,7 +1080,7 @@ r535_dp_aux_xfer(struct nvkm_outp *outp, u8 type, u32 addr, u8 *data, u8 *psize) ret = nvkm_gsp_rm_ctrl_push(&disp->rm.objcom, &ctrl, sizeof(*ctrl)); if (ret) { nvkm_gsp_rm_ctrl_done(&disp->rm.objcom, ctrl); - return PTR_ERR(ctrl); + return ret; } memcpy(data, ctrl->data, size); -- 2.43.0
2011 Aug 05
3
isolinux: Generate GPT and Mac bootable images
...part_uuid, iso_uuid; uint8_t mode = 0; -enum { VERBOSE = 1 }; +enum { VERBOSE = 1 , EFI = 2 , MAC = 4}; /* user options */ uint16_t head = 64; /* 1 <= head <= 256 */ @@ -61,10 +66,150 @@ uint16_t ve[16]; uint32_t catoffset = 0; uint32_t c = 0, cc = 0, cs = 0; +uint32_t psize = 0, isosize = 0; + /* boot catalogue parameters */ uint32_t de_lba = 0; uint16_t de_seg = 0, de_count = 0, de_mbz2 = 0; uint8_t de_boot = 0, de_media = 0, de_sys = 0, de_mbz1 = 0; +uint32_t efi_lba = 0, mac_lba = 0; +uint16_t efi_count = 0, mac_count = 0; +uint8_t efi_boot = 0, efi_media = 0,...
2012 Jun 01
2
installation and configuration documentation for XCP
...ylinders Units = cylinders of 16128 * 512 = 8257536 bytes Device Boot Start End Blocks Id System /dev/sda1 * 1 266306 2147483647+ ee EFI GPT the pvs command gives me the following: PV VG Fmt Attr PSize PFree /dev/sda3 VG_XenStorage-5a32ce29-c98e-1488-273e-263c65d47479 lvm2 a- 2.72T 2.62T the vgs command gives me the following: VG #PV #LV #SN Attr VSize VFree VG_XenStorage-5a32ce29-c98e-1488-273e-263c65d47479 1 3 0 wz--n- 2.72T 2.62...
2012 May 06
1
isohybrid.c, problem reports and questions
...12 bytes. ----------------------------------------------------------------------- The "Last LBA" of the first GPT entry is 1329448, the size of the ISO image in blocks of 512. But Wikipedia states that this number is inclusive. Thus in initialise_gpt() part->lastLBA = lendian_64(psize); one should probably subtract 1 from psize before submitting it to lendian_64(). ----------------------------------------------------------------------- The second Apple partition map entry points to the VFAT image file /isolinux/efiboot.img but announces as partition type "Apple_HFS"....
2011 Nov 06
0
[PATCH] drm/nouveau: add nouveau.vram_limit module option
.../gpu/drm/nouveau/nvc0_vram.c b/drivers/gpu/drm/nouveau/nvc0_vram.c index ce984d5..b3cee9c 100644 --- a/drivers/gpu/drm/nouveau/nvc0_vram.c +++ b/drivers/gpu/drm/nouveau/nvc0_vram.c @@ -132,6 +132,7 @@ nvc0_vram_init(struct drm_device *dev) NV_DEBUG(dev, "%d: mem_amount 0x%08x\n", part, psize); dev_priv->vram_size += (u64)psize << 20; } + nouveau_limit_vram(dev); /* if all controllers have the same amount attached, there's no holes */ if (uniform) { -- 1.7.7
2017 Feb 22
2
how to resize a partition of a disk define as a physical volume
I should have added the output of pvs: [root ~]# pvs PV VG Fmt Attr PSize PFree /dev/xvda2 cl_vm731611 lvm2 a-- 9.00g 0 PFree still show 0. It should show 5g. Also: [root ~]# pvdisplay /dev/xvda2 --- Physical volume --- PV Name /dev/xvda2 VG Name cl_vm731611 PV Size 9.00 GiB / not usable 2.00 MiB Allocatable...
2013 Sep 23
28
[PATCH 0/2] add LZ4 kernel decompression support
Linux 3.11 added respective support, so I think we should follow suit. 1: xen: add LZ4 decompression support 2: libxc: add LZ4 decompression support Signed-off-by: Jan Beulich <jbeulich@suse.com>
2010 May 31
1
Working example of logical storage pool and volume creation?
...all volume creation on it fails. Here's what I'm finding so far: Prior to any storage pool work, only the host boot drive (sda) is in lvm. # vgs VG #PV #LV #SN Attr VSize VFree vg_host2 1 3 0 wz--n- 465.27g 0 # pvs PV VG Fmt Attr PSize PFree /dev/sda2 vg_host2 lvm2 a- 465.27g 0 # ls -la /dev/mapper total 0 drwxr-xr-x. 2 root root 120 Jun 1 03:12 . drwxrwxrwt. 21 root root 3920 Jun 1 03:12 .. crw-rw----. 1 root root 10, 58 May 31 14:08 control lrwxrwxrwx. 1 root root 7 May 31 14:10 vg_...
2008 Jul 24
1
Help recovering from an LVM issue
...ely to be any chance of recovering from this ? vgscan Reading all physical volumes. This may take a while... Found volume group "VolGroup01" using metadata type lvm2 Found volume group "VolGroup00" using metadata type lvm2 pvs --units=h PV VG Fmt Attr PSize PFree /dev/sda2 VolGroup00 lvm2 a- 9.88G 0 /dev/sda3 VolGroup00 lvm2 a- 90.00G 0 /dev/sdb1 VolGroup01 lvm2 a- 19.97G 19.97G lvdisplay --- Logical volume --- LV Name /dev/VolGroup00/LogVol00 VG Name VolGroup00 LV UUID cE...