{{sellerTotalView > 1 ? __("sellers", {number: sellerTotalView}) : __("seller", {number: sellerTotalView}) }}, {{numTotalView > 1 ? __("items", {number: numTotalView}) : __("item", {number: numTotalView}) }}
free FREE

Change Your Zip Code

Inventory information and delivery speeds may vary for different locations.

Location History

{{email ? __('Got it!') : __('Restock Alert')}}

We will notify you by email when the item back in stock.

Cancel
Yami

Jingdong book

Linux内核完全剖析:基于0.12内核

{{buttonTypePin == 3 ? __("Scan to view more PinGo") : __("Scan to start")}}

Linux内核完全剖析:基于0.12内核

{{__(":people-members", {'people': item.limit_people_count})}} {{ itemCurrency }}{{ item.valid_price }} {{ itemCurrency }}{{ item.invalid_price }} {{ itemDiscount }}
Ends in
{{ itemCurrency }}{{ item.valid_price }}
{{ itemCurrency }}{{ priceFormat(item.valid_price / item.bundle_specification) }}/{{ item.unit }}
{{ itemDiscount }}
{{ itemCurrency }}{{ item.valid_price }} {{ itemCurrency }}{{ priceFormat(item.valid_price / item.bundle_specification) }}/{{ item.unit }} {{ itemCurrency }}{{ item.invalid_price }} {{itemDiscount}}
{{ itemCurrency }}{{ item.valid_price }}
Sale ends in
Sale will starts after Sale ends in
{{ getSeckillDesc(item.seckill_data) }}
{{ __( "Pay with Gift Card to get sale price: :itemCurrency:price", { 'itemCurrency' : itemCurrency, 'price' : (item.giftcard_price ? priceFormat(item.giftcard_price) : '0.00') } ) }} ({{ itemCurrency }}{{ priceFormat(item.giftcard_price / item.bundle_specification) }}/{{ item.unit }}) Details
Best before

Currently unavailable.

We don't know when or if this item will be back in stock.

Unavailable in your area.
Sold Out

Details

Full product details
Content Description

本书对早期Linux内核(v0.12)全部代码文件进行了详细、全面的注释和说明,旨在帮助读者用较短的时间对Linux的工作机理获得全面而深刻的理解,为进一步学习和研究Linux打下坚实的基础。虽然选择的版本较低,但该内核已能够正常编译运行,并且其中已包括了Linux工作原理的精髓。书中首先以Linux源代码版本的变迁为主线,介绍了Linux的历史,同时着重说明了各个内核版本的主要区别和改进,给出了选择0.12版内核源代码作为研究对象的原因。在正式描述内核源代码之前,概要介绍了运行Linux的PC的硬件组成结构、编制内核使用的汇编语言和C语言扩展部分,并且重点说明了80x86处理器在保护模式下运行的编程方法。接着详细介绍了Linux内核源代码目录树组织结构,并依据该结构对所有内核程序和文件进行了注释和详细说明。有关代码注释的章节安排基本上都分为具体研究对象的概述、每个文件的功能介绍、代码内注释、代码中难点及相关资料介绍等部分。为了加深读者对内核工作原理的理解,书中最后一章给出了围绕Linux 0.12系统的多个试验。
本书适合Linux爱好者作为学习内核工作原理的自学参考书籍,也适合作为高校计算机专业学生学习操作系统课程的辅助和实践教材,还可供一般技术人员作为开发嵌入式系统的参考书使用。
Catalogue


第1章概述
1.1Linux的诞生和发展
1.1.1UNIX操作系统的诞生
1.1.2MINIX操作系统
1.1.3GNU计划
1.1.4POSIX标准
1.1.5Linux操作系统的诞生
1.1.6Linux操作系统版本的变迁
1.1.7Linux名称的由来
1.1.8早期Linux系统开发的主要贡献者
1.2内容综述
1.3本章小结

