History log of /xv6-public/main.c (Results 1 – 25 of 135)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
Revision tags: xv6-rev11
# 96e4e2f4 30-Aug-2018 Frans Kaashoek <kaashoek@mit.edu>

thanks eyalz800


# 4638cabf 29-Aug-2017 Robert Morris <rtm@csail.mit.edu>

fix runoff complaints about pagination and long lines


# 4f14d8d1 09-Aug-2017 Frans Kaashoek <kaashoek@mit.edu>

Commit to running on an SMP (perhaps with only 1 core). Remove most code
from picirq.c and remove timer.c completely. Update runoff.list.


# ed396c06 01-Feb-2017 Frans Kaashoek <kaashoek@mit.edu>

Eliminate code for gs trick to track per-cpu state. We rely on lapiccpunum()
to find a per-cpu id with which we locate a cpu's cpu struct.


# abf847a0 31-Jan-2017 Frans Kaashoek <kaashoek@mit.edu>

Start of an experiment to remove the use of gs for cpu local variables.


Revision tags: xv6-rev9
# 5bf3fbee 02-Sep-2016 Frans Kaashoek <kaashoek@mit.edu>

Make runoff happy


# ae15515d 02-Sep-2016 Frans Kaashoek <kaashoek@mit.edu>

APIC IDs may not be consecutive and start from zero, so we cannot really use it
as a direct index into cpus. Record apicid in struct cpu and have cpunum() look
for it. Replace cpu->id with cpunum()

APIC IDs may not be consecutive and start from zero, so we cannot really use it
as a direct index into cpus. Record apicid in struct cpu and have cpunum() look
for it. Replace cpu->id with cpunum() everywhere, and replace cpu->id with cpu->apicid.
Thanks to Xi Wang.

show more ...


# 7894fcd2 25-Aug-2016 Frans Kaashoek <kaashoek@mit.edu>

Remove trailing white space with:
for f in *.{h,c}; do sed -i .sed 's/[[:blank:]]*$//' $f; done
(Thanks to Nicolás Wolovick)


# a7c03bd9 24-Aug-2016 Robert Morris <rtm@csail.mit.edu>

p2v -> P2V


# c779cc2b 11-Aug-2016 Robert Morris <rtm@csail.mit.edu>

main comments


# 3431cd49 10-Aug-2016 Robert Morris <rtm@csail.mit.edu>

more comments in entryother.S


# 8320d61b 27-Jun-2015 Frans Kaashoek <kaashoek@mit.edu>

Pick up where i left off in april:
- move log into metadata part of disk, so that marking
that the log's blocks are in use falls out for free
- superblock describes the whole disk (sizes and offets)

Pick up where i left off in april:
- move log into metadata part of disk, so that marking
that the log's blocks are in use falls out for free
- superblock describes the whole disk (sizes and offets)
- sizes and offsets are computed in one place (mkfs) and
the rest of the code refers to the superblock for these values,
instead of recomputing them.

show more ...


Revision tags: xv6-rev8
# 74c77da6 29-Aug-2014 Frans Kaashoek <kaashoek@mit.edu>

Nice layout for a printout of the code


Revision tags: xv6-rev7
# 70c55557 23-Aug-2012 Frans Kaashoek <kaashoek@mit.edu>

Remove unused argument from lapicinit (thanks to Peter Froehlich)


Revision tags: osdi12-submit
# 1e6f0146 14-Sep-2011 Austin Clements <amdragon@mit.edu>

Use | instead of + for entrypgdir. Linker doesn't get in our way here.


# c092540e 13-Sep-2011 Robert Morris <rtm@csail.mit.edu>

eliminate enter_alloc -- use kalloc for everything


Revision tags: xv6-rev6
# e25b74ca 01-Sep-2011 Frans Kaashoek <kaashoek@26-4-190.dynamic.csail.mit.edu>

Fix layout issues for printed version


# 5e083578 31-Aug-2011 Robert Morris <rtm@csail.mit.edu>

enterpgdir -> entrypgdir


# a7061b4f 29-Aug-2011 Austin Clements <amdragon@mit.edu>

Style nits; indentation and tabs


# d10d324e 23-Aug-2011 Frans Kaashoek <kaashoek@Frans-Kaashoeks-MacBook-Pro.local>

Remove sys_init syscall
Invoke initlog from forkret on first user process


# a4b213cf 16-Aug-2011 Frans Kaashoek <kaashoek@Frans-Kaashoeks-MacBook-Pro.local>

Avoid "boot" in xv6


# 94496468 15-Aug-2011 Frans Kaashoek <kaashoek@26-4-190.dynamic.csail.mit.edu>

Use 4Mbyte pages during boot


# c60a3551 15-Aug-2011 Frans Kaashoek <kaashoek@26-4-190.dynamic.csail.mit.edu>

Separate more clearly bootloader from xv6 by renaming multiboot.S to entry.S etc.
Maybe the string boot shouldn't appear in xv6 code?


# c95ce31c 12-Aug-2011 Frans Kaashoek <kaashoek@206.sub-75-194-151.myvzw.com>

Oops


# e577a62f 12-Aug-2011 Frans Kaashoek <kaashoek@206.sub-75-194-151.myvzw.com>

Some comments


123456