On Wed, 9 Nov 2011 11:55:51 +0530, Harsh Prateek Bora <ha...@linux.vnet.ibm.com> wrote: > Currently, we just print the numerical value of 9p operation identifier in > case of RERROR which is less meaningful for readability. Mapping 9p > operation ids to symbolic names provides a better tracelog: > > RERROR (tag = 1 , id = TWALK , err = 2 ) > RERROR (tag = 1 , id = TUNLINKAT , err = 39 )
It would be nice to map that err to a string. os.strerror(err) may be ? > > This patch provides a dictionary of all possible 9p operation symbols mapped > to their numerical identifiers which are likely to be used in future at > various places in this script. > > Signed-off-by: Harsh Prateek Bora <ha...@linux.vnet.ibm.com> > --- -aneesh