词条积累

1.NAND flash memory

http://www.searchstorage.com.cn/whatis/word_6052.htm

http://baike.baidu.com/subview/64506/5136742.htm?fromtitle=NAND%E9%97%AA%E5%AD%98&fromid=8051173&type=syn

2.FTL

http://hi.baidu.com/alan_ding/item/7895367e324d5e3ed7a89c70

3.bit flips

http://www.crifan.com/order_nand_flash_bit-reversed_bit_flipped/

4.

Abstract:

1.本文提出了pcm-ftl,以耐用的NAND快闪记忆体管理方案为基础,重新设计以满足减少PCM写活动需要嵌入式系统。

2.基本的思想:要尽量避免储在PCM中的位翻转(即,映射表)

3.pcm-ftl采用二级映射机制,在I/O访问行为的特征上最大以最大限度地减少PCM上的写活动

PCM-FTL employs a two-level mapping mechanism, which focuses on minimizing write activities to PCM by characterizing I/O access behaviors

一、 INTRODUCTION

1.传统:

(1)功能增加,耗电增加

(2)DRAM时,断电后,重新遍历flash建立map-table

(3)DRAM的耗电和可扩展性到了极限

2.PCM

(1)PCM的主要问题,FTL写的频率很高——》减少不必要的写

(2)已经有的硬件优化:写前读

3.PCM-FTL

(1)管理主存的底层架构,写感知

PCM-FTL enhances the lifetime of PCM by making the management of NAND flash memory aware of write activities on underlying memory architecture.

(2)不改变文件系统和硬件

(3)PCM-FTL的基础思想是减少位翻转在PCM上

The basic idea is to try to avoid bit flips in the FTL mapping table, which is stored in PCM. By reducing write activities to PCM cells, the lifetime of PCM is enhanced

(4)页级映射:处理随机请求(此请求不频繁)

PCM-FTL uses page-level mappings to handle infrequent random requests

(5)块映射:处理顺序请求(此请求频繁)

a tiny amount of block-level mappings for most frequently accessed sequential requests

(6)PCM-FTL actively chooses a physical block in NAND flash memory whose physical block number incurs the minimum number of bit flips in the mapping entry when allocating a physical block

(7)With appropriate wear leveling algorithms, PCMFTL evenly distributes write activities across the whole PCM chip.

4.本文贡献

(1)present for the first time a write-activity-aware,two-level flash memory management technique

(2)use an effective wear leveling algorithm

(3)realistic I/O traces 实验

二、BACKGROUND AND MOTIVATION

1.hFTL

(1)a page-level mapping table in PCM keeps track of mappings between logical page number (LPN) and physical page number (PPN)

——》the mapping table is updated frequently and thus imposes the endurance issue for PCM

三、PCM-FTL

1.The basic idea of PCM-FTL is thus to preserve each bit in FTL mapping table,which is stored in PCM

2.A two-level mapping mechanism is proposed to separate the two types of request. For random requests, PCM-FTL uses a page-level mapping table (PMT)
to store their mappings. For large, sequential accesses, we use a small block-level mapping buffer (BMB) to cache the mappings.

3.With the consideration of write activities, once a block is needed for incoming write requests, PCM-FTL selectively allocates a physical block in NAND flash memory whose physical block number incurs minimum number of bit flips in PCM cells.

4.I/O workload=small random+ large sequential requests

5.Requests that intend to write more than t pages are categorized as sequential ones

6.

Random requests: PCM-FTL sequentially allocates physical pages from the first page of a physical block in NAND flash memory, so that all pages in blocks are fully utilized. Accordingly, PCM-FTL adds LPN to PPN mapping for random requests in PMT

Sequential requests: PCM-FTL allocates physical pages based on block offset as most sequential requests usually occupy a whole block, so that all pages in blocks are fully utilized as well. Similarly, PCM-FTL adds an LBN to PBN mapping in the BMB

7.Different from a traditional block-level scheme, the BMB in PCM-FTL is only for sequential requests and has limited capacity:The purpose is
to only buffer the mapping for the most frequently and recently updated blocks

8.handling writerequests

(1)New Requests:

If the request is a sequential one, pages will be written according to their offsets in the block and a block-level mapping is set up in the end. Random requests will be handled by writing to the newly allocated block one by one from the first physical page, regardless of the logical page number offsets. Page-level mappings will be set up.

(2)Update Requests:relies on the request type and the old block type.

连续请求直接分配一个新块,快号要和原来块映射里的保持最小翻转

随意请求,看原来的块有没有位置,一个接一个的写

连续请求,如果原来的块的空闲页足够的话,变成页映射

if the request is a sequential one, a new block will be allocated. In case the old block was mapped at block-level,
the allocation routine will try to find a block that will cause the minimum number of bit flips in the block table entry.

四、Algorithm

Algorithm 3.1 The wear leveling algorithm in PCM-FTL (pcm-ftl磨损均衡算法)

备注:

block-level mapping buffer (BMB)

page-level mapping table (PMT)

BMB records (记录)logical block to physical block mappings, while PMT records page-level mappings (i.e.,logical page to physical page)

对应论文3.4

