SEARCH  

NEWS

2010.10.06:11:36:28
Ustawowe wsparcie rozwoju sieci telekomunikacyjnych
Ustawa o wspieraniu rozwoju usług i sieci telekomunikacyjnych, która weszła w życie 15 lipca br., wprowadza szereg nowatorskich rozwiązań, mających na celu przyspieszenie rozwoju i upowszechnienie usług telekomunikacyjnych w Polsce. Doprowadzi do obniżenia kosztów przedsiębiorców telekomunikacyjnych i odbiorców tych usług (tzw. użytkowników końcowych).

 

messageID:510060007104
author:gregkh
title:patch fcoe remove redundant checking of netde
This is a note to let you know that we have just queued up the patch titled Subject: [SCSI] fcoe: remove redundant checking of netdev- netdev_ops to the 2.6.32-stable tree. Its filename is fcoe-remove-redundant-checking-of-netdev-netdev_ops.patch A git repo of this tree can be found at rel="nofollow" www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary From b04d023cf5b7f4113cc4a09405c2fe8003bfe37d Mon Sep 17 00:00:00 2001 From: Yi Zou <yi.zou@xxxxxxxxx Date: Wed, 21 Oct 2009 16:26:55 -0700 Subject: [SCSI] fcoe: remove redundant checking of netdev- netdev_ops From: Yi Zou <yi.zou@xxxxxxxxx commit b04d023cf5b7f4113cc4a09405c2fe8003bfe37d upstream. Remove the redundant checking of netdev- netdev_ops as it will never be NULL. Signed-off-by: Yi Zou <yi.zou@xxxxxxxxx Signed-off-by: Robert Love <robert.w.love@xxxxxxxxx Signed-off-by: James Bottomley <James.Bottomley@xxxxxxx Signed-off-by: Greg Kroah-Hartman <gregkh@xxxxxxx --- drivers/scsi/fcoe/fcoe.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- a/drivers/scsi/fcoe/fcoe.c +++ b/drivers/scsi/fcoe/fcoe.c @@ -664,7 +664,7 @@ static int fcoe_ddp_setup(struct fc_lpor { struct net_device *n = fcoe_netdev(lp); - if (n- netdev_ops && n- netdev_ops- ndo_fcoe_ddp_setup) + if (n- netdev_ops- ndo_fcoe_ddp_setup) return n- netdev_ops- ndo_fcoe_ddp_setup(n, xid, sgl, sgc); return 0; @@ -681,7 +681,7 @@ static int fcoe_ddp_done(struct fc_lport { struct net_device *n = fcoe_netdev(lp); - if (n- netdev_ops && n- netdev_ops- ndo_fcoe_ddp_done) + if (n- netdev_ops- ndo_fcoe_ddp_done) return n- netdev_ops- ndo_fcoe_ddp_done(n, xid); return 0; } Patches currently in stable-queue which might be from yi.zou@xxxxxxxxx are queue-2.6.32/libfc-fix-ddp-in-fc_fcp-for-0-xid.patch queue-2.6.32/fcoe-remove-redundant-checking-of-netdev-netdev_ops.patch queue-2.6.32/libfc-fix-wrong-scsi-return-status-under-fc_data_undrun.patch queue-2.6.32/libfc-fix-frags-in-frame-exceeding-skb_max_frags-in-fc_fcp_send_data.patch queue-2.6.32/fcoe-fix-checking-san-mac-address.patch queue-2.6.32/fcoe-fix-getting-san-mac-for-vlan-interface.patch -- To unsubscribe from this list: send the line "unsubscribe stable-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at rel="nofollow" vger.kernel.org/majordomo-info.html vger.kernel.org/majordomo-info.html
Index