public inbox for linux-mtd@lists.infradead.org
 help / color / mirror / Atom feed
* [PATCH 2/9] drivers:mtd:ubi:add definition for UBI bakvol operation
@ 2015-09-28  7:02 Bean Huo 霍斌斌 (beanhuo)
  2015-09-28  9:48 ` Boris Brezillon
  0 siblings, 1 reply; 2+ messages in thread
From: Bean Huo 霍斌斌 (beanhuo) @ 2015-09-28  7:02 UTC (permalink / raw)
  To: dedekind1@gmail.com, adrian.hunter@intel.com,
	computersforpeace@gmail.com, baruch@tkos.co.il,
	asierra@xes-inc.com, guz.fnst@cn.fujitsu.com, gsi@denx.de,
	richard@nod.at, Boris Brezillon
  Cc: Boris Brezillon, David Woodhouse, linux-mtd@lists.infradead.org,
	Artem Bityutskiy, Richard Weinberger,
	Frank Liu 刘群 (frankliu), Andrea Scian,
	Peter Pan 潘柏宏 (peterpan),
	Karl Zhang 张双锣 (karlzhang), Iwo Mergler,
	Jeff Lauruhn (jlauruhn), Stefan Roese,
	linux-kernel@vger.kernel.org

Add macro definition for UBI bakvol operation.

Signed-off-by: Bean Huo <beanhuo@micron.com>
---
 drivers/mtd/ubi/ubi.h | 17 +++++++++++++++++
 1 file changed, 17 insertions(+)

diff --git a/drivers/mtd/ubi/ubi.h b/drivers/mtd/ubi/ubi.h
index 2974b67..746dfbe 100644
--- a/drivers/mtd/ubi/ubi.h
+++ b/drivers/mtd/ubi/ubi.h
@@ -438,6 +438,7 @@ struct ubi_debug_info {
  * @vtbl_slots: how many slots are available in the volume table
  * @vtbl_size: size of the volume table in bytes
  * @vtbl: in-RAM volume table copy
+ * @bkblk_tbl: backup block table
  * @device_mutex: protects on-flash volume table and serializes volume
  *                creation, deletion, update, re-size, re-name and set
  *                property
@@ -547,6 +548,7 @@ struct ubi_device {
 	int vtbl_slots;
 	int vtbl_size;
 	struct ubi_vtbl_record *vtbl;
+	struct ubi_bkblk_tbl *bkblk_tbl;
 	struct mutex device_mutex;
 
 	int max_ec;
@@ -797,6 +799,20 @@ int ubi_vtbl_rename_volumes(struct ubi_device *ubi,
 			    struct list_head *rename_list);
 int ubi_read_volume_table(struct ubi_device *ubi, struct ubi_attach_info *ai);
 
+/* bakvol.c*/
+int ubi_check_backup_volume(struct ubi_device *ubi);
+int ubi_backup_data_to_backup_volume(struct ubi_device *ubi, loff_t addr,
+		size_t len, size_t *retlen, const void *buf);
+int ubi_backup_volume_init(struct ubi_device *ubi);
+int ubi_backup_volume_scan(struct ubi_device *ubi,
+			struct ubi_vid_hdr *vidh, int pnum);
+int ubi_backup_volume_init_tail(struct ubi_device *ubi,
+				struct ubi_attach_info *si);
+int ubi_bad_data_recovery(struct ubi_device *ubi);
+int is_backup_need(struct ubi_device *ubi, loff_t addr);
+void init_bakvol(struct ubi_volume_desc *desc, uint8_t choice);
+void clear_bakvol(struct ubi_device *ubi);
+
 /* vmt.c */
 int ubi_create_volume(struct ubi_device *ubi, struct ubi_mkvol_req *req);
 int ubi_remove_volume(struct ubi_volume_desc *desc, int no_vtbl);
@@ -846,6 +862,7 @@ int self_check_eba(struct ubi_device *ubi, struct ubi_attach_info *ai_fastmap,
 
 /* wl.c */
 int ubi_wl_get_peb(struct ubi_device *ubi);
+int ubi_wl_get_plane_peb(struct ubi_device *ubi, int plane);
 int ubi_wl_put_peb(struct ubi_device *ubi, int vol_id, int lnum,
 		   int pnum, int torture);
 int ubi_wl_flush(struct ubi_device *ubi, int vol_id, int lnum);
-- 
1.9.1

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH 2/9] drivers:mtd:ubi:add definition for UBI bakvol operation
  2015-09-28  7:02 [PATCH 2/9] drivers:mtd:ubi:add definition for UBI bakvol operation Bean Huo 霍斌斌 (beanhuo)
@ 2015-09-28  9:48 ` Boris Brezillon
  0 siblings, 0 replies; 2+ messages in thread
