<feed xmlns='http://www.w3.org/2005/Atom'>
<title>135e2/xv6-labs.git/BUGS, branch mmap</title>
<subtitle>xv6-labs-2024-winter</subtitle>
<link rel='alternate' type='text/html' href='https://git.135e2.dev/135e2/xv6-labs.git/'/>
<entry>
<title>Remove a few no longer relevant files</title>
<updated>2019-07-24T12:59:47+00:00</updated>
<author>
<name>Frans Kaashoek</name>
<email>kaashoek@mit.edu</email>
</author>
<published>2019-07-24T12:59:47+00:00</published>
<link rel='alternate' type='text/html' href='https://git.135e2.dev/135e2/xv6-labs.git/commit/?id=6f3a441c10ca714041c0ace01b0e7d92d5846768'/>
<id>6f3a441c10ca714041c0ace01b0e7d92d5846768</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>sh</title>
<updated>2007-09-05T15:55:43+00:00</updated>
<author>
<name>rsc</name>
<email>rsc</email>
</author>
<published>2007-09-05T15:55:43+00:00</published>
<link rel='alternate' type='text/html' href='https://git.135e2.dev/135e2/xv6-labs.git/commit/?id=e9f8419fbe33a94f4d0b18ec8c509156bdb84d2a'/>
<id>e9f8419fbe33a94f4d0b18ec8c509156bdb84d2a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>nits</title>
<updated>2007-08-28T19:25:04+00:00</updated>
<author>
<name>rsc</name>
<email>rsc</email>
</author>
<published>2007-08-28T19:25:04+00:00</published>
<link rel='alternate' type='text/html' href='https://git.135e2.dev/135e2/xv6-labs.git/commit/?id=cffa9543012ee0bc2a1d355ed00839b03fe7ae0c'/>
<id>cffa9543012ee0bc2a1d355ed00839b03fe7ae0c</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>tweaks</title>
<updated>2007-08-22T06:20:10+00:00</updated>
<author>
<name>rsc</name>
<email>rsc</email>
</author>
<published>2007-08-22T06:20:10+00:00</published>
<link rel='alternate' type='text/html' href='https://git.135e2.dev/135e2/xv6-labs.git/commit/?id=f0721f1be4c017d7e8d9d79b249fa04dda14a9ec'/>
<id>f0721f1be4c017d7e8d9d79b249fa04dda14a9ec</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>PDF at http://am.lcs.mit.edu/~rsc/xv6.pdf</title>
<updated>2007-08-22T06:01:32+00:00</updated>
<author>
<name>rsc</name>
<email>rsc</email>
</author>
<published>2007-08-22T06:01:32+00:00</published>
<link rel='alternate' type='text/html' href='https://git.135e2.dev/135e2/xv6-labs.git/commit/?id=eaea18cb9cbb86018dae8f1decfa217ecbe85fa5'/>
<id>eaea18cb9cbb86018dae8f1decfa217ecbe85fa5</id>
<content type='text'>
Various changes made while offline.

 + bwrite sector argument is redundant; use b-&gt;sector.
 + reformatting of files for nicer PDF page breaks
 + distinguish between locked, unlocked inodes in type signatures
 + change FD_FILE to FD_INODE
 + move userinit (nee proc0init) to proc.c
 + move ROOTDEV to param.h
 + always parenthesize sizeof argument
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Various changes made while offline.

 + bwrite sector argument is redundant; use b-&gt;sector.
 + reformatting of files for nicer PDF page breaks
 + distinguish between locked, unlocked inodes in type signatures
 + change FD_FILE to FD_INODE
 + move userinit (nee proc0init) to proc.c
 + move ROOTDEV to param.h
 + always parenthesize sizeof argument
</pre>
</div>
</content>
</entry>
<entry>
<title>Various cleanup:</title>
<updated>2007-08-21T19:22:08+00:00</updated>
<author>
<name>rsc</name>
<email>rsc</email>
</author>
<published>2007-08-21T19:22:08+00:00</published>
<link rel='alternate' type='text/html' href='https://git.135e2.dev/135e2/xv6-labs.git/commit/?id=f32f3638f4c34fbf2fc4398878e6304612bb3283'/>
<id>f32f3638f4c34fbf2fc4398878e6304612bb3283</id>
<content type='text'>
 - Got rid of dummy proc[0].  Now proc[0] is init.
 - Added initcode.S to exec /init, so that /init is
   just a regular binary.
 - Moved exec out of sysfile to exec.c
 - Moved code dealing with fs guts (like struct inode)
   from sysfile.c to fs.c.  Code dealing with system call
   arguments stays in sysfile.c
 - Refactored directory routines in fs.c; should be simpler.
 - Changed iget to return *unlocked* inode structure.
   This solves the lookup-then-use race in namei
   without introducing deadlocks.
   It also enabled getting rid of the dummy proc[0].
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
 - Got rid of dummy proc[0].  Now proc[0] is init.
 - Added initcode.S to exec /init, so that /init is
   just a regular binary.
 - Moved exec out of sysfile to exec.c
 - Moved code dealing with fs guts (like struct inode)
   from sysfile.c to fs.c.  Code dealing with system call
   arguments stays in sysfile.c
 - Refactored directory routines in fs.c; should be simpler.
 - Changed iget to return *unlocked* inode structure.
   This solves the lookup-then-use race in namei
   without introducing deadlocks.
   It also enabled getting rid of the dummy proc[0].
</pre>
</div>
</content>
</entry>
<entry>
<title>add test for rm .</title>
<updated>2007-08-10T17:53:09+00:00</updated>
<author>
<name>rsc</name>
<email>rsc</email>
</author>
<published>2007-08-10T17:53:09+00:00</published>
<link rel='alternate' type='text/html' href='https://git.135e2.dev/135e2/xv6-labs.git/commit/?id=5e03dd86c8de6180ddbddb16974e5af1a010f60b'/>
<id>5e03dd86c8de6180ddbddb16974e5af1a010f60b</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>add note</title>
<updated>2007-08-10T17:19:15+00:00</updated>
<author>
<name>rsc</name>
<email>rsc</email>
</author>
<published>2007-08-10T17:19:15+00:00</published>
<link rel='alternate' type='text/html' href='https://git.135e2.dev/135e2/xv6-labs.git/commit/?id=8139713c46aa63abb65d53fc237a21ffe91aa0bb'/>
<id>8139713c46aa63abb65d53fc237a21ffe91aa0bb</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>notes</title>
<updated>2007-08-08T10:32:32+00:00</updated>
<author>
<name>rsc</name>
<email>rsc</email>
</author>
<published>2007-08-08T10:32:32+00:00</published>
<link rel='alternate' type='text/html' href='https://git.135e2.dev/135e2/xv6-labs.git/commit/?id=4249490230bc24524ed62a36a2e2e8483ce177bc'/>
<id>4249490230bc24524ed62a36a2e2e8483ce177bc</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>fix index bug</title>
<updated>2007-08-08T09:29:18+00:00</updated>
<author>
<name>rsc</name>
<email>rsc</email>
</author>
<published>2007-08-08T09:29:18+00:00</published>
<link rel='alternate' type='text/html' href='https://git.135e2.dev/135e2/xv6-labs.git/commit/?id=35a24c8318dd784b62c57b1933ded6e880faaa55'/>
<id>35a24c8318dd784b62c57b1933ded6e880faaa55</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
