Lines Matching defs:rdb
138 * deals with RDB partitions properly, otherwise write
139 * a read-only RDB backend
142 * We found RDB partitions on the disk, which cannot be
632 RDB disklabel */
643 struct rdblock *rdb;
647 /* Find out if this disk has a valid RDB, before continuing. */
648 rdb = (struct rdblock *)buf;
653 if (pread(fd, rdb, 512, blk * 512) != 512)
655 if (rdb->id == RDBLOCK_ID && rdbchksum(rdb) == 0) {