From 7b1a1b8387f8c42b179a9e9ebc56124ba09dbd08 Mon Sep 17 00:00:00 2001
From: Tsanie Lily <tsorgy@gmail.com>
Date: Fri, 31 May 2019 16:20:55 +0800
Subject: [PATCH] update article structure

---
 source/_posts/PCI-e-Passthrough.md | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/source/_posts/PCI-e-Passthrough.md b/source/_posts/PCI-e-Passthrough.md
index 0665a6b..1eaf3c1 100644
--- a/source/_posts/PCI-e-Passthrough.md
+++ b/source/_posts/PCI-e-Passthrough.md
@@ -27,7 +27,7 @@ CPU 和主板需要支持 `IOMMU` (I/O Memory Management Unit) 中断重映射
 
 一旦确保硬件支持直通,你还需要做一些配置来启用 PCI(e) 直通功能。
 
-### IOMMU ###
+#### IOMMU ####
 
 必须在内核命令上激活 IOMMU。最简单的方法是通过 grub 来启用,编辑 `/etc/default/grub`,在 `GRUB_CMDLINE_LINUX_DEFAULT` 变量中加入以下参数:
 
@@ -46,7 +46,7 @@ amd_iommu=on
 # update-grub
 ```
 
-### 内核模块 ###
+#### 内核模块 ####
 
 必须确保加载以下模块,添加以下行到 `/etc/modules` 中来实现。
 ```
@@ -61,7 +61,7 @@ vfio_virqfd
 # update-initramfs -u -k all
 ```
 
-### 完成设置 ###
+#### 完成设置 ####
 
 重启服务器使设置生效,并用以下命令检查:
 ```shell