mirror of
https://github.com/vivier/EMILE.git
synced 2024-11-11 01:06:00 +00:00
40 lines
735 B
C
40 lines
735 B
C
static __attribute__((used)) char* rcsid = "$CVSHeader$";
|
|
/*
|
|
*
|
|
* (c) 2004 Laurent Vivier <Laurent@lvivier.info>
|
|
*
|
|
*/
|
|
|
|
#include <sys/types.h>
|
|
#include <unistd.h>
|
|
|
|
#include "partition.h"
|
|
#include "libemile.h"
|
|
#include "emile.h"
|
|
|
|
int emile_map_read(emile_map_t *map, int part)
|
|
{
|
|
off_t offset;
|
|
int ret;
|
|
|
|
if (map->current == part)
|
|
return part;
|
|
|
|
if (part > read_long((u_int32_t*)&map->partition.MapBlkCnt))
|
|
return -1;
|
|
|
|
offset = part * sizeof(struct Partition) + sizeof(struct DriverDescriptor);
|
|
|
|
ret = lseek(map->fd, offset, SEEK_SET);
|
|
if (ret != offset)
|
|
return -1;
|
|
|
|
ret = read(map->fd, &map->partition, sizeof(struct Partition));
|
|
if (ret != sizeof(struct Partition))
|
|
return -1;
|
|
|
|
map->current = part;
|
|
|
|
return part;
|
|
}
|