The patch titled
netlink: log protocol failures
has been added to the -mm tree. Its filename is
netlink-log-protocol-failures.patch
Patches currently in -mm which might be from [EMAIL PROTECTED] are
git-net-gregkh-i2c-w1-netlink-callbacks-fix.patch
netlink-log-protocol-failures.patch
use-sg_init_one-where-appropriate.patch
ppp_mppe-add-ppp-mppe-encryption-module.patch
ppp-handle-misaligned-accesses-2.patch
net-fix-up-schedule_timeout-usage.patch
net-fix-up-schedule_timeout-usage-fix.patch
drivers-net-fix-up-schedule_timeout-usage.patch
drivers-sbus-fix-up-schedule_timeout-usage.patch
From: "David S. Miller" <[EMAIL PROTECTED]>
Cc: Patrick McHardy <[EMAIL PROTECTED]>
Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
---
net/netlink/af_netlink.c | 5 ++++-
1 files changed, 4 insertions(+), 1 deletion(-)
diff -puN net/netlink/af_netlink.c~netlink-log-protocol-failures
net/netlink/af_netlink.c
--- devel/net/netlink/af_netlink.c~netlink-log-protocol-failures
2005-08-30 18:08:28.000000000 -0700
+++ devel-akpm/net/netlink/af_netlink.c 2005-08-30 18:08:28.000000000 -0700
@@ -398,8 +398,11 @@ static int netlink_create(struct socket
if (nl_table[protocol].registered &&
try_module_get(nl_table[protocol].module))
module = nl_table[protocol].module;
- else
+ else {
+ printk("DEBUG: Failed to load PF_NETLINK protocol %d\n",
+ protocol);
err = -EPROTONOSUPPORT;
+ }
groups = nl_table[protocol].groups;
netlink_unlock_table();
_
-
To unsubscribe from this list: send the line "unsubscribe mm-commits" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at http://vger.kernel.org/majordomo-info.html