From: Coly Li <coyli@suse.de>
To: unlisted-recipients:; (no To-header on input)
Cc: linux-kernel@vger.kernel.org, greg@kroah.com, andre@finow14.de,
torvalds@osdl.org, marcel@holtmann.org
Subject: Re: hci_sock.c build failure
Date: Wed, 12 Sep 2007 16:26:50 +0200 [thread overview]
Message-ID: <46E7F72A.9070404@suse.de> (raw)
In-Reply-To: <46E7F5AC.90805@suse.de>
Coly Li 写道:
> David Miller 写道:
>> From: Greg KH <greg@kroah.com>
>> Date: Wed, 12 Sep 2007 05:02:53 -0700
>>
>>> It's not even a randconfig issue, my build dies too (this is Linus's
>>> current tree.)
>>>
>>> Time to poke through the 10 bluetooth patches that were just added...
>> I'll push the following fix to Linus.
>>
>> From 1da97f83a843f92678b614fcaebdb3e4ebd6c9dd Mon Sep 17 00:00:00 2001
>> From: David S. Miller <davem@kimchee.(none)>
>> Date: Wed, 12 Sep 2007 14:10:58 +0200
>> Subject: [PATCH] [BLUETOOTH]: Fix non-COMPAT build of hci_sock.c
>>
>> Signed-off-by: David S. Miller <davem@davemloft.net>
>> ---
>> net/bluetooth/hci_sock.c | 7 ++++---
>> 1 files changed, 4 insertions(+), 3 deletions(-)
>>
>> diff --git a/net/bluetooth/hci_sock.c b/net/bluetooth/hci_sock.c
>> index d16ca8e..5ccea5f 100644
>> --- a/net/bluetooth/hci_sock.c
>> +++ b/net/bluetooth/hci_sock.c
>> @@ -348,16 +348,17 @@ static inline void hci_sock_cmsg(struct sock *sk, struct msghdr *msg, struct sk_
>>
>> skb_get_timestamp(skb, &tv);
>>
>> + data = &tv;
>> + len = sizeof(tv);
>> +#ifdef CONFIG_COMPAT
>> if (msg->msg_flags & MSG_CMSG_COMPAT) {
>> struct compat_timeval ctv;
>> ctv.tv_sec = tv.tv_sec;
>> ctv.tv_usec = tv.tv_usec;
>> data = &ctv;
>> len = sizeof(ctv);
> should we consider the condition that msg->msg_flags & MSG_CMSG_COMPAT comes to true when
> CONFIG_COMPAT is not defined ?
Sorry, once CONFIG_COMPAT is not defined, msg->msg_flags & MSG_CMSG_COMPAT will never come to true.
forget my comments.
>
>> - } else {
>> - data = &tv;
>> - len = sizeof(tv);
>> }
>> +#endif
>>
>> put_cmsg(msg, SOL_HCI, HCI_CMSG_TSTAMP, len, data);
>> }
>
next prev parent reply other threads:[~2007-09-12 14:25 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-09-12 9:29 hci_sock.c build failure Andre Haupt
2007-09-12 12:02 ` Greg KH
2007-09-12 12:04 ` Greg KH
2007-09-12 12:07 ` Greg KH
2007-09-12 12:10 ` S.Çağlar Onur
2007-09-12 12:14 ` David Miller
2007-09-12 12:13 ` David Miller
2007-09-12 12:12 ` David Miller
2007-09-12 14:20 ` Coly Li
2007-09-12 14:26 ` Coly Li [this message]
2007-09-12 16:20 ` Marcel Holtmann
2007-09-12 12:16 ` Robert P. J. Day
-- strict thread matches above, loose matches on Subject: below --
2007-09-13 10:11 Toralf Förster
2007-09-13 12:29 ` Marcel Holtmann
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=46E7F72A.9070404@suse.de \
--to=coyli@suse.de \
--cc=andre@finow14.de \
--cc=greg@kroah.com \
--cc=linux-kernel@vger.kernel.org \
--cc=marcel@holtmann.org \
--cc=torvalds@osdl.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.