第2章微型计算机组成结构
2.1微型计算机组成原理
2.2I/O端口寻址和访问控制方式
2.2.1I/O端口和寻址
2.2.2接口访问控制
2.3主存储器、BIOS和CMOS存储器
2.3.1主存储器
2.3.2基本输入/输出程序BIOS
2.3.3CMOS存储器
2.4控制器和控制卡
2.4.1中断控制器
2.4.2DMA控制器
2.4.3定时/计数器
2.4.4键盘控制器
2.4.5串行控制卡
2.4.6显示控制
2.4.7软盘和硬盘控制器
2.5本章小结

第3章内核编程语言和环境
3.1as86汇编器
3.1.1as86汇编语言语法
3.1.2as86汇编语言程序
3.1.3as86汇编语言程序的编译和链接
3.1.4as86和1d86使用方法和选项
3.2CNUas汇编
3.2.1编译as汇编语言程序
3.2.2as汇编语法
3.2.3指令语句、操作数和寻址
3.2.4区与重定位
3.2.5符号
3.2.6as汇编命令
3.2.7编写16位代码
3.2.8AS汇编器命令行选项
3.3C语言程序
3.3.1C程序编译和链接
3.3.2嵌入汇编
3.3.3圆括号中的组合语句
3.3.4寄存器变量
3.3.5内联函数
3.4C与汇编程序的相互调用
3.4.1C函数调用机制
3.4.2在汇编程序中调用C函数
3.4.3在C程序中调用汇编函数
3.5Linux0.12目标文件格式
3.5.1目标文件格式
3.5.2Linux0.12中的目标文件格式
3.5.3链接程序输出
3.5.4链接程序预定义变量一
3.5.5System.map文件
3.6Make程序和Makefile文件
3.6.1Makefite文件内容
3.6.2Makefile文件中的规则
3.6.3Makefile文件示例
3.6.4make处理Makefile文件的方式
3.6.5Makefile中的变量
3.6.6让make自动推断命令
3.6.7隐含规则中的自动变量
3.7本章小结

第4章80x86保护模式及其编程
4.180x86系统寄存器和系统指令
4.1.1标志寄存器
4.1.2内存管理寄存器
4.1.3控制寄存器
4.1.4系统指令
4.2保护模式内存管理
4.2.1内存寻址
4.2.2地址变换
4.2.3保护
4.3分段机制
4.3.1段的定义
4.3.2段描述符表
4.3.3段选择符
4.3.4段描述符
4.3.5代码和数据段描述符类型
4.3.6系统描述符类型
4.4分页机制
4.4.1页表结构
4.4.2页表项格式
4.4.3虚拟存储
4.5保护
4.5.1段级保护
4.5.2访问数据段时的特权级检查
4.5.3代码段之间转移控制时的特权级检查
4.5.4页级保护
4.5.5组合页级和段级保护
4.6中断和异常处理
4.6.1异常和中断向量
4.6.2中断源和异常源
4.6.3异常分类
4.6.4程序或任务的重新执行
4.6.5开启和禁止中断
4.6.6异常和中断的优先级
4.6.7中断描述符表
4.6.8IDT描述符
4.6.9异常与中断处理
4.6.10中断处理任务
4.6.11错误码
4.7任务管理
4.7.1任务的结构和状态
4.7.2任务的执行
4.7.3任务管理数据结构
4.7.4任务切换
4.7.5任务链
4.7.6任务地址空间
4.8保护模式编程初始化
4.8.1进入保护模式时的初始化操作
4.8.2模式切换
4.9一个简单的多任务内核实例
4.9.1多任务程序结构和工作原理
4.9.2引导启动程序boot.s
4.9.3多任务内核程序head.s

