Petr Baudis <pasky@suse.cz> writes:I pretty much agree with everything you said in this thread. In addition, I wonder if we would want to be able to say: 960 bps 0.9 KiB/s 2.3 MiB/s IOW, I do not think it is a good idea to have the list of "prefixes" in this function and force callers to _append_ unit. You might be better off by making the interface to the function to pass something like this: struct human_unit { char *unitname; unsigned long valuescale; } bps_to_human[] = { { "bps", 1 }, { "KiB/s", 1024 }, { "MiB/s", 1024 * 1024 }, { NULL, 0 }, }; and perhaps give canned set of unit list for sizes and throughputs as convenience. By doing so, you could even do this: struct human_unit bits_to_human[] = { { "bits", 1 }, { "bytes", 8 }, { "Kbytes", 8 * 1024 }, { "Mbytes", 8 * 1024 * 1024 }, { NULL, 0 }, }; I also am not particularly happy about using "double" in this API. Most of the callers that gather stats in the rest of the codebase count in (long) integers as far as I can tell, and it may be conceptually cleaner to keep the use of double as an internal implementation issue of this particular function. -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
| Greg KH | [GIT PATCH] driver core patches against 2.6.24 |
| Tarkan Erimer | Re: Dual-Licensing Linux Kernel with GPL V2 and GPL V3 |
| Martin Michlmayr | Network slowdown due to CFS |
| Ingo Molnar | Re: x86 arch updates also broke s390 |
git: | |
| Gerrit Renker | [PATCH 15/37] dccp: Set per-connection CCIDs via socket options |
| David Miller | [GIT]: Networking |
| Jarek Poplawski | [PATCH] pkt_sched: Destroy gen estimators under rtnl_lock(). |
| Natalie Protasevich | [BUG] New Kernel Bugs |
