needed since https://github.com/bminor/musl/commit/25e6fee27f4a293728dd15b659170e7b9c7db9bc -- diff --git a/Grow.c b/Grow.c index 9c6fc95..bb21333 100644 --- a/Grow.c +++ b/Grow.c @@ -4268,10 +4268,10 @@ static int grow_backup(struct mdinfo *sr bsb.magic[15] = '2'; for (i = 0; i < dests; i++) if (part) - lseek64(destfd[i], destoffsets[i] + + lseek(destfd[i], destoffsets[i] + __le64_to_cpu(bsb.devstart2)*512, 0); else - lseek64(destfd[i], destoffsets[i], 0); + lseek(destfd[i], destoffsets[i], 0); rv = save_stripes(sources, offsets, disks, chunk, level, layout, dests, destfd, offset * 512 * odata, @@ -4290,14 +4290,14 @@ static int grow_backup(struct mdinfo *sr ((char*)&bsb.sb_csum2)-((char*)&bsb)); rv = -1; - if ((unsigned long long)lseek64(destfd[i], + if ((unsigned long long)lseek(destfd[i], destoffsets[i] - 4096, 0) != destoffsets[i] - 4096) break; if (write(destfd[i], &bsb, 512) != 512) break; if (destoffsets[i] > 4096) { - if ((unsigned long long)lseek64(destfd[i], destoffsets[i]+stripes*chunk*odata, 0) != + if ((unsigned long long)lseek(destfd[i], destoffsets[i]+stripes*chunk*odata, 0) != destoffsets[i]+stripes*chunk*odata) break; if (write(destfd[i], &bsb, 512) != 512) @@ -4347,7 +4347,7 @@ static int forget_backup(int dests, int if (memcmp(bsb.magic, "md_backup_data-2", 16) == 0) bsb.sb_csum2 = bsb_csum((char*)&bsb, ((char*)&bsb.sb_csum2)-((char*)&bsb)); - if ((unsigned long long)lseek64(destfd[i], destoffsets[i]-4096, 0) != + if ((unsigned long long)lseek(destfd[i], destoffsets[i]-4096, 0) != destoffsets[i]-4096) rv = -1; if (rv == 0 && write(destfd[i], &bsb, 512) != 512) @@ -4375,7 +4375,7 @@ static void validate(int afd, int bfd, u */ if (afd < 0) return; - lseek64(bfd, offset - 4096, 0); + lseek(bfd, offset - 4096, 0); if (read(bfd, &bsb2, 512) != 512) fail("cannot read bsb"); if (bsb2.sb_csum != bsb_csum((char*)&bsb2, @@ -4406,12 +4406,12 @@ static void validate(int afd, int bfd, u } } - lseek64(bfd, offset, 0); + lseek(bfd, offset, 0); if ((unsigned long long)read(bfd, bbuf, len) != len) { //printf("len %llu\n", len); fail("read first backup failed"); } - lseek64(afd, __le64_to_cpu(bsb2.arraystart)*512, 0); + lseek(afd, __le64_to_cpu(bsb2.arraystart)*512, 0); if ((unsigned long long)read(afd, abuf, len) != len) fail("read first from array failed"); if (memcmp(bbuf, abuf, len) != 0) { @@ -4439,10 +4439,10 @@ static void validate(int afd, int bfd, u bbuf = xmalloc(abuflen); } - lseek64(bfd, offset+__le64_to_cpu(bsb2.devstart2)*512, 0); + lseek(bfd, offset+__le64_to_cpu(bsb2.devstart2)*512, 0); if ((unsigned long long)read(bfd, bbuf, len) != len) fail("read second backup failed"); - lseek64(afd, __le64_to_cpu(bsb2.arraystart2)*512, 0); + lseek(afd, __le64_to_cpu(bsb2.arraystart2)*512, 0); if ((unsigned long long)read(afd, abuf, len) != len) fail("read second from array failed"); if (memcmp(bbuf, abuf, len) != 0) @@ -4719,7 +4719,7 @@ int Grow_restart(struct supertype *st, s st->ss->getinfo_super(st, &dinfo, NULL); st->ss->free_super(st); - if (lseek64(fd, + if (lseek(fd, (dinfo.data_offset + dinfo.component_size - 8) <<9, 0) < 0) { pr_err("Cannot seek on device %d\n", i); @@ -4819,7 +4819,7 @@ int Grow_restart(struct supertype *st, s goto nonew; /* No new data here */ } } - if (lseek64(fd, __le64_to_cpu(bsb.devstart)*512, 0)< 0) { + if (lseek(fd, __le64_to_cpu(bsb.devstart)*512, 0)< 0) { second_fail: if (verbose) pr_err("Failed to verify secondary backup-metadata block on %s\n", @@ -4827,7 +4827,7 @@ int Grow_restart(struct supertype *st, s continue; /* Cannot seek */ } /* There should be a duplicate backup superblock 4k before here */ - if (lseek64(fd, -4096, 1) < 0 || + if (lseek(fd, -4096, 1) < 0 || read(fd, &bsb2, sizeof(bsb2)) != sizeof(bsb2)) goto second_fail; /* Cannot find leading superblock */ if (bsb.magic[15] == '1') --- a/raid6check.c +++ b/raid6check.c @@ -211,7 +211,7 @@ int autorepair(int *disk, unsigned long for(j = 0; j < (chunk_size >> CHECK_PAGE_BITS); j++) { if(page_to_write[j] == 1) { int slot = block_index_for_slot[disk[j]]; - lseek64(source[slot], offsets[slot] + start * chunk_size + j * CHECK_PAGE_SIZE, SEEK_SET); + lseek(source[slot], offsets[slot] + start * chunk_size + j * CHECK_PAGE_SIZE, SEEK_SET); write_res += write(source[slot], blocks[disk[j]] + j * CHECK_PAGE_SIZE, CHECK_PAGE_SIZE); @@ -284,9 +284,9 @@ int manual_repair(int chunk_size, int sy } int write_res1, write_res2; - off64_t seek_res; + off_t seek_res; - seek_res = lseek64(source[fd1], + seek_res = lseek(source[fd1], offsets[fd1] + start * chunk_size, SEEK_SET); if (seek_res < 0) { fprintf(stderr, "lseek failed for failed_disk1\n"); @@ -294,7 +294,7 @@ int manual_repair(int chunk_size, int sy } write_res1 = write(source[fd1], blocks[failed_slot1], chunk_size); - seek_res = lseek64(source[fd2], + seek_res = lseek(source[fd2], offsets[fd2] + start * chunk_size, SEEK_SET); if (seek_res < 0) { fprintf(stderr, "lseek failed for failed_disk2\n"); @@ -379,7 +379,7 @@ int check_stripes(struct mdinfo *info, i goto exitCheck; } for (i = 0 ; i < raid_disks ; i++) { - off64_t seek_res = lseek64(source[i], offsets[i] + start * chunk_size, + off_t seek_res = lseek(source[i], offsets[i] + start * chunk_size, SEEK_SET); if (seek_res < 0) { fprintf(stderr, "lseek to source %d failed\n", i); --- a/restripe.c +++ b/restripe.c @@ -581,7 +581,7 @@ int save_stripes(int *source, unsigned long long *offsets, raid_disks, level, layout); if (dnum < 0) abort(); if (source[dnum] < 0 || - lseek64(source[dnum], + lseek(source[dnum], offsets[dnum] + offset, 0) < 0 || read(source[dnum], buf+disk * chunk_size, chunk_size) != chunk_size) { @@ -754,8 +754,8 @@ int restore_stripes(int *dest, unsigned long long *offsets, raid_disks, level, layout); if (src_buf == NULL) { /* read from file */ - if (lseek64(source, read_offset, 0) != - (off64_t)read_offset) { + if (lseek(source, read_offset, 0) != + (off_t)read_offset) { rv = -1; goto abort; } @@ -816,7 +816,7 @@ int restore_stripes(int *dest, unsigned long long *offsets, } for (i=0; i < raid_disks ; i++) if (dest[i] >= 0) { - if (lseek64(dest[i], + if (lseek(dest[i], offsets[i]+offset, 0) < 0) { rv = -1; goto abort; @@ -866,7 +866,7 @@ int test_stripes(int *source, unsigned long long *offsets, int disk; for (i = 0 ; i < raid_disks ; i++) { - if ((lseek64(source[i], offsets[i]+start, 0) < 0) || + if ((lseek(source[i], offsets[i]+start, 0) < 0) || (read(source[i], stripes[i], chunk_size) != chunk_size)) { free(q); diff --git a/super-ddf.c b/super-ddf.c index 3f304cd..7b10568 100644 --- a/super-ddf.c +++ b/super-ddf.c @@ -809,7 +809,7 @@ static int load_ddf_header(int fd, unsig if (lba >= size-1) return 0; - if (lseek64(fd, lba<<9, 0) < 0) + if (lseek(fd, lba<<9, 0) < 0) return 0; if (read(fd, hdr, 512) != 512) @@ -863,7 +863,7 @@ static void *load_section(int fd, struct else offset += be64_to_cpu(super->active->secondary_lba); - if ((unsigned long long)lseek64(fd, offset<<9, 0) != (offset<<9)) { + if ((unsigned long long)lseek(fd, offset<<9, 0) != (offset<<9)) { if (dofree) free(buf); return NULL; @@ -882,7 +882,7 @@ static int load_ddf_headers(int fd, stru get_dev_size(fd, NULL, &dsize); - if (lseek64(fd, dsize-512, 0) < 0) { + if (lseek(fd, dsize-512, 0) < 0) { if (devname) pr_err("Cannot seek to anchor block on %s: %s\n", devname, strerror(errno)); @@ -1689,7 +1689,7 @@ static int copy_metadata_ddf(struct supe if (!get_dev_size(from, NULL, &dsize)) goto err; - if (lseek64(from, dsize-512, 0) < 0) + if (lseek(from, dsize-512, 0) < 0) goto err; if (read(from, buf, 512) != 512) goto err; @@ -1708,8 +1708,8 @@ static int copy_metadata_ddf(struct supe bytes = dsize - offset; - if (lseek64(from, offset, 0) < 0 || - lseek64(to, offset, 0) < 0) + if (lseek(from, offset, 0) < 0 || + lseek(to, offset, 0) < 0) goto err; while (written < bytes) { int n = bytes - written; @@ -2967,7 +2967,7 @@ static int __write_ddf_structure(struct header->openflag = 1; header->crc = calc_crc(header, 512); - lseek64(fd, sector<<9, 0); + lseek(fd, sector<<9, 0); if (write(fd, header, 512) < 0) goto out; @@ -3031,7 +3031,7 @@ out: header->openflag = 0; header->crc = calc_crc(header, 512); - lseek64(fd, sector<<9, 0); + lseek(fd, sector<<9, 0); if (write(fd, header, 512) < 0) ret = 0; @@ -3084,7 +3084,7 @@ static int _write_super_to_disk(struct d if (!__write_ddf_structure(d, ddf, DDF_HEADER_SECONDARY)) return 0; - lseek64(fd, (size-1)*512, SEEK_SET); + lseek(fd, (size-1)*512, SEEK_SET); if (write(fd, &ddf->anchor, 512) < 0) return 0; @@ -3836,7 +3836,7 @@ static int store_super_ddf(struct supert return 1; memset(buf, 0, 512); - lseek64(fd, dsize-512, 0); + lseek(fd, dsize-512, 0); rc = write(fd, buf, 512); free(buf); if (rc < 0) --- a/super-intel.c +++ b/super-intel.c @@ -3195,7 +3195,7 @@ static int read_imsm_migr_rec(int fd, st unsigned long long dsize; get_dev_size(fd, NULL, &dsize); - if (lseek64(fd, dsize - (sector_size*MIGR_REC_SECTOR_POSITION), + if (lseek(fd, dsize - (sector_size*MIGR_REC_SECTOR_POSITION), SEEK_SET) < 0) { pr_err("Cannot seek to anchor block: %s\n", strerror(errno)); @@ -3386,7 +3386,7 @@ static int write_imsm_migr_rec(struct su continue; get_dev_size(sd->fd, NULL, &dsize); - if (lseek64(sd->fd, dsize - (MIGR_REC_SECTOR_POSITION * + if (lseek(sd->fd, dsize - (MIGR_REC_SECTOR_POSITION * sector_size), SEEK_SET) < 0) { pr_err("Cannot seek to anchor block: %s\n", @@ -4511,7 +4511,7 @@ static int load_imsm_mpb(int fd, struct return 1; } - if (lseek64(fd, dsize - (sector_size * 2), SEEK_SET) < 0) { + if (lseek(fd, dsize - (sector_size * 2), SEEK_SET) < 0) { if (devname) pr_err("Cannot seek to anchor block on %s: %s\n", devname, strerror(errno)); @@ -4580,7 +4580,7 @@ static int load_imsm_mpb(int fd, struct } /* read the extended mpb */ - if (lseek64(fd, dsize - (sector_size * (2 + sectors)), SEEK_SET) < 0) { + if (lseek(fd, dsize - (sector_size * (2 + sectors)), SEEK_SET) < 0) { if (devname) pr_err("Cannot seek to extended mpb on %s: %s\n", devname, strerror(errno)); @@ -6111,7 +6111,7 @@ static int add_to_super_imsm(struct supe /* clear migr_rec when adding disk to container */ memset(super->migr_rec_buf, 0, MIGR_REC_BUF_SECTORS*MAX_SECTOR_SIZE); - if (lseek64(fd, size - MIGR_REC_SECTOR_POSITION*member_sector_size, + if (lseek(fd, size - MIGR_REC_SECTOR_POSITION*member_sector_size, SEEK_SET) >= 0) { if ((unsigned int)write(fd, super->migr_rec_buf, MIGR_REC_BUF_SECTORS*member_sector_size) != @@ -6336,7 +6336,7 @@ static int write_super_imsm(struct super unsigned long long dsize; get_dev_size(d->fd, NULL, &dsize); - if (lseek64(d->fd, dsize - sector_size, + if (lseek(d->fd, dsize - sector_size, SEEK_SET) >= 0) { if ((unsigned int)write(d->fd, super->migr_rec_buf, @@ -6419,7 +6419,7 @@ static int write_ppl_header(unsigned lon ppl_hdr->checksum = __cpu_to_le32(~crc32c_le(~0, buf, PPL_HEADER_SIZE)); - if (lseek64(fd, ppl_sector * 512, SEEK_SET) < 0) { + if (lseek(fd, ppl_sector * 512, SEEK_SET) < 0) { ret = -errno; perror("Failed to seek to PPL header location"); return ret; @@ -6513,7 +6513,7 @@ static int validate_ppl_imsm(struct supe dprintf("Checking potential PPL at offset: %llu\n", ppl_offset); - if (lseek64(d->fd, info->ppl_sector * 512 + ppl_offset, + if (lseek(d->fd, info->ppl_sector * 512 + ppl_offset, SEEK_SET) < 0) { perror("Failed to seek to PPL header location"); ret = -1; @@ -9022,7 +9022,7 @@ static int store_imsm_mpb(int fd, struct sectors = mpb_sectors(mpb, sector_size) - 1; /* write the extended mpb to the sectors preceeding the anchor */ - if (lseek64(fd, dsize - (sector_size * (2 + sectors)), + if (lseek(fd, dsize - (sector_size * (2 + sectors)), SEEK_SET) < 0) return 1; @@ -9032,7 +9032,7 @@ static int store_imsm_mpb(int fd, struct } /* first block is stored on second to last sector of the disk */ - if (lseek64(fd, dsize - (sector_size * 2), SEEK_SET) < 0) + if (lseek(fd, dsize - (sector_size * 2), SEEK_SET) < 0) return 1; if ((unsigned int)write(fd, buf, sector_size) != sector_size) @@ -11213,7 +11213,7 @@ int recover_backup_imsm(struct supertype skipped_disks++; continue; } - if (lseek64(dl_disk->fd, read_offset, SEEK_SET) < 0) { + if (lseek(dl_disk->fd, read_offset, SEEK_SET) < 0) { pr_err("Cannot seek to block: %s\n", strerror(errno)); skipped_disks++; @@ -11225,7 +11225,7 @@ int recover_backup_imsm(struct supertype skipped_disks++; continue; } - if (lseek64(dl_disk->fd, write_offset, SEEK_SET) < 0) { + if (lseek(dl_disk->fd, write_offset, SEEK_SET) < 0) { pr_err("Cannot seek to block: %s\n", strerror(errno)); skipped_disks++; @@ -12473,7 +12473,7 @@ static int imsm_manage_reshape( unsigned long long dsize; get_dev_size(d->fd, NULL, &dsize); - if (lseek64(d->fd, dsize - MIGR_REC_SECTOR_POSITION*sector_size, + if (lseek(d->fd, dsize - MIGR_REC_SECTOR_POSITION*sector_size, SEEK_SET) >= 0) { if ((unsigned int)write(d->fd, super->migr_rec_buf, MIGR_REC_BUF_SECTORS*sector_size) != @@ -12629,7 +12629,7 @@ static int validate_internal_bitmap_for_ } } - if (lseek64(fd, offset * super->sector_size, SEEK_SET) < 0) + if (lseek(fd, offset * super->sector_size, SEEK_SET) < 0) goto abort; if (read(fd, read_buf, IMSM_BITMAP_HEADER_SIZE) != IMSM_BITMAP_HEADER_SIZE) @@ -12747,7 +12747,7 @@ static int locate_bitmap_imsm(struct sup offset = get_bitmap_header_sector(super, super->current_vol); dprintf("bitmap header offset is %llu\n", offset); - lseek64(fd, offset << 9, 0); + lseek(fd, offset << 9, 0); return 0; } @@ -12801,7 +12801,7 @@ static int write_init_bitmap_imsm(struct return -1; memset(buf, 0xFF, MAX_SECTOR_SIZE); offset = get_bitmap_sector(super, vol_idx); - lseek64(fd, offset << 9, 0); + lseek(fd, offset << 9, 0); while (written < IMSM_BITMAP_AREA_SIZE) { to_write = IMSM_BITMAP_AREA_SIZE - written; if (to_write > MAX_SECTOR_SIZE) --- a/super0.c +++ b/super0.c @@ -327,12 +327,12 @@ static int copy_metadata0(struct superty offset *= 512; - if (lseek64(from, offset, 0) < 0LL) + if (lseek(from, offset, 0) < 0LL) goto err; if (read(from, buf, bufsize) != bufsize) goto err; - if (lseek64(to, offset, 0) < 0LL) + if (lseek(to, offset, 0) < 0LL) goto err; super = buf; if (super->md_magic != MD_SB_MAGIC || @@ -885,7 +885,7 @@ static int store_super0(struct supertype offset = dsize/512 - 8*2; offset &= ~(4*2-1); offset *= 512; - if (lseek64(fd, offset, 0)< 0LL) + if (lseek(fd, offset, 0)< 0LL) ret = 3; else if (write(fd, st->other, 1024) != 1024) ret = 4; @@ -900,7 +900,7 @@ static int store_super0(struct supertype offset *= 512; - if (lseek64(fd, offset, 0)< 0LL) + if (lseek(fd, offset, 0)< 0LL) return 3; if (write(fd, super, sizeof(*super)) != sizeof(*super)) @@ -1027,7 +1027,7 @@ static int load_super0(struct supertype offset *= 512; - if (lseek64(fd, offset, 0)< 0LL) { + if (lseek(fd, offset, 0)< 0LL) { if (devname) pr_err("Cannot seek to superblock on %s: %s\n", devname, strerror(errno)); @@ -1212,7 +1212,7 @@ static int locate_bitmap0(struct superty offset += MD_SB_BYTES; - lseek64(fd, offset, 0); + lseek(fd, offset, 0); return 0; } @@ -1237,7 +1237,7 @@ static int write_bitmap0(struct supertyp offset *= 512; - if (lseek64(fd, offset + 4096, 0)< 0LL) + if (lseek(fd, offset + 4096, 0)< 0LL) return 3; if (posix_memalign(&buf, 4096, 4096)) --- a/super1.c +++ b/super1.c @@ -745,7 +745,7 @@ static int copy_metadata1(struct superty goto err; } - if (lseek64(from, sb_offset << 9, 0) < 0LL) + if (lseek(from, sb_offset << 9, 0) < 0LL) goto err; if (read(from, buf, bufsize) != bufsize) goto err; @@ -759,7 +759,7 @@ static int copy_metadata1(struct superty calc_sb_1_csum(sb) != super.sb_csum) goto err; - if (lseek64(to, sb_offset << 9, 0) < 0LL) + if (lseek(to, sb_offset << 9, 0) < 0LL) goto err; if (write(to, buf, bufsize) != bufsize) goto err; @@ -775,9 +775,9 @@ static int copy_metadata1(struct superty bitmap_offset += (int32_t)__le32_to_cpu(super.bitmap_offset); - if (lseek64(from, bitmap_offset<<9, 0) < 0) + if (lseek(from, bitmap_offset<<9, 0) < 0) goto err; - if (lseek64(to, bitmap_offset<<9, 0) < 0) + if (lseek(to, bitmap_offset<<9, 0) < 0) goto err; for (written = 0; written < bytes ; ) { @@ -816,9 +816,9 @@ static int copy_metadata1(struct superty bb_offset += (int32_t)__le32_to_cpu(super.bblog_offset); - if (lseek64(from, bb_offset<<9, 0) < 0) + if (lseek(from, bb_offset<<9, 0) < 0) goto err; - if (lseek64(to, bb_offset<<9, 0) < 0) + if (lseek(to, bb_offset<<9, 0) < 0) goto err; for (written = 0; written < bytes ; ) { @@ -920,7 +920,7 @@ static int examine_badblocks_super1(stru offset = __le64_to_cpu(sb->super_offset) + (int)__le32_to_cpu(sb->bblog_offset); offset <<= 9; - if (lseek64(fd, offset, 0) < 0) { + if (lseek(fd, offset, 0) < 0) { pr_err("Cannot seek to bad-blocks list\n"); return 1; } @@ -1810,7 +1810,7 @@ static int store_super1(struct supertype abort(); } - if (lseek64(fd, sb_offset << 9, 0)< 0LL) + if (lseek(fd, sb_offset << 9, 0)< 0LL) return 3; sbsize = ROUND_UP(sizeof(*sb) + 2 * __le32_to_cpu(sb->max_dev), 512); @@ -1879,7 +1879,7 @@ static int write_init_ppl1(struct supert sizeof(sb->set_uuid))); ppl_hdr->checksum = __cpu_to_le32(~crc32c_le(~0, buf, PPL_HEADER_SIZE)); - if (lseek64(fd, info->ppl_sector * 512, SEEK_SET) < 0) { + if (lseek(fd, info->ppl_sector * 512, SEEK_SET) < 0) { ret = errno; perror("Failed to seek to PPL header location"); } @@ -1924,7 +1924,7 @@ static int write_empty_r5l_meta_block(st crc = crc32c_le(crc, (void *)mb, META_BLOCK_SIZE); mb->checksum = crc; - if (lseek64(fd, __le64_to_cpu(sb->data_offset) * 512, 0) < 0LL) { + if (lseek(fd, __le64_to_cpu(sb->data_offset) * 512, 0) < 0LL) { pr_err("cannot seek to offset of the meta block\n"); goto fail_to_write; } @@ -2290,7 +2290,7 @@ static int load_super1(struct supertype return -EINVAL; } - if (lseek64(fd, sb_offset << 9, 0)< 0LL) { + if (lseek(fd, sb_offset << 9, 0)< 0LL) { if (devname) pr_err("Cannot seek to superblock on %s: %s\n", devname, strerror(errno)); @@ -2675,7 +2675,7 @@ static int locate_bitmap1(struct superty } if (mustfree) free(sb); - lseek64(fd, offset<<9, 0); + lseek(fd, offset<<9, 0); return ret; } --- a/swap_super.c +++ b/swap_super.c @@ -16,7 +16,7 @@ #define MD_NEW_SIZE_SECTORS(x) ((x & ~(MD_RESERVED_SECTORS - 1)) - MD_RESERVED_SECTORS) -extern long long lseek64(int, long long, int); +extern long long lseek(int, long long, int); int main(int argc, char *argv[]) { @@ -38,8 +38,8 @@ int main(int argc, char *argv[]) exit(1); } offset = MD_NEW_SIZE_SECTORS(size) * 512LL; - if (lseek64(fd, offset, 0) < 0LL) { - perror("lseek64"); + if (lseek(fd, offset, 0) < 0LL) { + perror("lseek"); exit(1); } if (read(fd, super, 4096) != 4096) { @@ -68,8 +68,8 @@ int main(int argc, char *argv[]) super[32*4+10*4 +i] = t; } - if (lseek64(fd, offset, 0) < 0LL) { - perror("lseek64"); + if (lseek(fd, offset, 0) < 0LL) { + perror("lseek"); exit(1); } if (write(fd, super, 4096) != 4096) { diff --git a/util.c b/util.c index 3d05d07..6109fd4 100644 --- a/util.c +++ b/util.c @@ -2387,7 +2387,7 @@ int zero_disk_range(int fd, unsigned lon return -1; } - if (lseek64(fd, sector * 512, SEEK_SET) < 0) { + if (lseek(fd, sector * 512, SEEK_SET) < 0) { ret = -errno; pr_err("Failed to seek offset for zeroing\n"); goto out;