第5章Linux内核体系结构
5.1Linux内核模式
5.2Linux内核系统体系结构
5.3Linux内核对内存的管理和使用
5.3.1物理内存
5.3.2内存地址空间概念
5.3.3内存分段机制
5.3.4内存分页管理
5.3.5CPu多任务和保护方式
5.3.6虚拟地址、线性地址和物理地址之间的关系
5.3.7用户申请内存的动态分配
5.4中断机制
5.4.1中断操作原理
5.4.280x86微机的中断子系统
5.4.3中断向量表
5.4.4I.inux内核的中断处理
5.4.5标志寄存器的中断标志
5.5Linux的系统调用
5.5.1系统调用接口
5.5.2系统调用处理过程
5.5.3Linux系统调用的参数传递方式
5.6系统时间和定时
5.6.1系统时间
5.6.2系统定时
5.7Linux进程控制
5.7.1任务数据结构
5.7.2进程运行状态
5.7.3进程初始化
5.7.4创建新进程
5.7.5进程调度
5.7.6终止进程
5.8Linux系统中堆栈的使用方法
5.8.1初始化阶段
5.8.2任务的堆栈
5.8.3任务内核态堆栈与用户态堆栈之间的切换
5.9Linux0.12采用的文件系统
5.10Linux内核源代码的目录结构
5.10.1内核主目录linux
5.10.2引导启动程序目录boot
5.10.3文件系统目录fs
5.10.4头文件主目录include
5.10.5内核初始化程序目录init
5.10.6内核程序主目录kernel
5.10.7内核库函数目录lib
5.10.8内存管理程序目录mm
5.10.9编译内核工具程序目录tools
5.1l内核系统与应用程序的关系
5.12linux/MakeftIe文件
5.12.1功能描述
5.12.2代码注释
5.13本章小结

第6章引导启动程序
6.1总体功能
6.2bootsect.S程序
6.2.1功能描述
6.2.2代码注释
6.2.3其他信息
6.3setup.S程序
6.3.1功能描述
6.3.2代码注释
6.3.3其他信息
6.4lead.s程序
6.4.1功能描述
6.4.2代码注释
6.4.3其他信息
6.5本章小结

第7章初始化程序
7.1main.c程序
7.1.1功能描述
7.1.2代码注释
7.1.3其他信息
7.2环境初始化工作
7.3本章小结

第8章内核代码
8.1总体功能
8.1.1中断处理程序
8.1.2系统调用处理相关程序
8.1.3其他通用类程序
8.2asm.s程序
8.2.1功能描述
8.2.2代码注释
8.2.3Intel保留中断向量的定义
8.3traps.c程序
8.3.1功能描述
8.3.2代码注释
8.4syscall.s程序
8.4.1功能描述
8.4.2代码注释
8.4.3其他信息
8.5mktime.c程序
8.5.1功能描述
8.5.2代码注释
8.5.3闰年的计算方法
8.6sched.c程序
8.6.1功能描述
8.6.2代码注释
8.6.3其他信息
8.7signal.c程序
8.7.1功能描述
8.7.2代码注释
8.7.3进程信号说明
8.8exit.c程序
8.8.1功能描述
8.8.2代码注释
8.9fork.c程序
8.9.1功能描述
8.9.2代码注释
8.9.3任务状态段信息
8.10sys.c程序
8.10.1功能描述
8.10.2代码注释
8.1lvsprimtfc程序
8.11.1功能描述
8.11.2代码注释
8.11.3vsprintf的格式字符串
8.11.4与当前版本的区别
8.12printk.c程序
8.12.1功能描述
8.12.2代码注释
8.13panic.c程序
8.13.1功能描述
8.13.2代码注释
8.14本章小结

第9章块设备驱动程序
9.1总体功能
9.1.1块设备请求项和请求队列
9.1.2块设备访问调度处理
9.1.3块设备操作方式
9.2blk.h文件
9.2.1功能描述
9.2.2代码注释
9.3hd.c程序
9.3.1功能描述
9.3.2代码注释
9.3.3其他信息
9.4nrwblk.c程序
9.4.1功能描述
9.4.2代码注释
9.5ramdisk.c程序
9.5.1功能描述
9.5.2代码注释
9.6floppy.c程序
9.6.1功能描述
9.6.2代码注释
9.6.3其他信息

