Skip to content

Commit f53efa4

Browse files
Added: logging current size of buffer if it's "fine"
1 parent ad88f9a commit f53efa4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

netutils_linux_tuning/rx_buffers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ def eval(self):
4747
def apply(self, decision):
4848
""" doing all the job, applying new buffer's size if required """
4949
if decision == self.current:
50-
print_("{0}'s RX ring buffer already has fine size.".format(self.options.dev))
50+
print_("{0}'s RX ring buffer already has fine size {1}.".format(self.options.dev, self.current))
5151
return
5252
assert decision, "Can't eval prefered RX ring buffer size."
5353
command = 'ethtool -G {0} rx {1}'.format(self.options.dev, decision)

0 commit comments

Comments
 (0)