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 */
220 /* Maximum amount of UBI volumes that can be re-named at one go */
360 * struct ubi_rsvol_req - a data structure used in volume re-size requests.
361 * @vol_id: ID of the volume to re-size
364 * Re-sizing is possible for both dynamic and static volumes. But while dynamic
365 * volumes may be re-sized arbitrarily, static volumes cannot be made to be
376 * struct ubi_rnvol_req - volumes re-name request.
377 * @count: count of volumes to re-name
379 * @vol_id: ID of the volume to re-name
384 * UBI allows to re-name up to %32 volumes at one go. The count of volumes to
385 * re-name is specified in the @count field. The ID of the volumes to re-name
388 * The UBI volume re-name operation is atomic, which means that should power cut
392 * then atomically re-name A1->A and B1->B, in which case old %A and %B will
395 * If it is not desirable to remove old A and B, the re-name request has to
402 * In other words, in case of re-naming into an existing volume name, the
403 * existing volume is removed, unless it is re-named as well at the same
404 * re-name request.