第10章字符设备驱动程序
10.1总体功能
10.1.1终端驱动程序基本原理
10.1.2Linux支持的终端设备类型
10.1.3终端基本数据结构
lO.1.4规范模式和非规范模式
10.1.5控制台终端和串行终端设备
10.1.6终端驱动程序接口
10.2keyboard.S程序
10.2.1功能描述
10.2.2代码注释
10.2.3其他信息
10.3console.c程序
10.3.1功能描述
10.3.2代码注释
10.3.3其他信息
10.4serial.c程序
10.4.l功能描述
10.4.2代码注释
lO.4.3异步串行通信控制器UART
10.5rsio.s程序
10.5.1功能描述
10.5.2代码注释
10.6ttyi0.c程序
10.6.1功能描述
10.6.2代码注释
10.6.3控制字符vnME、VMlN
10.7ttyjoctl.c程序
10.7.1功能描述
10.7.2代码注释
第11章数学协处理器
第12章文件系统
第13章内存管理
第14章头文件
第15章库文件
第16章建造工具
第17章实验环境设置与使用方法
附录
参考文献
Book Abstract

第1章概述
本章首先回顾了Linux操作系统的诞生、开发和成长过程,由此读者可以理解本书选择Linux系统早期版本作为学习对象的一些原因;然后具体说明了选择早期Linux内核版本进行学习的优点和不足之处以及如何开始进一步学习;最后对各章的内容进行了简要介绍。
1.1Linux的诞生和发展
Linux操作系统是UNIX操作系统的一种克隆系统。它诞生于1991年10月5日(这是第一次正式向外公布的时间)。此后借助于Internet网络,经过全世界计算机爱好者的共同努力,现已成为当今使用最多的一种UNIX类操作系统,并且使用人数还在迅猛增长。
Linux操作系统的诞生、发展和成长过程依赖于以下五个重要支柱:UNIX操作系统、MINIX操作系统、GNU计划、POSIX标准和Internet。下面根据这五个基本线索来回顾一下Linux的酝酿过程、开发历程以及最初的发展。首先分别介绍其中的四个基本要素,然后根据Linux的创始人Linus Torvalds从对计算机感兴趣而自学计算机知识,到心里开始酝酿编制一个自己的操作系统,到最初Linux内核0.O1版公布以及从此如何艰难地一步一个脚印地在全世界黑客的帮助下推出比较完善的1.0版本这段经过,对Linux的早期发展历史进行详细介绍。
当然,目前Linux内核版本已经开发到了2.6.X版。而大多数Linux系统中所用到的内核是稳定的2.6.12版内核(其中第2个数字若是奇数则表示正在开发的版本,不能保证系统的稳定性)。对于Linux的一般发展史,许多文章和书籍都有介绍,这里不再重复。
1.1.1UNIX操作系统的诞生
UNIX操作系统最早是美国贝尔实验室的Ken Thompson于1969年夏在DEC PDP-7小型计算机上开发的一个分时操作系统。
Ken Thompson为了能在闲置不用的PDP-7计算机上运行他非常喜欢的星际旅行(Star Trek)游戏,于1969年夏天趁他夫人回家乡加利福尼亚度假期间,在一个月内开发出了UNIX操作系统的原型。当时使用的是BCPL语言(基本组合编程语言),后经Dennis Ritchie于1972年用移植性很强的C语言进行了改写,使得UNIX系统在大学得到了推广。
Introduction

