[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <CAHhAz+g7HJX1HAYqyZT9VLV9GerJT7iuiJ=2ahHFLFX-O2ryQA@mail.gmail.com>
Date: Wed, 2 Sep 2015 20:32:15 +0530
From: Muni Sekhar <munisekharrms@...il.com>
To: linux-kernel@...r.kernel.org
Subject: kfree a pointer "from the middle" causing protection faults
[ Please keep me in CC as I'm not subscribed to the list]
Hello,
I am getting protection faults in different kernel modules if I try to
free a pointer "from the middle" for example, look at the following
code:
u8 *buf;
buf = kzalloc( 100 , GFP_KERNEL );
…
buf = buf + 50;
…
Kfree(buf);
I would like to know, why the above code is causing protection faults
in other kernel modules?
Regards,
Sekhar
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists