Skip to content

Commit a6ffb9d

Browse files
committed
Updates from Overleaf
1 parent f98e9b6 commit a6ffb9d

File tree

3 files changed

+18
-18
lines changed

3 files changed

+18
-18
lines changed

lecture20/slide-20-01.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
% TITLE PAGE
55
%----------------------------------------------------------------------------------------
66

7-
\title[第19讲]{第二十讲 :分布式系统} % The short title appears at the bottom of every slide, the full title is only on the title page
7+
\title[第20讲]{第二十讲 :分布式系统} % The short title appears at the bottom of every slide, the full title is only on the title page
88
\subtitle{第1节:分布式系统概述}
99
\author{向勇、陈渝、李国良} % Your name
1010
\institute[清华大学] % Your institution as it will appear on the bottom of every slide, may be shorthand to save space

lecture20/slide-20-02.tex

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
% TITLE PAGE
55
%----------------------------------------------------------------------------------------
66

7-
\title[第19讲]{第二十讲 :分布式系统} % The short title appears at the bottom of every slide, the full title is only on the title page
7+
\title[第20讲]{第二十讲 :分布式系统} % The short title appears at the bottom of every slide, the full title is only on the title page
88
\subtitle{第2节:分布式文件系统}
99
\author{向勇、陈渝、李国良} % Your name
1010
\institute[清华大学] % Your institution as it will appear on the bottom of every slide, may be shorthand to save space
@@ -115,8 +115,8 @@
115115
挑战:如何定义无状态文件协议,让它既无状态,又支持POSIX文件系统API?
116116
\begin{itemize}
117117
\item 关键是文件句柄(file handle)。文件句柄用于唯一地描述文件或目录。因此,许多协议请求包括一个文件句柄。
118-
\item 2. 服务器启动并再次运行后,客户端会发出第二次读取,但服务器不知道fd指的是哪个文件?
119-
\item 1. 一个打开文件然后崩溃的客户端:open()在服务器上用掉了一个文件描述符,服务器如何关闭给定的文件呢?
118+
\item 服务器启动并再次运行后,客户端会发出第二次读取,但服务器不知道fd指的是哪个文件?
119+
\item 一个打开文件然后崩溃的客户端:open()在服务器上用掉了一个文件描述符,服务器如何关闭给定的文件呢?
120120
\end{itemize}
121121
\begin{figure}
122122
\includegraphics[width=0.8\linewidth]{figs/stateful-code.png}
@@ -192,7 +192,7 @@
192192
% \end{itemize}
193193
读取文件:客户端和文件服务器的操作 part2
194194
\begin{figure}
195-
\includegraphics[width=0.8\linewidth]{figs/nfsv2-read-2.png}
195+
\includegraphics[width=0.7\linewidth]{figs/nfsv2-read-2.png}
196196
% \caption{xxxx}
197197
\end{figure}
198198

lecture20/slide-20-03.tex

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
% TITLE PAGE
55
%----------------------------------------------------------------------------------------
66

7-
\title[第19讲]{第二十讲 :分布式系统} % The short title appears at the bottom of every slide, the full title is only on the title page
8-
\subtitle{第3节:分布式IO}
7+
\title[第20讲]{第二十讲 :分布式系统} % The short title appears at the bottom of every slide, the full title is only on the title page
8+
\subtitle{第3节:分布式I/O}
99
\author{向勇、陈渝、李国良} % Your name
1010
\institute[清华大学] % Your institution as it will appear on the bottom of every slide, may be shorthand to save space
1111
{
@@ -37,13 +37,13 @@
3737
%----------------------------------------------
3838
%% PRESENTATION SLIDES
3939
%----------------------------------------------
40-
\section{第3节:分布式IO} % Sections can be created in order to organize your presentation into discrete blocks, all sections and subsections are automatically printed in the table of contents as an overview of the talk
40+
\section{第3节:分布式I/O} % Sections can be created in order to organize your presentation into discrete blocks, all sections and subsections are automatically printed in the table of contents as an overview of the talk
4141
%----------------------------------------------
4242
\subsection{LegoOS} % A subsection can be created just before a set of slides with a common theme to further break down your presentation into chunks
4343
%----------------------------------------------
4444
\begin{frame}[fragile]
45-
\frametitle{分布式IO}
46-
分布式IO计算逐渐浮现在大型数据中心和移动终端领域
45+
\frametitle{分布式I/O}
46+
分布式I/O计算逐渐浮现在大型数据中心和移动终端领域
4747

4848

4949

@@ -57,7 +57,7 @@ \subsection{LegoOS} % A subsection can be created just before a set of slides wi
5757

5858
%----------------------------------------------
5959
\begin{frame}[fragile]
60-
\frametitle{分布式IO}
60+
\frametitle{分布式I/O}
6161
出现了新型的splitkernel架构
6262

6363

@@ -72,7 +72,7 @@ \subsection{LegoOS} % A subsection can be created just before a set of slides wi
7272

7373
%----------------------------------------------
7474
\begin{frame}[fragile]
75-
\frametitle{分布式IO}
75+
\frametitle{分布式I/O}
7676
% \framesubtitle{xxxx}
7777
LegoOS:把CPU,Memory,Storage 分布在不同机器上,通过高速网络RDMA形成一个虚拟的大机器
7878

@@ -94,7 +94,7 @@ \subsection{LegoOS} % A subsection can be created just before a set of slides wi
9494

9595
%----------------------------------------------
9696
\begin{frame}[fragile]
97-
\frametitle{分布式IO}
97+
\frametitle{分布式I/O}
9898
Separate Processor and Memory
9999
% \framesubtitle{xxxx}
100100
%% figure
@@ -105,7 +105,7 @@ \subsection{LegoOS} % A subsection can be created just before a set of slides wi
105105
\end{frame}
106106
%----------------------------------------------
107107
\begin{frame}[fragile]
108-
\frametitle{分布式IO}
108+
\frametitle{分布式I/O}
109109
Separate Processor and Memory
110110
% \framesubtitle{xxxx}
111111
%% figure
@@ -117,7 +117,7 @@ \subsection{LegoOS} % A subsection can be created just before a set of slides wi
117117

118118
%----------------------------------------------
119119
\begin{frame}[fragile]
120-
\frametitle{分布式IO}
120+
\frametitle{分布式I/O}
121121
Add Extended Cache at Processor
122122
% \framesubtitle{xxxx}
123123
%% figure
@@ -129,7 +129,7 @@ \subsection{LegoOS} % A subsection can be created just before a set of slides wi
129129

130130
%----------------------------------------------
131131
\begin{frame}[fragile]
132-
\frametitle{分布式IO}
132+
\frametitle{分布式I/O}
133133
Distributed Resource Management
134134

135135
% \framesubtitle{xxxx}
@@ -142,7 +142,7 @@ \subsection{LegoOS} % A subsection can be created just before a set of slides wi
142142

143143
%----------------------------------------------
144144
\begin{frame}[fragile]
145-
\frametitle{分布式IO}
145+
\frametitle{分布式I/O}
146146
Distributed Memory Management
147147
% \framesubtitle{xxxx}
148148
%% figure
@@ -155,7 +155,7 @@ \subsection{LegoOS} % A subsection can be created just before a set of slides wi
155155

156156
%----------------------------------------------
157157
\begin{frame}[fragile]
158-
\frametitle{分布式IO}
158+
\frametitle{分布式I/O}
159159
Implementation
160160
% \framesubtitle{xxxx}
161161
%% figure

0 commit comments

Comments
 (0)