Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755971AbdC1Ncd (ORCPT ); Tue, 28 Mar 2017 09:32:33 -0400 Received: from mout.kundenserver.de ([212.227.17.24]:63867 "EHLO mout.kundenserver.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755913AbdC1Nca (ORCPT ); Tue, 28 Mar 2017 09:32:30 -0400 From: Arnd Bergmann To: Marcel Holtmann , Gustavo Padovan , Johan Hedberg Cc: Arnd Bergmann , "David S. Miller" , Stefan Schmidt , Jukka Rissanen , Luiz Augusto von Dentz , Eric Dumazet , Patrik Flykt , Alexander Aring , Glenn Ruben Bakke , linux-bluetooth@vger.kernel.org, netdev@vger.kernel.org, linux-kernel@vger.kernel.org Subject: [PATCH] 6lowpan: set peer_addr correctly again Date: Tue, 28 Mar 2017 15:29:08 +0200 Message-Id: <20170328132935.382216-1-arnd@arndb.de> X-Mailer: git-send-email 2.9.0 X-Provags-ID: V03:K0:SQY4dONQ6Qus/+HmjdHlOsiH8yZlmmHalxMfrw8NlvU4yKhOwC5 zzyRms42K8HtWaDVzq/T4Ke2uS4F0KFgAA+YyBj1h68pVB1oIkC4j3zQ/4QbHsHLrACOa6y I0Zcx6nqe05JcAeOSDbZ7SHz4oR6930tLIwu2UGzdWGpYmlckYvzauU0uIgZDJ5I1WtbFjV Bh8YvhvRXxOWNCPukwXlg== X-UI-Out-Filterresults: notjunk:1;V01:K0:W2Q/B2olLFg=:16GVorPy4vXGJDBwsKuy9L vCJib1qcOD3OaZPhNhcJGNflULbpNwtZc3+oPS/4heMR1zt6m5Wf6xnYGR1YA+JuJz5kZk6av H14vVKpEq+v0Wp0JWgJxyGrtwOtDN4g9WVpYt31WydAckQCJ7AFSOvTgr6fvHIzLrcZZDB45P JfMEq+SoAjdLGLmOoN6/1D59Jefjoqc3o0G0MWmFhwf9maopo7t+1psWfiX/Q9Pyv9jNDC9ah TuOCeaH4A7ySnkJyRt/Wf8XJwoRLAl6XuZRU0tazAlU3wWJtEFejGNqtxJWO7ehSlkI148BaM ElLSHkWNz+Ry/Gs48DcbwOk/RoOIk1JevFSVNXlrtWZpQkw4azbWFzNH4VP2I0NQgmH3aA8Qm wm88mO05zP3UEo+VZHnd9tAnwKbO1DCu3eoCiKDOo/gR6lMtECpdmsHXPA2IKeXhm0E1AC53s zQLIThW8wx3eOsa3xK/F1JbiM4QfFusKjTfjKLHouwzK6sMaBh2Wv4k/TnYru4VFOHam4uWf6 nIT8LiwpBnsce5ANun0dsa0syX2IGPsoGlk7lBV1NIqleK0mn5NriHpo9fJQ/yWWm+Kh+7dhL 2hrDKPtmXNGQbyfmNJ2zZP4HrpkhsZ9kJR3SpaBVKNchzJ5bL/LBwamevGItSEwQmm1DwVa3d lyjb6hL7ugUepG4PlDoyJyP5QBUCr8pQjRtuYVFOIA7m2VdOpwIJLDzTtRK47B9l5F8M= Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1066 Lines: 31 A bugfix accidentally changed one line to return the peer_addr from setup_header, causing it to become unused: net/bluetooth/6lowpan.c: In function 'setup_header': net/bluetooth/6lowpan.c:402:14: error: parameter 'peer_addr' set but not used [-Werror=unused-but-set-parameter] The only user of the variable is a subsequent printk(), and it is not otherwise initialized, so reverting the changed line looks like the right fix. Fixes: fb6f2f606ce8 ("6lowpan: Fix IID format for Bluetooth") Signed-off-by: Arnd Bergmann --- net/bluetooth/6lowpan.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net/bluetooth/6lowpan.c b/net/bluetooth/6lowpan.c index 24348c8579dd..ba28c7b1557f 100644 --- a/net/bluetooth/6lowpan.c +++ b/net/bluetooth/6lowpan.c @@ -432,7 +432,7 @@ static int setup_header(struct sk_buff *skb, struct net_device *netdev, } daddr = peer->lladdr; - peer_addr = &peer->chan->dst; + *peer_addr = peer->chan->dst; *peer_addr_type = peer->chan->dst_type; lowpan_cb(skb)->chan = peer->chan; -- 2.9.0