+50 to usb
[ikiwiki.git] / docs / developer / Code_Bounties.mdwn
1 [[!toc  ]]
2
3 # Explanation 
4
5 A code bounty is a certain financial stimulant to encourage someone to put his or her effort into a project. A code bounty in the DragonFlyBSD project needs to adhere to a set of rules defined hereunder, though these are only preliminary and subject to change. One could for example imagine developers accepting sponsorship on a wholly different basis, or non-financial rewards for completing a bounty project, like free hardware (we love that!).
6
7 # Rules 
8
9 * Bounty Projects are open to anyone that has a reasonable capability of completing the project. Typically it's on first to ask basis, but the sponsor of the bounty may choose differently.
10
11 * If the developer can not complete the project by the given time period, the bounty agreement is void and no money will be issued for work done. DragonFly developers may extend the time period if it's reasonable and prudent to do so. Upon voiding the agreement, someone may reissue the project again to another developer.
12
13 * Payment for a project shall be issued in no less then 72 hours after the DragonFly developers has had ten business days to determine if the code is stable and usefulness, no major issues are left unresolved and able for being merged into the project. Payment shall be in either [[Paypal]] (preferred), some money sending company or  a bank account transfer.
14
15 * Upon recieving payment, the project developer shall issue (within 24 hours) a message in the WIKI and to DragonFly development ML that they have recieved payment.
16
17 * All code submitted shall be of the same license as DragonFly. Any questions on the licensing issues should directed to the DragonFly Team.
18
19 # List of bounties 
20 ## UTF-8 support in Console 
21 ### Description 
22 Adding full UTF-8 support in console.
23
24 ### Technical details 
25 Not yet written.
26
27 ### Main goals 
28 Not yet written.
29
30 ### Estimated time 
31 Still unknown.
32
33 ### Donators 
34 *** **timofonic** ***: 35 eur.
35
36 *** **Dillon** ***: 50 usd.
37 ***
38  TOTAL AMOUNT         35 eur + 50 usd.
39
40 <br />
41 ## Update our interrupt routing and PCI code
42 ### Description
43 (shamelessly copied from gsoc2010 projects page)
44
45 * Update our interrupt routing to ACPI interrupt routing instead of relying on the mptable exclusively
46 * Update the PCI code to take advantage of MSI (Message Signalled Interrupts) 
47    (PCI code *can* do MSI. It was synced w/FreeBSD 7.2 last year, just grep for MSI in bus/pci)
48
49 ### Technical details 
50 Not yet written.
51
52 ### Main goals 
53 Not yet written.
54
55 ### Estimated time 
56 Unknown.
57
58 ### Donators 
59 *** **Rumko** ***: 150 eur.
60
61 *** **Dillon** ***: 100 usd.
62
63 *** **sjg** ***: 50 usd.
64
65 *** **alexh** ***: 150 usd.
66
67 *** **JustinS** ***: 50 usd.
68 ***
69  TOTAL AMOUNT         150 eur + 350 usd.
70
71 <br />
72 ## Bring in usb4bsd
73 ### Description
74 * Completely rip out our usb stack and replace it with FreeBSD's new usb4bsd (or whatever the FreeBSD-current USB stack is called nowadays).
75 * Note that some work was done here already by polachok (http://gitweb.dragonflybsd.org/~polachok/dragonfly.git/shortlog/refs/heads/usb2) but the state is unknown.
76
77 ### Technical details 
78 Not yet written.
79
80 ### Main goals 
81 Not yet written.
82
83 ### Estimated time 
84 Unknown.
85
86 ### Donators 
87 *** **alexh** ***: 100 usd.
88
89 *** **sjg** ***: 100 usd.
90 ***
91  TOTAL AMOUNT         200 usd.
92
93 <br />
94 ## Port valgrind to DragonFlyBSD
95 ### Description
96 (shamelessly copied from gsoc2010 projects page)
97
98 Valgrind is a very useful tool on a system like DragonFly that's under heavy development. Ideally, we would want the port to be usable with vkernel processes, thus enabling complex checking of the core kernel code.
99
100 ### Technical details 
101 Not yet written.
102
103 ### Main goals 
104 (shamelessly copied from gsoc2010 projects page)
105
106 The goal of this project is to port valgrind (3.5.0+) to the DragonFlyBSD platform so that at least the memcheck tool runs sufficiently well to be useful. Also an update for the pkgsrc package (devel/valgrind) should be made.
107
108 ### Estimated time 
109 Unknown.
110
111 ### Donators 
112 *** **Rumko** ***: 100 eur.
113
114 *** **tuxillo** ***: 50 eur.
115
116 *** **Dillon** ***: 100 usd.
117
118 *** **sjg** ***: 50 usd.
119 ***
120  TOTAL AMOUNT         150 eur + 150 usd.
121
122 <br />
123 ## HAMMER compression
124 ### Description
125 (shamelessly copied from gsoc2010 projects page)
126
127 * Compress blocks as they get written to disk.
128 * Only file data (rec_type == DATA) should be compressed, not meta-data.
129 * the CRC should be that of the uncompressed data.
130 * ideally you'd need to associate the uncompressed data with the buffer cache buffer somehow, so that decompression is only performed once.
131 * compression could be turned on a per-file or per-pfs basis.
132 * gzip compression would be just fine at first; lzo or lzjb might be preferable.
133
134 ### Technical details 
135 (shamelessly copied from gsoc2010 projects page)
136
137 Doing compression would require flagging the data record as being compressed and also require double-buffering since the buffer cache buffer associated with the uncompressed data might have holes in it and otherwise referenced by user programs and cannot serve as a buffer for in-place compression or decompression.
138
139 The direct read / direct write mechanic would almost certainly have to be disabled for compressed buffers and the small-data zone would probably have to be used (the large-data zone is designed only for use with 16K or 64K buffers).
140
141 ### Main goals 
142 Not yet written.
143
144 ### Estimated time 
145 Unknown.
146
147 ### Donators 
148 *** **Rumko** ***: 50 eur.
149
150 *** **Dillon** ***: 100 usd.
151
152 *** **vsrinivas** ***: 50 usd.
153 ***
154  TOTAL AMOUNT         50 eur + 150 usd.
155
156 <br/>
157 ## HAMMER Dedup
158 ### Description
159 * HAMMER should store unique data blocks only once on a volume.
160 * Blocks can be compared by some form of hash and/or via block contents.
161
162 This can be on write or (more likely) as part of reblocking.
163
164 ### Status
165 * Merged, bugfixes to go..
166
167 ### Main goals
168
169 ### Donators
170
171 *** **vsrinivas** ***: 250 usd.
172
173 *** **dillon** ***: 300 usd.
174
175 *** **JustinS** ***: 100 usd.
176
177 ***
178  TOTAL AMOUNT          650 usd.
179