On Mon, Jul 30, 2018 at 12:46 AM Sayali Lokhande <sayalil@xxxxxxxxxxxxxx> wrote: > > Hi Evan, > > > On 7/18/2018 1:53 AM, Evan Green wrote: ... > > I'm not dead set on binary, since as above I could do it either way, > > but it seemed worth at least talking through. Let me know what you > > think. > > -Evan > > I am using ASCII format for reading/writing to config desc as it will be > more readable for users and easier/comfortable to compare any value to > default spec value(if required). > So I don't really see any harm in using current ASCII format for > provisioning purpose. I'm not convinced by those arguments, but ultimately it's between you and the maintainers. If you're going with the ASCII route, then I have another review comment. Currently in your patch, if kstrtoint fails, you print, but then break out of the loop and try to write the partially parsed descriptor anyway. That "break" should probably be changed to a "goto out". -Evan