(1) 在PMT中定期移动 BMB

疑问:

(1)PTE 、BTE

(2)Total PCM length

3.2 Handling new requests in PCM-FTL

Logical Page Number (LPN)

sequential 连续的

LBN/PBN: Logical/Physical Block Number

LPN/PPN: Logical/Physical Page Number

3.3 Handling update requests in PCM-FTL

Durable NAND flash memory management的更多相关文章

  1. NAND Flash memory in embedded systems

    参考:http://www.design-reuse.com/articles/24503/nand-flash-memory-embedded-systems.html Abstract : Thi ...

  2. A New 3-bit Programming Algorithm using SLC-to-TLC Migration for 8MBs High Performance TLC NAND Flash Memory

    背景 1.2012年左右的数据SLC.MLC.TLC闪存芯片的区别:SLC = Single-Level Cell ,即1bit/cell,速度快寿命长,价格超贵(约MLC 3倍以上的价格),约10万 ...

  3. eMMC基础技术11:flash memory

    [转]http://www.wowotech.net/basic_tech/367.html 0.前言 eMMC 是 Flash Memory 的一类,在详细介绍 eMMC 之前,先简单介绍一下 Fl ...

  4. Flash Memory 简介【转】

    本文转载自:https://linux.codingbelief.com/zh/storage/emmc/ Flash Memory 是一种非易失性的存储器.在嵌入式系统中通常用于存放系统.应用和数据 ...

  5. PatentTips - Reducing Write Amplification in a Flash Memory

    BACKGROUND OF THE INVENTION Conventional NAND Flash memories move data in the background to write ov ...

  6. NAND Flash vs NOR Flash

    Avinash Aravindan reference:https://www.embedded.com/design/prototyping-and-development/4460910/2/Fl ...

  7. 编程器NAND Flash 技术入门

    NAND Flash分类 SLC(Single-Level Cell)架构:单一储存单元(Cell)可储存1bit data MLC(Multi-Level Cell)架构:单一储存单元(Cell)可 ...

  8. Nand Flash基础知识与坏块管理机制的研究

    概述 Flash名称的由来,Flash的擦除操作是以block块为单位的,与此相对应的是其他很多存储设备,是以bit位为最小读取/写入的单位,Flash是一次性地擦除整个块:在发送一个擦除命令后,一次 ...

  9. 说说NAND FLASH以及相关ECC校验方法

    Flash名称的由来,Flash的擦除操作是以block块为单位的,与此相对应的是其他很多存储设备,是以bit位为最小读取/写入的单位,Flash是一次性地擦除整个块:在发送一个擦除命令后,一次性地将 ...

随机推荐

  1. [人物存档]【AI少女】【捏脸数据】时尚

    点击下载(城通网盘):3in1.zip 点击下载(城通网盘):存档.zip

  2. jcc

    常用的jcc指令表

  3. 【Python之路】特别篇--Python面向对象(初级篇)

    概述 面向过程:根据业务逻辑从上到下写垒代码 函数式:将某功能代码封装到函数中,日后便无需重复编写,仅调用函数即可 面向对象:对函数进行分类和封装,让开发“更快更好更强...” 面向过程编程最易被初学 ...

  4. codevs 1501 二叉树最大宽度和高度x

                         题目描述 Description 给出一个二叉树,输出它的最大宽度和高度. 输入描述 Input Description 第一行一个整数n. 下面n行每行有两 ...

  5. IDEA无法通过类加载器获取resources文件夹配置文件解决办法

    问题描述:如果IDEA无法通过类加载器获取resources文件夹配置文件,一定是Classpath编译文件没有导致的. 1.在通过配置文件来获取文件信息时,在resouces文件中放入了filena ...

  6. 搞清楚MySQL事务隔离级别

    首先创建一个表 account.创建表的过程略过(由于 InnoDB 存储引擎支持事务,所以将表的存储引擎设置为 InnoDB).表的结构如下: 然后往表中插入两条数据,插入后结果如下: 为了说明问题 ...

  7. CSS、Bulma介绍

    文章目录 一.序章 二.CSS 基础 1. CSS 介绍 2. CSS 语法 3. CSS常用元素 1.颜色 2.字体大小 3.宽高 4.盒模型(单独拿出来讲) 5.背景 4.1样式和内容分离 4.2 ...

  8. 忘记Linux 3.X/4.x/5.x 宝塔面板密码的解决方案

    进入ssh 输入以下命令重置密码(把命令最后面的   “testpasswd”  替换成你要改的新密码)注:若是debian/ubuntu用户,请使用有root权限的账户去执行这条命令 cd /www ...

  9. 【java测试】Junit、Mock+代码覆盖率

    原文见此处 单元测试是编写测试代码,用来检测特定的.明确的.细颗粒的功能.单元测试并不一定保证程序功能是正确的,更不保证整体业务是准备的. 单元测试不仅仅用来保证当前代码的正确性,更重要的是用来保证代 ...

  10. Telnet/SSH 客户端

    一.WinSCP linux 与 windows 间传递文件.可以与 putty 配合使用. 官网提供便携版下载:https://winscp.net/eng/downloads.php 支持中文,语 ...