* [LARTC] About "b" meaning "byte" and bit
@ 2007-08-31 16:26 DervishD
2007-09-03 4:33 ` Indunil Jayasooriya
` (3 more replies)
0 siblings, 4 replies; 5+ messages in thread
From: DervishD @ 2007-08-31 16:26 UTC (permalink / raw)
To: lartc
Hi all :)
I think that this issue has already been discussed on this list, but
google didn't find anything interesting, so I'm bringing the subject
again.
The output of "tc" uses "b" meaning "byte" and "bit" for "bit". The
"official" suffixes for those units are "B" and "b", respectively, and
on top of this, I'm not sure if "kbit" means "kilobit" or "kibibit" in
"tc" output.
I haven't had time to look at iproute2 sources, so I don't know if
this should be dealt with in iproute2 or in the kernel itself. Most of
the kernel has switched to SI units already, and IMHO most of the utils
should do the same, to avoid the endless problem of SI vs. binary units.
This said, maybe this weird syntas is used in tc so third party apps
can parse the output. These apps certainly will break if a change in the
syntax is made, but otherwise I see no reason to keep using "b" instead
of "B" and "bit" instead of "b". Currently the only way of having a sane
syntax (and not only regarding units...) is "tcng"·
If such a modification is seen as appropriate, I volunteer to make
the patch.
Raúl Núñez de Arenas Coronado
--
Linux Registered User 88736 | http://www.dervishd.net
It's my PC and I'll cry if I want to... RAmen!
_______________________________________________
LARTC mailing list
LARTC@mailman.ds9a.nl
http://mailman.ds9a.nl/cgi-bin/mailman/listinfo/lartc
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [LARTC] About "b" meaning "byte" and bit
2007-08-31 16:26 [LARTC] About "b" meaning "byte" and bit DervishD
@ 2007-09-03 4:33 ` Indunil Jayasooriya
2007-09-03 9:17 ` DervishD
` (2 subsequent siblings)
3 siblings, 0 replies; 5+ messages in thread
From: Indunil Jayasooriya @ 2007-09-03 4:33 UTC (permalink / raw)
To: lartc
[-- Attachment #1.1: Type: text/plain, Size: 758 bytes --]
On 8/31/07, DervishD <lartc@dervishd.net> wrote:
> Hi all :)
>
> I think that this issue has already been discussed on this list, but
> google didn't find anything interesting, so I'm bringing the subject
> again.
>
> The output of "tc" uses "b" meaning "byte" and "bit" for "bit". The
> "official" suffixes for those units are "B" and "b", respectively, and
> on top of this, I'm not sure if "kbit" means "kilobit" or "kibibit" in
> "tc" output.
>
SEE below that was taken form this URL
http://luxik.cdi.cz/~devik/qos/htb/manual/userg.htm
Please read: tc tool (not only HTB) uses shortcuts to denote units of rate.
kbps means kilobytes and kbit means kilobits ! This is the most FAQ about tc
in linux.
--
Thank you
Indunil Jayasooriya
[-- Attachment #1.2: Type: text/html, Size: 1239 bytes --]
[-- Attachment #2: Type: text/plain, Size: 143 bytes --]
_______________________________________________
LARTC mailing list
LARTC@mailman.ds9a.nl
http://mailman.ds9a.nl/cgi-bin/mailman/listinfo/lartc
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [LARTC] About "b" meaning "byte" and bit
2007-08-31 16:26 [LARTC] About "b" meaning "byte" and bit DervishD
2007-09-03 4:33 ` Indunil Jayasooriya
@ 2007-09-03 9:17 ` DervishD
2007-09-06 21:14 ` Andy Furniss
2007-09-07 7:34 ` DervishD
3 siblings, 0 replies; 5+ messages in thread
From: DervishD @ 2007-09-03 9:17 UTC (permalink / raw)
To: lartc
Hi Indunil :)
* Indunil Jayasooriya <indunil75@gmail.com> dixit:
> On 8/31/07, DervishD <lartc@dervishd.net> wrote:
> > Hi all :)
> >
> > I think that this issue has already been discussed on this list, but
> > google didn't find anything interesting, so I'm bringing the subject
> > again.
> >
> > The output of "tc" uses "b" meaning "byte" and "bit" for "bit". The
> > "official" suffixes for those units are "B" and "b", respectively, and
> > on top of this, I'm not sure if "kbit" means "kilobit" or "kibibit" in
> > "tc" output.
> >
>
> SEE below that was taken form this URL
>
> http://luxik.cdi.cz/~devik/qos/htb/manual/userg.htm
>
>
> Please read: tc tool (not only HTB) uses shortcuts to denote units of rate.
> kbps means kilobytes and kbit means kilobits ! This is the most FAQ about tc
> in linux.
Yes, I already knew that, what I was asking is why SI units are not
used and "shortcuts" are used instead: see my original message, I was
not sure if kilobit was being used correctly (meaning 1000 bits) or if
it was being used mistakenly for kibibit (1024 bits), and on top of
that, why "b" was being used as byte when the SI prefix for byte is "B".
I mean, tc doesn't seem to follow any standard except maybe in
kilobit (which should be then used as kb, not kbit).
Raúl Núñez de Arenas Coronado
--
Linux Registered User 88736 | http://www.dervishd.net
It's my PC and I'll cry if I want to... RAmen!
We are waiting for 13 Feb 2009 23:31:30 +0000 ...
_______________________________________________
LARTC mailing list
LARTC@mailman.ds9a.nl
http://mailman.ds9a.nl/cgi-bin/mailman/listinfo/lartc
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [LARTC] About "b" meaning "byte" and bit
2007-08-31 16:26 [LARTC] About "b" meaning "byte" and bit DervishD
2007-09-03 4:33 ` Indunil Jayasooriya
2007-09-03 9:17 ` DervishD
@ 2007-09-06 21:14 ` Andy Furniss
2007-09-07 7:34 ` DervishD
3 siblings, 0 replies; 5+ messages in thread
From: Andy Furniss @ 2007-09-06 21:14 UTC (permalink / raw)
To: lartc
DervishD wrote:
> Hi Indunil :)
>
> * Indunil Jayasooriya <indunil75@gmail.com> dixit:
>> On 8/31/07, DervishD <lartc@dervishd.net> wrote:
>>> Hi all :)
>>>
>>> I think that this issue has already been discussed on this list, but
>>> google didn't find anything interesting, so I'm bringing the subject
>>> again.
>>>
>>> The output of "tc" uses "b" meaning "byte" and "bit" for "bit". The
>>> "official" suffixes for those units are "B" and "b", respectively, and
>>> on top of this, I'm not sure if "kbit" means "kilobit" or "kibibit" in
>>> "tc" output.
>>>
>> SEE below that was taken form this URL
>>
>> http://luxik.cdi.cz/~devik/qos/htb/manual/userg.htm
>>
>>
>> Please read: tc tool (not only HTB) uses shortcuts to denote units of rate.
>> kbps means kilobytes and kbit means kilobits ! This is the most FAQ about tc
>> in linux.
>
> Yes, I already knew that, what I was asking is why SI units are not
> used and "shortcuts" are used instead: see my original message, I was
> not sure if kilobit was being used correctly (meaning 1000 bits) or if
> it was being used mistakenly for kibibit (1024 bits), and on top of
> that, why "b" was being used as byte when the SI prefix for byte is "B".
It got changed so kbit means 1000 when S.Hemminger took over maintenance
IIRC.
>
> I mean, tc doesn't seem to follow any standard except maybe in
> kilobit (which should be then used as kb, not kbit).
I think changing kb and kbit would break too many existing scripts.
>
> Raúl Núñez de Arenas Coronado
>
_______________________________________________
LARTC mailing list
LARTC@mailman.ds9a.nl
http://mailman.ds9a.nl/cgi-bin/mailman/listinfo/lartc
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [LARTC] About "b" meaning "byte" and bit
2007-08-31 16:26 [LARTC] About "b" meaning "byte" and bit DervishD
` (2 preceding siblings ...)
2007-09-06 21:14 ` Andy Furniss
@ 2007-09-07 7:34 ` DervishD
3 siblings, 0 replies; 5+ messages in thread
From: DervishD @ 2007-09-07 7:34 UTC (permalink / raw)
To: lartc
Hi Andy :)
* Andy Furniss <lists@andyfurniss.entadsl.com> dixit:
> DervishD wrote:
> > Yes, I already knew that, what I was asking is why SI units are not
> >used and "shortcuts" are used instead: see my original message, I was
> >not sure if kilobit was being used correctly (meaning 1000 bits) or if
> >it was being used mistakenly for kibibit (1024 bits), and on top of
> >that, why "b" was being used as byte when the SI prefix for byte is "B".
>
> It got changed so kbit means 1000 when S.Hemminger took over maintenance
> IIRC.
Ok, thanks :))
> > I mean, tc doesn't seem to follow any standard except maybe in
> >kilobit (which should be then used as kb, not kbit).
>
> I think changing kb and kbit would break too many existing scripts.
That's the problem with scripts that insist blindly on parsing
command output, specially with commands whose output may (and should)
change regularly when improvements are made. I supposed this was the
reason. Does "tc" have another interface, preferably in "sys" or "proc"
or the only way of getting the information is asking the kernel directly
(through "tc", for example).
Thanks a lot for your answer :)
Raúl Núñez de Arenas Coronado
--
Linux Registered User 88736 | http://www.dervishd.net
It's my PC and I'll cry if I want to... RAmen!
We are waiting for 13 Feb 2009 23:31:30 +0000 ...
_______________________________________________
LARTC mailing list
LARTC@mailman.ds9a.nl
http://mailman.ds9a.nl/cgi-bin/mailman/listinfo/lartc
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2007-09-07 7:34 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-08-31 16:26 [LARTC] About "b" meaning "byte" and bit DervishD
2007-09-03 4:33 ` Indunil Jayasooriya
2007-09-03 9:17 ` DervishD
2007-09-06 21:14 ` Andy Furniss
2007-09-07 7:34 ` DervishD
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.