09edac3ab5
The Xen virtual machine monitor allows running several virtual machines on a single physical machine. The xentools33 package contains the tools to create, destroy and control the virtual machines. The xentools33 package contains the tools for Xen 3.3.x
39 lines
687 B
C
39 lines
687 B
C
#include <inttypes.h>
|
|
#include <sys/ioctl.h>
|
|
#include <sys/disklabel.h>
|
|
#include "tapdisk.h"
|
|
#include "blk.h"
|
|
|
|
int blk_getimagesize(int fd, uint64_t *size)
|
|
{
|
|
int rc;
|
|
struct disklabel dl;
|
|
|
|
*size = 0;
|
|
rc = ioctl(fd, DIOCGDINFO, &dl);
|
|
if (rc) {
|
|
DPRINTF("ERR: DIOCGDINFO failed, couldn't stat image");
|
|
return -EINVAL;
|
|
}
|
|
|
|
*size = dl.d_secsize * dl.d_secpercyl;
|
|
|
|
return 0;
|
|
}
|
|
|
|
int blk_getsectorsize(int fd, uint64_t *sector_size)
|
|
{
|
|
int rc;
|
|
struct disklabel dl;
|
|
|
|
*sector_size = DEV_BSIZE;
|
|
rc = ioctl(fd, DIOCGDINFO, &dl);
|
|
if (rc) {
|
|
DPRINTF("ERR: DIOCGDINFO failed, couldn't stat image");
|
|
return 0; /* fallback to DEV_BSIZE */
|
|
}
|
|
|
|
*sector_size = dl.d_secsize;
|
|
return 0;
|
|
}
|
|
|