From: Boris Brezillon @ 2015-09-28  9:48 UTC (permalink / raw)
  To: Bean Huo 霍斌斌 (beanhuo)
  Cc: dedekind1@gmail.com, adrian.hunter@intel.com,
	computersforpeace@gmail.com, baruch@tkos.co.il,
	asierra@xes-inc.com, guz.fnst@cn.fujitsu.com, gsi@denx.de,
	richard@nod.at, David Woodhouse, linux-mtd@lists.infradead.org,
	Frank Liu 刘群 (frankliu), Andrea Scian,
	Peter Pan 潘柏宏 (peterpan),
	Karl Zhang 张双锣 (karlzhang), Iwo Mergler,
	Jeff Lauruhn (jlauruhn), Stefan Roese,
	linux-kernel@vger.kernel.org

On Mon, 28 Sep 2015 07:02:40 +0000
Bean Huo 霍斌斌 (beanhuo) <beanhuo@micron.com> wrote:

> Add macro definition for UBI bakvol operation.
> 
> Signed-off-by: Bean Huo <beanhuo@micron.com>
> ---
>  drivers/mtd/ubi/ubi.h | 17 +++++++++++++++++
>  1 file changed, 17 insertions(+)
> 
> diff --git a/drivers/mtd/ubi/ubi.h b/drivers/mtd/ubi/ubi.h
> index 2974b67..746dfbe 100644
> --- a/drivers/mtd/ubi/ubi.h
> +++ b/drivers/mtd/ubi/ubi.h
> @@ -438,6 +438,7 @@ struct ubi_debug_info {
>   * @vtbl_slots: how many slots are available in the volume table
>   * @vtbl_size: size of the volume table in bytes
>   * @vtbl: in-RAM volume table copy
> + * @bkblk_tbl: backup block table
>   * @device_mutex: protects on-flash volume table and serializes volume
>   *                creation, deletion, update, re-size, re-name and set
>   *                property
> @@ -547,6 +548,7 @@ struct ubi_device {
>  	int vtbl_slots;
>  	int vtbl_size;
>  	struct ubi_vtbl_record *vtbl;
> +	struct ubi_bkblk_tbl *bkblk_tbl;

Where is struct ubi_bkblk_tbl defined (actually I found it in patch
2).

>  	struct mutex device_mutex;
>  
>  	int max_ec;
> @@ -797,6 +799,20 @@ int ubi_vtbl_rename_volumes(struct ubi_device *ubi,
>  			    struct list_head *rename_list);
>  int ubi_read_volume_table(struct ubi_device *ubi, struct ubi_attach_info *ai);
>  
> +/* bakvol.c*/
> +int ubi_check_backup_volume(struct ubi_device *ubi);
> +int ubi_backup_data_to_backup_volume(struct ubi_device *ubi, loff_t addr,
> +		size_t len, size_t *retlen, const void *buf);
> +int ubi_backup_volume_init(struct ubi_device *ubi);
> +int ubi_backup_volume_scan(struct ubi_device *ubi,
> +			struct ubi_vid_hdr *vidh, int pnum);
> +int ubi_backup_volume_init_tail(struct ubi_device *ubi,
> +				struct ubi_attach_info *si);
> +int ubi_bad_data_recovery(struct ubi_device *ubi);
> +int is_backup_need(struct ubi_device *ubi, loff_t addr);
> +void init_bakvol(struct ubi_volume_desc *desc, uint8_t choice);
> +void clear_bakvol(struct ubi_device *ubi);
> +
>  /* vmt.c */
>  int ubi_create_volume(struct ubi_device *ubi, struct ubi_mkvol_req *req);
>  int ubi_remove_volume(struct ubi_volume_desc *desc, int no_vtbl);
> @@ -846,6 +862,7 @@ int self_check_eba(struct ubi_device *ubi, struct ubi_attach_info *ai_fastmap,
>  
>  /* wl.c */
>  int ubi_wl_get_peb(struct ubi_device *ubi);
> +int ubi_wl_get_plane_peb(struct ubi_device *ubi, int plane);

The same goes for those functions. You only define their protypes here,
and implement them in patch 4.

Please split your changes in a consistent way.

Best Regards,

Boris

-- 
Boris Brezillon, Free Electrons
Embedded Linux and Kernel engineering
http://free-electrons.com

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2015-09-28  9:48 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-09-28  7:02 [PATCH 2/9] drivers:mtd:ubi:add definition for UBI bakvol operation Bean Huo 霍斌斌 (beanhuo)
2015-09-28  9:48 ` Boris Brezillon

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox