Lines Matching full:re
57 * UBI volume re-size
60 * To re-size a volume, the %UBI_IOCRSVOL ioctl command of the UBI character
64 * UBI volumes re-name
67 * To re-name several volumes atomically at one go, the %UBI_IOCRNVOL command
169 /* Re-size an UBI volume */
171 /* Re-name volumes */
218 /* Maximum amount of UBI volumes that can be re-named at one go */
356 * struct ubi_rsvol_req - a data structure used in volume re-size requests.
357 * @vol_id: ID of the volume to re-size
360 * Re-sizing is possible for both dynamic and static volumes. But while dynamic
361 * volumes may be re-sized arbitrarily, static volumes cannot be made to be
372 * struct ubi_rnvol_req - volumes re-name request.
373 * @count: count of volumes to re-name
375 * @vol_id: ID of the volume to re-name
380 * UBI allows to re-name up to %32 volumes at one go. The count of volumes to
381 * re-name is specified in the @count field. The ID of the volumes to re-name
384 * The UBI volume re-name operation is atomic, which means that should power cut
388 * then atomically re-name A1->A and B1->B, in which case old %A and %B will
391 * If it is not desirable to remove old A and B, the re-name request has to
398 * In other words, in case of re-naming into an existing volume name, the
399 * existing volume is removed, unless it is re-named as well at the same
400 * re-name request.