Deleted Added
full compact
26c26
< * $FreeBSD: head/usr.bin/mkimg/mkimg.h 268236 2014-07-03 20:31:43Z marcel $
---
> * $FreeBSD: head/usr.bin/mkimg/mkimg.h 271881 2014-09-19 23:16:02Z marcel $
68a69,83
> static inline lba_t
> round_cylinder(lba_t n)
> {
> u_int cyl = nsecs * nheads;
> u_int r = n % cyl;
> return ((r == 0) ? n : n + cyl - r);
> }
>
> static inline lba_t
> round_track(lba_t n)
> {
> u_int r = n % nsecs;
> return ((r == 0) ? n : n + nsecs - r);
> }
>