Re: How to submit for eudyptula-challenge

2014-12-18 Thread sanjeev sharma
Thanks all, I have received the mixed opinion but looks like Mutt has gain the popularity but Mutt standalone also can be used instead of using with Gmail. Regards Sanjeev Sharma On Thu, Dec 18, 2014 at 9:52 PM, Jessica Ross wrote: > > I'm using alpine with my gmail with these instructions in c

Re: How to submit for eudyptula-challenge

2014-12-18 Thread Jessica Ross
I'm using alpine with my gmail with these instructions in case you don't want to use mutt. https://burzalodowa.wordpress.com/2013/10/05/how-to-send-patches-with-git-send-email/ http://www.washington.edu/alpine/faq/attachments.html On Thu, Dec 18, 2014 at 6:37 AM, Lucas Tanure wrote: > > On Thu,

Re: How to submit for eudyptula-challenge

2014-12-18 Thread Lucas Tanure
On Thu, Dec 18, 2014 at 10:32 AM, Vinícius Tinti wrote: > On Thu, Dec 18, 2014 at 5:09 AM, Sudip Mukherjee > wrote: >> On Thu, Dec 18, 2014 at 11:32 AM, sanjeev sharma >> wrote: >>> Hello All, >>> >>> I am using Thunderbird and also Gmail Email client for submitting the >>> eudyptula challenge T

Re: How to submit for eudyptula-challenge

2014-12-18 Thread Vinícius Tinti
On Thu, Dec 18, 2014 at 5:09 AM, Sudip Mukherjee wrote: > On Thu, Dec 18, 2014 at 11:32 AM, sanjeev sharma > wrote: >> Hello All, >> >> I am using Thunderbird and also Gmail Email client for submitting the >> eudyptula challenge Task and after following below steps I have published on >> my Blog,

Re: How to submit for eudyptula-challenge

2014-12-17 Thread Sudip Mukherjee
On Thu, Dec 18, 2014 at 11:32 AM, sanjeev sharma wrote: > Hello All, > > I am using Thunderbird and also Gmail Email client for submitting the > eudyptula challenge Task and after following below steps I have published on > my Blog, every time I am getting problem with attachment "You sent me base

Re: How to submit for eudyptula-challenge

2014-12-17 Thread Manish Katiyar
On Wed, Dec 17, 2014 at 10:02 PM, sanjeev sharma < sanjeevsharmae...@gmail.com> wrote: > > Hello All, > > I am using Thunderbird and also Gmail Email client for submitting the > eudyptula challenge Task and after following below steps I have published > on my Blog, every time I am getting problem w

Re: How to submit for eudyptula-challenge

2014-12-17 Thread Fernando Apesteguía
El 18/12/2014 07:03, "sanjeev sharma" escribió: > > Hello All, > > I am using Thunderbird and also Gmail Email client for submitting the eudyptula challenge Task and after following below steps I have published on my Blog, every time I am getting problem with attachment "You sent me base64 attachm

Re: How to submit for eudyptula-challenge

2014-12-17 Thread sanjeev sharma
Hello All, I am using Thunderbird and also Gmail Email client for submitting the eudyptula challenge Task and after following below steps I have published on my Blog, every time I am getting problem with attachment "You sent me base64 attachments, which I can not understand at all :(" http://sanj

Re: How to submit for eudyptula-challenge

2014-04-13 Thread Masood Mehmood
Are you printing anything in your module? If yes it should be printed to the kernel debug log level. Figure out how many levels kernel log supports and use the debug level. On Monday, March 24, 2014, wangyubin wrote: > Hello, > I have dive into the eudyptula-challenge, but when I submit my resu

Re: How to submit for eudyptula-challenge

2014-03-24 Thread Pranay Srivastava
Hi Set your log level to 8 so you can see your messages. The pr_ *ones Should be good. Also check how to enable that macro for specific or all files of your module. On Mar 25, 2014 10:18 AM, "wangyubin" wrote: > > OK, I will try to use that. > :-) > > Best Regards! > wangyubin > > On 03/25/2014

Re: How to submit for eudyptula-challenge

2014-03-24 Thread wangyubin
OK, I will try to use that. :-) Best Regards! wangyubin On 03/25/2014 11:28 AM, Aruna Hewapathirane wrote: > Hi Wangyubin, > > You may want to drop by the IRC channel : http://kernelnewbies.org/IRC > has lots of friendly and vastly more experienced folks. > > :) > > On Mon, Mar 24, 2014 at 11:0

Re: How to submit for eudyptula-challenge

2014-03-24 Thread Aruna Hewapathirane
Hi Wangyubin, You may want to drop by the IRC channel : http://kernelnewbies.org/IRC has lots of friendly and vastly more experienced folks. :) On Mon, Mar 24, 2014 at 11:08 PM, wangyubin wrote: > Hi, Aruna > > I will use Checkpatch.pl to check my source file by your advice! > thanks again! >

Re: How to submit for eudyptula-challenge

2014-03-24 Thread wangyubin
Hi, Aruna I will use Checkpatch.pl to check my source file by your advice! thanks again! Best Regards! wangyubin On 03/25/2014 10:48 AM, Aruna Hewapathirane wrote: > Hi Wangyubin, > > There is a *reason* why I decided to give you a helping hand my dear, > > "I" had a very hard time with that t

Re: How to submit for eudyptula-challenge

2014-03-24 Thread Aruna Hewapathirane
Hi Wangyubin, There is a *reason* why I decided to give you a helping hand my dear, "I" had a very hard time with that task-01 but it did help me immensely to begin to understand how things work and are done in the kernel. I do not want anyone else to waste time if we can get newcomers up to a c

Re: How to submit for eudyptula-challenge

2014-03-24 Thread wangyubin
Hi, Aruna Thanks for your answer! I used printk like this in the previous submit. printk(KERN_ALERT "Hello World !"); I will change "KERN_ALERT" to "KERN_DEBUG" and try to submit again! also thanks for Masood Mehmood and Parinay Kondekar's help! Best Regards! wangyubin On 03/25/2014 10:16 AM,

Re: How to submit for eudyptula-challenge

2014-03-24 Thread Aruna Hewapathirane
Hi Wangyubin, The log level you require is KERN_DEBUG ... But when you run checkpatch.pl on your *.c file it will say: WARNING: Prefer netdev_dbg(netdev, ... then dev_dbg(dev, ... then pr_debug(... to printk(KERN_DEBUG ... So replacing printk(KERN_DEBUG ... with pr_debug will resolve this. Yo

Re: How to submit for eudyptula-challenge

2014-03-24 Thread Parinay Kondekar
http://elinux.org/Debugging_by_printing#Log_Levels HTH On 25 March 2014 06:58, wangyubin wrote: > Hello, > I have dive into the eudyptula-challenge, but when I submit my result for > task 01. > I received a reply below: > > Please print to the kernel debug log level. > > I have sended module(

How to submit for eudyptula-challenge

2014-03-24 Thread wangyubin
Hello, I have dive into the eudyptula-challenge, but when I submit my result for task 01. I received a reply below: > Please print to the kernel debug log level. I have sended module(c file), Makefile, and dmesg output for load/unload the module. Could anyone to tell me what does this message