netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH][GENETLINK] fix misplaced command flags
@ 2006-12-06 17:02 jamal
  2006-12-06 17:23 ` David Miller
  0 siblings, 1 reply; 2+ messages in thread
From: jamal @ 2006-12-06 17:02 UTC (permalink / raw)
  To: davem; +Cc: Thomas Graf, netdev

[-- Attachment #1: Type: text/plain, Size: 134 bytes --]


fixes something i broke in previous patch. Against net-2.6.20.
BTW, is it just me having problems syncing net-2.6.20?

cheers,
jamal

[-- Attachment #2: genl-flags-p --]
[-- Type: text/plain, Size: 994 bytes --]

[GENETLINK] fix misplaced command flags

The command flags for dump and do were swapped..

Signed-off-by: Jamal Hadi Salim<hadi@cyberus.ca>

---
commit 03b09fc1e8f71a14c661af496941b6de963fddf1
tree 3b3c62e1b5f1db0e75ab383a2ec43173cb0f0efa
parent 49ba7537cec41f0db2500054b5fde3c193c37a97
author Jamal Hadi Salim <hadi@cyberus.ca> Wed, 06 Dec 2006 11:58:34 -0500
committer Jamal Hadi Salim <hadi@cyberus.ca> Wed, 06 Dec 2006 11:58:34 -0500

 net/netlink/genetlink.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/net/netlink/genetlink.c b/net/netlink/genetlink.c
index 3e37ea5..a59b7bb 100644
--- a/net/netlink/genetlink.c
+++ b/net/netlink/genetlink.c
@@ -144,9 +144,9 @@ int genl_register_ops(struct genl_family *family, struct genl_ops *ops)
 	}
 
 	if (ops->dumpit)
-		ops->flags |= GENL_CMD_CAP_DO;
-	if (ops->doit)
 		ops->flags |= GENL_CMD_CAP_DUMP;
+	if (ops->doit)
+		ops->flags |= GENL_CMD_CAP_DO;
 	if (ops->policy)
 		ops->flags |= GENL_CMD_CAP_HASPOL;
 

^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2006-12-06 17:23 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-12-06 17:02 [PATCH][GENETLINK] fix misplaced command flags jamal
2006-12-06 17:23 ` David Miller

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).