本书是一本有关Linux操作系统内核基本工作原理的入门读物。
本书的主要目标
本书的主要目标是使用尽量少的篇幅,对完整的Linux内核源代码进行解剖,使读者对操作系统的基本功能和实际实现方式获得全方位的理解。
本书读者应是知晓Linux系统的一般使用方法或具有一定的编程基础,但比较缺乏阅读目前最新内核源代码的基础知识,又急切希望能够进一步理解IJNIX类操作系统内核工作原理和实际代码实现的爱好者。这部分读者的水平应该界于初级与中级水平之间。目前,这部分读者人数在Linux爱好者中所占的比例是很高的,而面向这部分读者以比较易懂和有效的手段讲解内核的书籍资料不多。现有书籍不足之处目前已有的描述Linux内核的书籍,均尽量选用最新Linux内核版本(例如Fedora 8使用的2.6.24稳定版等)进行描述,但由于目前Linux内核整个源代码的大小已经非常大(例如2.2.20版就已具有268万行代码!),因此这些书籍仅能对LJnux内核源代码进行选择性或原理性的说明,许多系统实现细节被忽略。因此并不能使读者对实际L,inux内核有清晰而完整的理解。
Scott Maxwell的《Linux内核源代码分析》基本上是面对Linux中、高级水平的读者,需要较为全面的基础知识才能完全理解。而且可能是由于篇幅所限,该书并没有对所有Linux内核代码进行注释,略去了很多内核实现细节,例如内核中使用的各个头文件(*.h)、生成内核代码映像文件的工具程序、各个make文件的作用和实现等均没有涉及。因此对于处于初、中级水平之间的读者来说阅读该书有些困难。
John Lions的《莱昂氏LINIX源代码分析》虽然是一本学习UNIX类操作系统内核源代码很好的书,但是由于其采用的是UNIXV6版,其中系统调用等部分代码是用早已废弃的PDP.11系列机的汇编语言编制的,因此在阅读和理解与硬件部分相关的源代码时就会遇到较大的困难。
A.S.Tanenbaum的《操作系统:设计与实现》是有关操作系统内核实现很好的入门书籍,但该书所叙述的M1NⅨ系统是一种基于消息传递的内核实现机制,与IAnux内核的实现有所区别。因此在学习该书之后,并不能很顺利地即刻着手进一步学习较新的Linux内核源代码实现。
在使用这些书籍进行学习时会有一种“盲人摸象”的感觉,不容易真正理解Linux内核系统具体实现的整体概念,尤其是对那些Linux系统初学者,或刚学会如何使用Linux系统的人在使用那些书学习内核原理时,内核的整体运作结构并不能清晰地在脑海中形成。这在本人多年的Linux内核学习过程中也深有体会。在1991年10月,Linux的创始人Linus’Forvalds在开发出Linux 0.03版后写的一篇文章中也提到了同样的问题。在这篇题为《IJnux-aFree unix.386Kernel》目的文章中,他说:“开发Linux是为了那些操作系统爱好者和计算机科学系的学生使用、学习和娱乐”。“自由软件基金会的GN2J Hurd系统如果开发出来就已经显得太庞大而不适合学习和理解。”

Specifications

Brand Jingdong book
Brand Origin China

Disclaimer

Product packaging, specifications and price are subject to change without notice. All information about the products on our website is provided for information purposes only. Please always read labels, warnings and directions provided with the product before use.

View Full Terms of Use
Add to favorites
{{ $isZh ? coupon.coupon_name_sub : coupon.coupon_ename_sub | formatCurrency }}
{{__("Buy Directly")}} {{ itemCurrency }}{{ item.directly_price }}
Quantity
{{ quantity }}
{{ instockMsg }}
{{ limitText }}
{{buttonTypePin == 3 ? __("Scan to view more PinGo") : __("Scan to start")}}
Sold by JD@CHINA
Ship to
{{ __("Ship to United States only") }}
Free shipping over 69
Genuine guarantee

Added to Cart

Keep Shopping

More to Consider

{{ item.brand_name }}

{{ item.item_name }}

{{ item.currency }}{{ item.market_price }}

{{ item.currency }}{{ item.unit_price }}

{{ item.currency }}{{ item.unit_price }}

Coupons

{{ coupon.coupon_name_new | formatCurrency }}
Clip Clipped Over
{{ getCouponDescStr(coupon) }}
{{ coupon.use_time_desc }}
Expires soon {{ formatTime(coupon.use_end_time) }}

