Displaying 1 result from an estimated 1 matches for "eierlegende".
2019 Apr 09
0
[PATCH 00/15] Share TTM code among framebuffer drivers
...s.
3. We need some LRU component which tells us what to evict when memory
in a location becomes to tight.
Now for lessons learned we should at least avoid the following design
pitfalls:
A) DON'T make it a layered design! Layers are for making cake, not software.
B) DON'T make it a "Eierlegende Wollmilchsau" (German saying). E.g.
don't try to solve every single corner cases in one piece of software.
??? Let's make components which solve one specific problem.
C) Pipeline everything! E.g. the hardware we deal with is asynchronous
by design. Blocking for the hardware to fini...