aboutsummaryrefslogtreecommitdiff
path: root/net
diff options
context:
space:
mode:
authorAmit Pundir <amit.pundir@linaro.org>2015-05-11 14:39:59 +0530
committerJohn Stultz <john.stultz@linaro.org>2015-11-19 12:36:36 -0800
commit8b23c33f6068a73891a05621deaee3460a55f854 (patch)
treeda344e3857a24e2d786606c3c0e2beb4b6e9e18d /net
parenta0077053f653a321c1d62b3335397f67688d3610 (diff)
nf: IDLETIMER: Fix broken uid field in the msg
Create uid from kuid to fix the broken uid field in the message notifications introduced in Change-Id: I18fc73eada512e370d7ab24fc9f890845037b729, Otherwise we run into following build error: --------------- CC net/netfilter/xt_IDLETIMER.o net/netfilter/xt_IDLETIMER.c: In function ‘reset_timer’: net/netfilter/xt_IDLETIMER.c:360:16: error: incompatible types when assigning to type ‘uid_t’ from type ‘kuid_t’ make[2]: *** [net/netfilter/xt_IDLETIMER.o] Error 1 --------------- Signed-off-by: Amit Pundir <amit.pundir@linaro.org> (cherry picked from commit 706060ba3e1dee9ec3c4a4a1480d663b6cd71cad) Change-Id: Ifd66df45a58d1a5a60c3816c373ee3008292eee8
Diffstat (limited to 'net')
-rw-r--r--net/netfilter/xt_IDLETIMER.c8
1 files changed, 2 insertions, 6 deletions
diff --git a/net/netfilter/xt_IDLETIMER.c b/net/netfilter/xt_IDLETIMER.c
index ddf77f7fbe24..31f76cd19d39 100644
--- a/net/netfilter/xt_IDLETIMER.c
+++ b/net/netfilter/xt_IDLETIMER.c
@@ -353,12 +353,8 @@ static void reset_timer(const struct idletimer_tg_info *info,
/* Stores the uid resposible for waking up the radio */
if (skb && (skb->sk)) {
- struct sock *sk = skb->sk;
- read_lock_bh(&sk->sk_callback_lock);
- if ((sk->sk_socket) && (sk->sk_socket->file) &&
- (sk->sk_socket->file->f_cred))
- timer->uid = sk->sk_socket->file->f_cred->uid;
- read_unlock_bh(&sk->sk_callback_lock);
+ timer->uid = from_kuid_munged(current_user_ns(),
+ sock_i_uid(skb->sk));
}
/* checks if there is a pending inactive notification*/