Share this item with friends

Cancel

Yami Gift Card

Get this exclusive deal when paying with gift card

Terms and Conditions

Gift card deals are special offers for selected products;

The gift card deals will automatically be activated if a customer uses gift card balance at check out and the balance is sufficient to pay for the total price of the shopping cart products with gift card deals;

You will not be able to activate the gift card deals if you choose other payment methods besides gift card. The products will be purchased at their normal prices;

If your account balance is not enough to pay for the products with gift card deals, you can choose to reload your gift card balance by clicking on the Reload button at either shopping cart page or check out page;

Products that have gift card deals can be recognized by a special symbol showing 'GC Deal';

For any additional questions or concerns, please contact our customer service;

Yamibuy reserves the right of final interpretation.

Sold by Yami

Service Guarantee

Yami Free Shipping over $49
Yami Easy Returns
Yami Ships from United States

Shipping

  • United States

    Standard Shipping is $5.99 (Excluding Alaska & Hawaii). Free on orders of $49 or more.

    Local Express is $5.99 (Available in Parts of CA, NJ, MA & PA). Free on orders of $49 or more.

    2-Day Express (Includes Alaska & Hawaii) starts at $19.99.

Return Policy

Yami is committed to provide our customers with a peace of mind when purchasing from us. Most items shipped from Yamibuy.com can be returned within 30 days of receipt of shipment (For Food, Beverages, Snacks, Dry Goods, Health supplements, Fresh Grocery and Perishables Goods, within 7 days of receipt of shipment due to damages or quality issues; To ensure that every customer receives safe and high-quality products, we do not provide refunds or returns for beauty products once they have been opened or used, except in the case of quality issues; Some products may have different policies or requirements associated with them, please see below for products under special categories, or contact Yami Customer Service for further assistance).
Thank you for your understanding and support.

Learn More

Sold by Yami

Terms and Conditions of Yami E-Gift Card

If you choose “Redeem automatically” as your delivery method, your gift card balance will be reload automatically after your order has been processed successfully;

If you choose “Send to Email”as your delivery method, the card number and CVV will be sent to the email address automatically;

Any user can use the card number and CVV to redeem the gift card, please keep your gift card information safely. If you have any trouble receiving email, please contact Yami customer service;

Yami gift card can be used to purchase both Yami owned or Marketplace products;

Yami gift card will never expire;

Yami gift card balance does not have to be used up at once;

All rights reserved by Yami.

Return Policy

Gift card that has already been consumed is non-refundable.

Sold by JD@CHINA

Service Guarantee

Yami Free Shipping over $49
Yami Easy Returns
Yami Ships from United States

Shipping

  • United States

    Standard Shipping is $5.99 (Excluding Alaska & Hawaii). Free on orders of $49 or more.

    Local Express is $5.99 (Available in Parts of CA, NJ, MA & PA). Free on orders of $49 or more.

    2-Day Express (Includes Alaska & Hawaii) starts at $19.99.

Return Policy

You may return product within 30 days upon receiving the product. Items returned must be new in it's original packing, including the original invoice for the purchase. Customer return product at their own expense.

Sold by JD@CHINA

Service Guarantee

Yami Cross-store Free Shipping over $69
Yami 30-days Return

Yami-China FC

Yami has a consolidation warehouse in China which collects multiple sellers’ packages and combines to one order. Our Yami consolidation warehouse will directly ship the packages to your door. Cross-store free shipping over $69.

Return Policy

You may return products within 30 days upon receiving the products. Sellers take responsibilities for any wrong shipment or missing items. Packing needs to be unopened for any other than quality issues return. We promise to pack carefully, but because goods are taking long journey to destinations, simple damages to packaging may occur. Any damages not causing internal goods quality problems are not allowed to return. If you open the package and any quality problem is found, please contact customer service within three days after receipt of goods.

Shipping Information

