Thread (4 messages) flat view 4 messages, 4 authors, 2017-09-27

Re: [PATCH net-next v10] openvswitch: enable NSH support

From: Yang, Yi <hidden>
Date: 2017-09-27 01:07:32

On Tue, Sep 26, 2017 at 10:42:40PM +0800, Jiri Benc wrote:
On Tue, 26 Sep 2017 21:52:41 +0800, Yang, Yi wrote:
quoted
quoted
+	return ((ret != 0) ? false : true);
But I don't think this is a problematic line from my understanding,
Why not:

	return ((ret != 0 == true) ? false : true) == true;

?

Sigh. This is equal to:

	return !ret;

which you should use.
Ok, got it, I'll use "return !ret;", real programming art :-), I also saw
!!(condition), personally its readability is not good, typical kernel
style :-)
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help