Yami Consolidation Service Shipping Fee $9.99(Free shipping over $69)

Sellers in China will ship their orders within 1-2 business days once the order is placed. Packages are sent to our consolidation warehouse in China and combined there. Our Yami consolidation warehouse will directly ship the packages to you via UPS. The average time for UPS to ship from China to the United States is about 10 working days and it can be traced using the tracking number. Due to the pandemic, the delivery time may be delayed by about 5 days. The package needs to be signed by the guest. If the receipt is not signed, the customer shall bear the risk of loss of the package.

Sold by JD@CHINA

Service Guarantee

Free shipping over 69
Genuine guarantee

Shipping

Yami Consolidated Shipping $9.99(Free shipping over $69)


Seller will ship the orders within 1-2 business days. The logistics time limit is expected to be 7-15 working days. In case of customs clearance, the delivery time will be extended by 3-7 days. The final receipt date is subject to the information of the postal company.

Yami Points information

All items are excluding from any promotion or points events on Yamibuy.com

Return Policy

You may return product within 30 days upon receiving the product. Items returned must be new in it's original packing, including the original invoice for the purchase. Customer return product at their own expense.

Yami

Download the Yami App

Back Top

Recommended for You

About the brand

Jingdong book

为您推荐

Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折

Reviews{{'('+ commentList.posts_count + ')'}}

Have your say. Be the first to help other guests.

Write a review
{{ totalRating }} Write a review
  • {{i}} star

    {{i}} stars

    {{ parseInt(commentRatingList[i]) }}%

Yami Yami
{{ comment.user_name }}

{{ showTranslate(comment) }}Show Less

{{ strLimit(comment,800) }}Show more

Show Original

{{ comment.content }}

Yami
Show All

{{ formatTime(comment.in_dtm) }} VERIFIED PURCHASE {{groupData}}

{{ comment.likes_count }} {{ comment.likes_count }} {{ comment.reply_count }} {{comment.in_user==uid ? __('Delete') : __('Report')}}
Yami Yami
{{ comment.user_name }}

{{ showTranslate(comment) }}Show Less

{{ strLimit(comment,800) }}Show more

Show Original

{{ comment.content }}

Yami
Show All

{{ formatTime(comment.in_dtm) }} VERIFIED PURCHASE {{groupData}}

{{ comment.likes_count }} {{ comment.likes_count }} {{ comment.reply_count }} {{comment.in_user==uid ? __('Delete') : __('Report')}}

No related comment~

Review

Yami Yami

{{ showTranslate(commentDetails) }}Show Less

{{ strLimit(commentDetails,800) }}Show more

Show Original

{{ commentDetails.content }}

Yami
Show All

{{ formatTime(commentDetails.in_dtm) }} VERIFIED PURCHASE {{groupData}}

{{ commentDetails.likes_count }} {{ commentDetails.likes_count }} {{ commentDetails.reply_count }} {{commentDetails.in_user==uid ? __('Delete') : __('Report')}}

Please write at least one word

Comments{{'(' + replyList.length + ')'}}

Yami Yami

{{ showTranslate(reply) }}Show Less

{{ strLimit(reply,800) }}Show more

Show Original

{{ reply.reply_content }}

{{ formatTime(reply.reply_in_dtm) }}

{{ reply.reply_likes_count }} {{ reply.reply_likes_count }} {{ reply.reply_reply_count }} {{reply.reply_in_user==uid ? __('Delete') : __('Report')}}

Please write at least one word

Cancel

That’s all the comments so far!

Write a review
How would you rate this item?

Please add your comment.

  • A nice nickname will make your comments more popular!
  • The nickname in your account will be changed to the same as here.
Thanks for your review
Our community rely on great reviews like yours to find the best of Asia.

Report

If you find this content inappropriate and think it should be removed from the Yami.com site, let us know please.

Cancel

Are you sure to delete your review?

Cancel

You’ve Recently Viewed

About the brand

Jingdong book