Re: Update of kernelnewbies.org/FirstKernelPatch required

2021-08-22 Thread Sudip Mukherjee
Hi Philipp, On Sun, Aug 22, 2021 at 4:05 PM Philipp Hortmann wrote: > > Hi, > I am just following the "FirstKernelPatch" instructions and found out that > yahoo as email account does not work anymore. > Reason is that the Security Setting "Allow apps that use less secure sign-in" > does not

Re: how to find out IRQ end user

2019-02-14 Thread Sudip Mukherjee
On Wed, Feb 13, 2019 at 7:37 PM Matwey V. Kornilov wrote: > > ср, 13 февр. 2019 г. в 15:45, Sudip Mukherjee : > > > > On Wed, Jan 30, 2019 at 5:09 PM Matwey V. Kornilov > > wrote: > > > > > > Hello, > > > > > > From /sys/kernel/debug

Re: how to find out IRQ end user

2019-02-13 Thread Sudip Mukherjee
On Wed, Jan 30, 2019 at 5:09 PM Matwey V. Kornilov wrote: > > Hello, > > From /sys/kernel/debug/tracing I see the following points: > > -0 [000] d.h1 2388.136032: irq_handler_entry: irq=16 > name=gp_timer > > Is there a simple way to figure out what is the exact final function > called to

Re: Tracing memory address access in kernel

2018-12-07 Thread Sudip Mukherjee
Hi Pritam, On Tue, Dec 4, 2018 at 10:26 AM Pritam Bankar wrote: > > Hello, > > I am facing issue of memory corruption where only one field of > allocated structure is getting corrupted. I have bio structure and one > of the page in bio vector is getting set to NULL. > > > Is there any debugging

Re: Trying to debug interrupt flood after unbind

2016-06-02 Thread Sudip Mukherjee
On Tue, May 31, 2016 at 04:38:37PM -0400, Rob Groner wrote: > On Tue, 2016-05-31 at 13:14 -0700, Greg KH wrote: > > On Tue, May 31, 2016 at 06:41:24PM +, Rob Groner wrote: > > > I am trying to load a driver for an Exar serial chip, but that chip is > > > gobbled > > > up by the 8250 driver on

Re: How to contact to Greg.

2016-05-13 Thread Sudip Mukherjee
On Fri, May 13, 2016 at 04:59:32PM +0800, Aric wrote: > Hi Valdis, > Do you mean the Grag is "Greg KH"; ? But I'm still > learning, where can I get a simple task to get into? The test task is also > okay, pls give me test specification or what test env. it required. There

Re: Is there a bug in dgnc.ko?

2016-02-24 Thread Sudip Mukherjee
On Wed, Feb 24, 2016 at 5:27 PM, Navy Cheng wrote: > On Tue, Feb 23, 2016 at 09:43:56PM -0800, Greg KH wrote: >> On Wed, Feb 24, 2016 at 12:57:42PM +0800, Navy Cheng wrote: >> > Hi, >> > >> > My kernel version is v4.4, and I have built drivers/staging/dgnc/dgnc.ko. >> > I change

Re: mkinitcpio

2016-02-08 Thread Sudip Mukherjee
On Tue, Feb 9, 2016 at 11:57 AM, wrote: > > > >> you were asked if this is from the challenge and you said yes. Are you >> trolling us or did I miss understand something? > > I'm very sorry, I in no way meant to troll. I am just honestly trying to > learn kernel development. I

Re: No response to first patch, is my patch correct?

2016-01-25 Thread Sudip Mukherjee
On Tue, Jan 26, 2016 at 12:01 PM, Sushuruth Sadagopan wrote: > Hi, > > I followed the "Write and Submit your first Linux kernel Patch" tutorial > by Greg > Kroah-Hartman [1] and tried to submit my first (clean up) patch [2]. > However, > I did not get any response, so I sent

Re: What are the differences between the -next tree and the -mm tree?

2015-12-08 Thread Sudip Mukherjee
On Tue, Dec 08, 2015 at 02:37:23PM +0100, Giovanni Gherdovich wrote: > On Tue, Dec 8, 2015 at 12:44 PM, Silvan Jegen wrote: > > > > > > I think it is Stephen Rothwell that manages linux-next (look at the > author of the tags here[0]). > > > > > > [0]

Re: git tags (RC kernels ) and kernel versions (www.kernel.org)

2015-11-26 Thread Sudip Mukherjee
> > So these 8 rc subversions of 4.1 do not seem to correspond the the > 1..13 subversions that I see > in https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git > as mentioned below. > 4.1.x versions are stable versions. You can get them at:

Re: what happens to "open" if the slot is left empty in file_operations.

2015-11-14 Thread Sudip Mukherjee
On Sat, Nov 14, 2015 at 12:40 PM, Shiyao Ma wrote: > Hi, > > > When writing a char device driver, if the "open" slots is left vacant in > the file_operations structure, what will happen if "open" is called ? > You can have a loot at chrdev_open() function in fs/char_dev.c

Re: [PATCH] 8250_pci: Prevent Exar/RTD Boards from binding.

2015-11-11 Thread Sudip Mukherjee
On Wed, Nov 11, 2015 at 11:02 PM, Greg KH wrote: > On Wed, Nov 11, 2015 at 03:46:23PM +, Rob Groner wrote: > > > > > > I know you're incredibly busy, so I added as much "so" to the week as > I could. > > > Any way I can help with this endeavor, other than testing? > > > >

Re: Re: How can I set a proxy to let git send-email command use it?

2015-08-21 Thread Sudip Mukherjee
How can I set a proxy to let git send-email command use it? Have you tried after setting up the environment variables http_proxy and https_proxy ? regards sudip ___ Kernelnewbies mailing list Kernelnewbies@kernelnewbies.org

Re: goto???

2015-07-17 Thread Sudip Mukherjee
On Fri, Jul 17, 2015 at 1:25 PM, Navy nav...@126.com wrote: Hello, Goto is recommend in linux kernel programming, but it is despised in many other situation. There are four rationable for using goto in Documentation/CodingStyle. Do you have some viewpoints about why goto or why not goto?

Re: goto???

2015-07-17 Thread Sudip Mukherjee
On Fri, Jul 17, 2015 at 2:18 PM, Martin Knappe kohaerenzstif...@posteo.de wrote: Very easy: Looks good. :) But for me, now while reading the code I have to keep a note of the value of cleanupState variable and the error path becomes confusing. And besides in your opinion now which code is more

Re: goto???

2015-07-17 Thread Sudip Mukherjee
On Fri, Jul 17, 2015 at 2:52 PM, Martin Knappe kohaerenzstif...@posteo.de wrote: I'm just messing ... I guess I felt a bit challenged by your try to write that without using goto Hey, it was not a challenge. main thing is the readability. But going by your general rules how will you modify this

Re: Can I submit a patch?

2015-07-15 Thread Sudip Mukherjee
On Thu, Jul 16, 2015 at 10:03 AM, Navy nav...@126.com wrote: Hi, I have done some cleanups in /drivers/staging/dgnc. I have compiled the driver and insmod/lsmod it. As I have no dgnc divice in my laptop, I don't kown whether it works well. Can I submit the patch? Sure, you are always

Re: Divide Error: 0000 [#1] SMP

2015-07-01 Thread Sudip Mukherjee
I searched to see if it was in relation to some previous conversation. Google failed me and I didn't found it. https://www.mail-archive.com/kernelnewbies@kernelnewbies.org/msg14044.html regards sudip ___ Kernelnewbies mailing list

Re: Trouble in making an commit .

2015-06-17 Thread Sudip Mukherjee
On Wed, Jun 17, 2015 at 11:52 PM, Sébastien Hinderer sebastien.hinde...@ens-lyon.org wrote: Hi Santhosh, Santhosh Pai (2015/06/17 18:01 +): Hello Sebastain , The issue remains the same , i'm unable to perform commit . Below is the o/p bash-4.2$ git add

Re: Linux 14.04 stuck at Loading initial RAM disk

2015-05-18 Thread Sudip Mukherjee
On Mon, May 18, 2015 at 4:36 PM, Ramesh p.rameshb...@globaledgesoft.com wrote: Hi All, I have linux 14.04 with 64-bit kernel and recently I installed 32 bit kernel in my machine. After installation complete I restarted machine to login to new 32 bit kernel. But when I try to logging in to the

Re: Eudyptula Mail Format Issue

2015-05-03 Thread Sudip Mukherjee
Content-Type: multipart/mixed; boundary=1UWUbFP1cBYEclgG this ... in any problem you are supposed to ask little. regards sudip ___ Kernelnewbies mailing list Kernelnewbies@kernelnewbies.org

Re: Module compilation error on another machine

2015-05-03 Thread Sudip Mukherjee
__ I would like to see the code first but my feeling is your using 64 bit variables of 32 bit machine. Is it for the *Eudyptula** Challenge*?? regards sudip Nick ___ Kernelnewbies mailing list

Re: Trying to write/read value at PCI BAR address from Kernel Space

2015-04-27 Thread Sudip Mukherjee
On Tue, Apr 28, 2015 at 10:25 AM, Robert Clove cloverob...@gmail.com wrote: Hi, I am trying to write and read PCI BAR address but not getting the expected output. I am using the ioremap api to get the address. Any leads will be fruit full. can you please post what you have tried till now...

Re: Out of openat flag space

2015-04-08 Thread Sudip Mukherjee
On Wed, Apr 8, 2015 at 1:30 PM, Kernel Apprentice kernelapprent...@gmail.com wrote: Hello, Hello, Now that we have O_TMPFILE and O_BENEATH added to the openat flags, there is no space left to add more flags since the flags variable is a 32 bit int. How does one resolve this issue and extend

Re: Function Pointer Question

2015-04-02 Thread Sudip Mukherjee
But the question also read Why do we need function pointers in the kernel, outside of device drivers is then, can workqueues be an ideal example of his question ? regards sudip ___ Kernelnewbies mailing list Kernelnewbies@kernelnewbies.org

Re: Function Pointer Question

2015-04-02 Thread Sudip Mukherjee
I looked in to it and the kernel seems to be one of the few places where this is done along with in line functions. Why do we need function pointers in the kernel, outside of device drivers is my real question and is there any way to do the code using them without function pointers at all,

Re: what is the precise udev event that handles miscdevices?

2015-04-01 Thread Sudip Mukherjee
don't get smug. :-) i had sort of concluded there was no actual udev rule i could point at, so it's just the case that udev processes those events internally? is this written down anywhere? everyone happily explains how misc devices get their /dev file automatically, but no one i've seen

Re: The Eudyptula Challenge - Sending task

2015-03-31 Thread Sudip Mukherjee
You need to put your ID in the subject, and the email must be the one that you registered. no, the email can be any email, i have always sent from a different email address. only your ID in the subject will matter. Quoting from little's welcome mail: If you get back I can't understand this

Re: Can add new module without upgrade the kernel?

2015-03-30 Thread Sudip Mukherjee
Can you help to give a clue? Thanks in advance! What is the output of uname -a And also the output of dmesg after modprobe fails. Regards Sudip ___ Kernelnewbies mailing list Kernelnewbies@kernelnewbies.org

Re: Eudyptula challenge task 6 reply

2015-03-18 Thread Sudip Mukherjee
so if your previous task was wrong or not upto the standard then the task which you are trying to do in advance will also be not right. That might be right. But when the reply time remains like this (over 2 month for me for a simple task), then the challenge takes 40 month in total. sometimes

Re: Eudyptula challenge task 6 reply

2015-03-16 Thread Sudip Mukherjee
On Mon, Mar 16, 2015 at 4:00 AM, Vinícius Tinti viniciusti...@gmail.com wrote: Does anyone know if there is a list with all tasks? Then we can work on answers in advance. I am stuck at task 20 for lng time (mainly because I am not getting time to read the code properly). anyways, even if

Re: Get Back Into Kernel Work

2015-03-15 Thread Sudip Mukherjee
I was interested in Socs in staging as I believe there are a few would someone like to point me to one that I can get hardware for. like which one? please name those few which are in staging.. regards sudip ___ Kernelnewbies mailing list

Re: menuconfig: can not select scsi device support

2015-03-05 Thread Sudip Mukherjee
On Mar 6, 2015 12:18 PM, robert rottermann rob...@redcor.ch wrote: Hi there, I am working trough a book on embeded systems (embeded linux by J.Quade) you are configuring for which architecture?? regards sudip ___ Kernelnewbies mailing list

Re: Beginner in Kernel Development

2015-02-21 Thread Sudip Mukherjee
On Sat, Feb 21, 2015 at 3:46 PM, sahil aggarwal sahil.ag...@gmail.com wrote: Thanks for replying Sudip. This seems to be exactly what i was looking for: A STARTING POINT . I mailed them few hours ago but didnt get any respond. Do they usually take this much time to respond.? yes, patience is

Re: Beginner in Kernel Development

2015-02-20 Thread Sudip Mukherjee
On Sat, Feb 21, 2015 at 10:36 AM, sahil aggarwal sahil.ag...@gmail.com wrote: Hi all, I am using linux since past 9-10 months and have good programming skills in C/C++. Since past few weeks i am looking for good source to dive in kernel development but could not find the starting point and

Re: error: missing syscalls when compiling kernel module

2015-02-16 Thread Sudip Mukherjee
On Tue, Feb 17, 2015 at 12:21 AM, valdis.kletni...@vt.edu wrote: On Mon, 16 Feb 2015 12:14:59 +0530, noyb noybee said: Hi all. This is the error that I am getting when I try to compile a loadable module(it tries to intercept a system call by directly editing the sys_call_table in the

Re: Maintainer of .mailmap and CREDITS

2015-02-16 Thread Sudip Mukherjee
On Tue, Feb 17, 2015 at 4:41 AM, Ricardo Ribalda Delgado ricardo.riba...@gmail.com wrote: Hello snip Is there anybody in charge of this files, or a malining list to ping? the merge window is open now, so you can not expect your patch to be picked up now. wait for one week after the merge

Re: catch exit status of daemon

2015-01-07 Thread Sudip Mukherjee
On Wed, Jan 7, 2015 at 12:57 AM, Nizam Haider nizamhaider...@gmail.com wrote: Anuz Pratap Singh Tomar chambilkethakur at gmail.com writes: On Tue, Jan 6, 2015 at 3:22 PM, Yash Jain yash2learn at gmail.com wrote:Hello All,I have one dumb question, I wanted to write a process which monitors

Re: get_maintainer output

2014-12-29 Thread Sudip Mukherjee
On Mon, Dec 29, 2014 at 5:53 PM, Damon Swayn damon.sw...@null.net wrote: Hi, I've been working on a cleanup patch and have got it into a submittable state. To figure out whom to submit it too, I have run get_maintainers.pl script. My problem is that I get a list of 9 people excluding myself

Re: Why the Email of @yahoo.com can't subscribe majord...@vger.kernel.org ?

2014-12-28 Thread Sudip Mukherjee
On Mon, Dec 29, 2014 at 11:56 AM, lx lxlenovos...@gmail.com wrote: hi all: I want to subscribe the majord...@vger.kernel.org about netdev. But It don't work. The error message is: Sorry, we were unable to deliver your message to the following address.

Re: How to submit for eudyptula-challenge

2014-12-17 Thread Sudip Mukherjee
On Thu, Dec 18, 2014 at 11:32 AM, 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 with

Re: Kernelnewbies Digest, Vol 49, Issue 30

2014-12-16 Thread Sudip Mukherjee
On Wed, Dec 17, 2014 at 12:18 AM, Jonathan Jin jjin082...@gmail.com wrote: On Mon, Dec 15, 2014 at 10:44:08PM -0700, Dean Michael Ancajas wrote: Well said. I think people in general should also pay it forward. Could be a good idea for volunteers to help check others' answers. For instance,

Re: [eudyptula] has anyone received a gift after completing the challenge ?

2014-12-15 Thread Sudip Mukherjee
On Tue, Dec 16, 2014 at 3:02 AM, Philipp Muhoray philipp.muho...@gmail.com wrote: Am 2014-12-15 um 21:58 schrieb Lucas Tanure: I'm waiting for task 03 for 2 moths. I resend it a second time, but no reply yet. -- Lucas Tanure +55 (19) 988176559 I am now waiting for one week or so. If it

Re: Remove Ban?

2014-12-09 Thread Sudip Mukherjee
On Tue, Dec 9, 2014 at 1:26 PM, Philipp Muhoray philipp.muho...@gmail.com wrote: Am 2014-12-09 um 07:50 schrieb Avinash Patil: Hi Nick, snip Not that I have any say in this, but I feel like a ban should rather be justified by someone's behavior instead of incorrect patches. I guess most

Re: [Eudyptula] How long have you been waiting?

2014-12-05 Thread Sudip Mukherjee
I liked task five, that was fun. Got it wrong a few times. task 5 is a tough one. till now in the order of toughness that is the 2nd most tough i faced . I'm on task 03, just submitted it yesterday. I feel like anyone could have gotten this far though. Can anybody tell me how

Re: Learning Memory Management for linux

2014-12-03 Thread Sudip Mukherjee
On Wed, Dec 3, 2014 at 3:31 PM, Saket Sinha saket.sinh...@gmail.com wrote: its in both - try: https://lkml.org/lkml/2014/11/23/263 thanks sudip linux-fsde...@vger.kernel.org, linux-ker...@vger.kernel.org On Wed, Dec 3, 2014 at 3:24 PM, Oscar Salvador osalvador.vilard...@gmail.com

Re: Possible error in debugfs/file.c

2014-12-02 Thread Sudip Mukherjee
Please also see line 596.. file-private_data is buf and that is a string terminated by NULL. thanks sudip On Dec 2, 2014 9:45 PM, land.h...@gmail.com wrote: I'm just reading the kernel source and came across this which doesn't look quite right to me: 616 size_t size =

Re: [Eudyptula] How long have you been waiting?

2014-11-21 Thread Sudip Mukherjee
On Fri, Nov 21, 2014 at 6:16 PM, Vinícius Tinti viniciusti...@gmail.com wrote: On Fri, Nov 21, 2014 at 4:47 AM, Sudip Mukherjee sudipm.mukher...@gmail.com wrote: i sent my task result yesterday , but lets see if i also get the reply from little by replying to your mail. :) i guess the time

Re: from WHERE platform driver's probe is called?

2014-11-21 Thread Sudip Mukherjee
On Fri, Nov 21, 2014 at 6:46 PM, Sunil Shahu sunil.roc...@yahoo.in wrote: Hello, I am looking into platform driver and devices and understood HOW platform driver's probe is called from kernel doc and following forum. http://comments.gmane.org/gmane.linux.kernel.kernelnewbies/37050 For

Re: [Eudyptula] How long have you been waiting?

2014-11-20 Thread Sudip Mukherjee
i sent my task result yesterday , but lets see if i also get the reply from little by replying to your mail. :) i guess the time depends on the queue, and there has to be some human intervention in the reply, it can not be all script. On Fri, Nov 21, 2014 at 11:52 AM, karthik nayak

Re: [PATCH] staging: bcm: vendorspecificextn: Fix coding style

2014-11-03 Thread Sudip Mukherjee
On Sun, Nov 02, 2014 at 10:39:39PM +0800, Sunil Shahu wrote: Hello, I was going through kernel source and found out that I can work on staging area for fixes. I have generated a patch for coding style fixes. I have few questions about how do submit my patch and to whom. 1) Is it ok

Re: [PATCH] staging: rtl8723au: Fix brace coding style issues reported by checkpatch

2014-10-29 Thread Sudip Mukherjee
On Wed, Oct 29, 2014 at 11:38 AM, Scott Lovenberg scott.lovenb...@gmail.com wrote: On Wed, Oct 29, 2014 at 12:05 AM, Sudip Mukherjee sudipm.mukher...@gmail.com wrote: On Wed, Oct 29, 2014 at 7:31 AM, nick xerofo...@gmail.com wrote: Greg, That's fine, I was wondering how long Greg KH takes

Re: [PATCH] staging: rtl8723au: Fix brace coding style issues reported by checkpatch

2014-10-29 Thread Sudip Mukherjee
does, I dont want to discourage you , but considering your reputation (all over the world - maybe even outside this world) , that might be difficult. Cheers Nick On 14-10-29 04:45 AM, Scott Lovenberg wrote: On Wed, Oct 29, 2014 at 1:48 AM, Sudip Mukherjee sudipm.mukher...@gmail.com wrote

Re: [PATCH] staging: rtl8723au: Fix brace coding style issues reported by checkpatch

2014-10-28 Thread Sudip Mukherjee
On Wed, Oct 29, 2014 at 7:31 AM, nick xerofo...@gmail.com wrote: Greg, That's fine, I was wondering how long Greg KH takes to get around to picking this up as he is very busy with other kernel work. it might take a long long time. i think he is very busy now. I have not seen his replies to

Re: [PATCH] staging: Fix checkpatch issue with brackets in rtw_ap.c

2014-10-21 Thread Sudip Mukherjee
kind of change in one patch. For different types of changes , you need to send more than one patch in series . On 14-10-22 12:50 AM, Sudip Mukherjee wrote: On Tue, Oct 21, 2014 at 08:31:25PM -0700, Jeff Kirsher wrote: On Tue, Oct 21, 2014 at 10:34 AM, Nicholas Krause xerofo...@gmail.com wrote

Re: [PATCH] staging: Fix spacing between function name and parentheses

2014-10-12 Thread Sudip Mukherjee
On Mon, Oct 13, 2014 at 4:04 AM, valdis.kletni...@vt.edu wrote: On Sat, 11 Oct 2014 14:52:40 +0100, Hugo Mills said: On Sat, Oct 11, 2014 at 09:44:05AM -0400, nick wrote: Thank you for your help, I'll study the code and see what I can do about it. Do you have any suggestions of how to fix

Re: [PATCH] staging: Fix spacing between function name and parentheses

2014-10-11 Thread Sudip Mukherjee
or useful. Dave Tian dave.jing.t...@gmail.com On Oct 11, 2014, at 12:58 PM, Sudip Mukherjee sudipm.mukher...@gmail.com wrote: On Fri, Oct 10, 2014 at 09:55:48PM -0400, Nicholas Krause wrote: Fixes checkpatch coding style warning about unneeded space between function name an parentheses

Re: [PATCH] staging: Fix spacing between function name and parentheses

2014-10-11 Thread Sudip Mukherjee
:11 AM, Dave Tian dave.jing.t...@gmail.com wrote: Agreed - that is why I mentioned the patch is neither right nor useful:) -daveti On Oct 11, 2014, at 2:08 PM, Sudip Mukherjee sudipm.mukher...@gmail.com wrote: Hi Dave, It will work. But my point of saying that was c.s.field ==(value

Re: [PATCH] staging: Fix spacing between function name and parentheses

2014-10-10 Thread Sudip Mukherjee
On Fri, Oct 10, 2014 at 09:55:48PM -0400, Nicholas Krause wrote: Fixes checkpatch coding style warning about unneeded space between function name an parentheses. Signed-off-by: Nicholas Krause xerofo...@gmail.com --- Untested drivers/staging/octeon-usb/octeon-hcd.c | 2 +- 1 file

Re: eudyptula-challenge

2014-10-03 Thread Sudip Mukherjee
03.10.2014 um 07:25 schrieb Giedrius Statkevicius giedrius.statkevic...@gmail.com: On 2014.10.03 02:48, L. Alberto Giménez wrote: On Tue, Sep 23, 2014 at 02:35:04PM +0300, Giedrius Statkevicius wrote: On 2014.09.23 07:26, Sudip Mukherjee wrote: hi, has anyone heard from little about

Re: Banned Again

2014-09-29 Thread Sudip Mukherjee
On Mon, Sep 29, 2014 at 3:59 PM, Nick Krause xerofo...@gmail.com wrote: I am getting very annoyed , that I am banned again from my other email at yoc...@gmail.com are people trying to just prevent me from being on the list. Is that your goal now? hopefully my last mail to you. after joining

Re: Doubt in USB Drivers

2014-09-28 Thread Sudip Mukherjee
On Sep 28, 2014 4:28 PM, me storage me.storage...@gmail.com wrote: Hi to all I am new to Linux Kernel Programming .I want to develop usb drivers so i read LDD3 Chapter 14. i didn't find /sbin/hotplug in Ubuntu 12.04.And my doubt is how kernel handles the usb devices i.e who detects usb events

Re: Git create patch series for multipe commits.

2014-09-27 Thread Sudip Mukherjee
On Sep 26, 2014 10:31 AM, Anand Moon moon.li...@yahoo.com wrote: Hi All, Could somebody provide me steps to create patch series. the way i do it: suppose you need to create patch series for your last 5 commits then : git format-patch -5 -s -n -o patchfolder patches will be saved in the

Re: eudyptula-challenge

2014-09-23 Thread Sudip Mukherjee
On Tue, Sep 23, 2014 at 5:05 PM, Giedrius Statkevicius giedrius.statkevic...@gmail.com wrote: On 2014.09.23 07:26, Sudip Mukherjee wrote: hi, has anyone heard from little about their task in last 2 weeks ? i am waiting since last 2 weeks and just wondering if things have again slowed down

Re: eudyptula-challenge

2014-09-23 Thread Sudip Mukherjee
On Tue, Sep 23, 2014 at 7:31 PM, Fernando Apesteguía fernando.apesteg...@gmail.com wrote: El 23/09/2014 15:58, Sudip Mukherjee sudipm.mukher...@gmail.com escribió: On Tue, Sep 23, 2014 at 5:05 PM, Giedrius Statkevicius giedrius.statkevic...@gmail.com wrote: On 2014.09.23 07:26, Sudip

Re: Removed from eudyptula challenge

2014-09-19 Thread Sudip Mukherjee
On Sat, Sep 20, 2014 at 7:46 AM, Peter Teoh htmldevelo...@gmail.com wrote: On Sat, Sep 20, 2014 at 3:05 AM, Jeshwanth Kumar N K jeshkumar...@gmail.com wrote: Does not matter, the aim of the whole thing is to learn, and to learn u either search, read, discuss, or ask. Not to solve the

Re: A quick guide to why stand-alone checkpatch patches suck...

2014-09-17 Thread Sudip Mukherjee
On Wed, Sep 17, 2014 at 5:08 PM, nick xerofo...@gmail.com wrote: On 14-09-17 07:20 AM, Robert P. J. Day wrote: snip anyway, it's time for coffee. rday Rday and others, That's not what I wanted I was trying to improve my rep after getting banned from vger.org and now it seems I can't

Re: Issues with Community

2014-09-17 Thread Sudip Mukherjee
___ Kernelnewbies mailing list Kernelnewbies@kernelnewbies.org http://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies Sure I will look into linux-next issues later today. Nick you mean to say you have not yet seen linux-next?? but i remember

Re: Checkpatch Patches

2014-09-16 Thread Sudip Mukherjee
On Tue, Sep 16, 2014 at 08:44:27AM -0400, nick wrote: I am attaching two check patch patches I wrote in the last few days as I am unable to get a reply from the maintainers. Would someone please send them off for me. Thanks, Nick From 7bf4229fa2f9c4fcf3243bc738c74bfdc58a6594 Mon Sep 17

Re: Checkpatch Patches

2014-09-16 Thread Sudip Mukherjee
On Tue, Sep 16, 2014 at 7:16 PM, Sudip Mukherjee sudipm.mukher...@gmail.com wrote: On Tue, Sep 16, 2014 at 7:02 PM, nick xerofo...@gmail.com wrote: On 14-09-16 09:28 AM, Sudip Mukherjee wrote: On Tue, Sep 16, 2014 at 6:56 PM, nick xerofo...@gmail.com wrote: On 14-09-16 09:21 AM, Sudip

Re: Checkpatch Patches

2014-09-16 Thread Sudip Mukherjee
On Tue, Sep 16, 2014 at 6:41 PM, nick xerofo...@gmail.com wrote: On 14-09-16 09:06 AM, Sudip Mukherjee wrote: On Tue, Sep 16, 2014 at 08:44:27AM -0400, nick wrote: I am attaching two check patch patches I wrote in the last few days as I am unable to get a reply from the maintainers. Would

Re: Checkpatch Patches

2014-09-16 Thread Sudip Mukherjee
On 9/16/14, Nick Krause xerofo...@gmail.com wrote: On Tue, Sep 16, 2014 at 10:19 AM, valdis.kletni...@vt.edu wrote: On Tue, 16 Sep 2014 08:44:27 -0400, nick said: I am attaching two check patch patches I wrote in the last few days as I am unable to get a reply from the maintainers. Would

Re: A quick guide to why stand-alone checkpatch patches suck...

2014-09-16 Thread Sudip Mukherjee
On Wed, Sep 17, 2014 at 10:26 AM, Greg KH g...@kroah.com wrote: On Tue, Sep 16, 2014 at 11:42:18PM -0400, valdis.kletni...@vt.edu wrote: (And this sort of analysis is exactly *why* people need to apply their brains when looking at checkpatch output) No one has ever said that they

Re: hi Questiion about Eudyptula Challenge Task 05

2014-09-09 Thread Sudip Mukherjee
hi, sorry i cant help you with this. the rules of the challenge says you really should be doing your own work . i can only say you that I have taken almost one month for this one . I am currently at task 18 and i still think this one was the toughest of all the tasks til now. but after finishing

Re: Trial Patch

2014-09-09 Thread Sudip Mukherjee
On Tue, Sep 9, 2014 at 6:54 PM, nick xerofo...@gmail.com wrote: On 14-09-09 08:42 AM, Sudip Mukherjee wrote: On Tue, Sep 09, 2014 at 08:22:59AM -0400, nick wrote: On 14-09-08 11:08 PM, nick wrote: I am attaching a trial patch again , please let me known if there are any issues for me

Re: hi Questiion about Eudyptula Challenge Task 05

2014-09-09 Thread Sudip Mukherjee
On Sep 10, 2014 7:07 AM, lxgeek lxlenovos...@gmail.com wrote: Hi Sudip: I just askyou for help privately, and you CC my mail tokernelnewb...@kernelnewbies.org. mailto:kernelnewbies@kernelnewbies.org So my account have removed hi i am really sorry if i have done

Re: hi Questiion about Eudyptula Challenge Task 05

2014-09-09 Thread Sudip Mukherjee
On Sep 10, 2014 7:56 AM, Jeshwanth Kumar N K jeshkumar...@gmail.com wrote: Expected, may be learning for all who working on eudyptula challenge. If you have any doubt please ask Little directly. He will definitely clear your doubts. thanks jeshwanth. i started feeling guilty after getting the

Re: hi Questiion about Eudyptula Challenge Task 05

2014-09-09 Thread Sudip Mukherjee
from my Android phone with Gmail. Please excuse my brevity. On 10-Sep-2014 8:10 am, Sudip Mukherjee sudipm.mukher...@gmail.com mailto:sudipm.mukher...@gmail.com wrote: On Sep 10, 2014 7:56 AM, Jeshwanth Kumar N K jeshkumar...@gmail.com mailto:jeshkumar...@gmail.com wrote

Re: Loosing stdin/stdout over serial consoleafter bootup

2014-09-09 Thread Sudip Mukherjee
On Tue, Sep 9, 2014 at 10:17 PM, Mandeep Sandhu mandeepsandhu@gmail.com wrote: are you really seriously expecting an answer within 2 hours of posting your question, and that too a question not related to any kernel problem ? And how are you so sure about that? It could very well be an

Re: Bug Patch

2014-09-08 Thread Sudip Mukherjee
On Mon, Sep 8, 2014 at 4:51 PM, Tobias S. Josefowitz t.josefow...@gmail.com wrote: Hi Nick, parse_subframe() is a static function and the only caller assumes that skb is != NULL and would be in trouble way before parse_subframe() if skb was indeed NULL. Tobi Hi Tobi, I think Nick's patch

Re: Recent Kernels failing to boot?

2014-09-02 Thread Sudip Mukherjee
On Tue, Sep 2, 2014 at 4:44 PM, John Whitmore arig...@gmail.com wrote: I'm not even sure that this is the correct home for this question but sure it's worth a punt. I'm running OpenSUSE on a netbook and use it to compile and install the latest kernel from Linus's git repo. This has always been

Re: Help with btrfs project

2014-08-20 Thread Sudip Mukherjee
On Aug 20, 2014 5:20 PM, valdis.kletni...@vt.edu wrote: He's not. Please do not rely on any information Nick may provide, as he is either hopelessly clueless, or actively trolling the kernel community. hi valdis, i know he is not. just want to see if he has atleast googled about btrfs or

Re: Help with btrfs project

2014-08-20 Thread Sudip Mukherjee
I would like to get back on the list for some work with the btrfs developers and I was banned. If someone would allow the ban to be removed, I would find it much easier as I can email the right developers with my patches and questions rather then just trying to get in through kernel

Re: Help with btrfs project

2014-08-19 Thread Sudip Mukherjee
On Wed, Aug 20, 2014 at 8:03 AM, Nick Krause xerofo...@gmail.com wrote: Hey Guys, This commit seems to be needed to fixed up based on what the btrfs developers, are stating on their wiki. Other then the TODO list, which we can discuss here, is there any other parts of this patch that need to

mini2440

2014-08-18 Thread Sudip Mukherjee
hi, Has anyone tried to boot the linux-next in the mini2440 boards? I have tried with mini2440_defconfig and it is not even booting. I posted the problem in the forum of friendlyarm (http://www.friendlyarm.net/forum/topic/6076) but the only answer i got is we need to a number of patch to make the

Re: usb_driver hotplug probe callback

2014-08-14 Thread Sudip Mukherjee
On Aug 15, 2014 8:28 AM, Jaret Flores jarflo...@gmail.com wrote: Well...I guess I've learned my lesson. I apologize for asking the previous question related to the Eudyptula Challenge. I did not read the August 2014 status report well enough and did not realize it was against the rules to

Re: usb_driver hotplug probe callback

2014-08-14 Thread Sudip Mukherjee
On Aug 15, 2014 9:46 AM, valdis.kletni...@vt.edu wrote: On Fri, 15 Aug 2014 09:35:57 +0530, Sudip Mukherjee said: finally little tells you that task is complete , you will get a feeling of achievement and you will also say sh** .. it was this easy Later on, you'll realize

Re: Usb module loading

2014-08-08 Thread Sudip Mukherjee
On Fri, Aug 8, 2014 at 11:42 AM, selva selvab...@gmail.com wrote: Hi All I have written a usb module which will be linked if any keyboard is hot plug. Is it related to the Eudyptula Challenge ?? Looks like it is ... I follow the step below to make it work 1) rmmod usbhid 2) insmod

Re: Formula One Scheduler (was Re: Help with git)

2014-08-08 Thread Sudip Mukherjee
On Sat, Aug 9, 2014 at 2:16 AM, Nick Krause xerofo...@gmail.com wrote: On Fri, Aug 8, 2014 at 4:28 PM, Arlie Stephens ar...@worldash.org wrote: On Aug 08 2014, valdis.kletni...@vt.edu wrote: There's a big difference between knowing how to change the spark plugs on a VW Beetle, and being able

Re: Help with git

2014-08-07 Thread Sudip Mukherjee
On Aug 8, 2014 7:32 AM, Nick Krause xerofo...@gmail.com wrote: On Thu, Aug 7, 2014 at 10:00 PM, valdis.kletni...@vt.edu wrote: On Thu, 07 Aug 2014 21:48:54 -0400, Nick Krause said: sed: can't read /home/nick/linux-next/.git/rebase-apply/info: No such file or directory It usually

Re: Eudyptula Challenge status

2014-08-06 Thread Sudip Mukherjee
On Wed, Aug 6, 2014 at 2:04 AM, Raphael Philipe rapp...@gmail.com wrote: On Tue, Aug 5, 2014 at 5:24 PM, Robin Schroer sulamiificat...@gmail.com wrote: On Tue, Aug 05, 2014 at 05:11:46PM -0300, Raphael Philipe wrote: Hi Is someone taking the Eudyptula Challenge here? I was answering the

Re: Bad Patches and Issues with other devolopers

2014-08-06 Thread Sudip Mukherjee
On Wed, Aug 6, 2014 at 7:02 PM, Nick Krause xerofo...@gmail.com wrote: On Wed, Aug 6, 2014 at 9:28 AM, Kristofer Hallin kristofer.hal...@gmail.com wrote: Being banned from the list means that you're not welcome anymore, so don't try to get around it. On Aug 6, 2014 3:25 PM, Nick Krause

Re: Bad Patches and Issues with other devolopers

2014-08-05 Thread Sudip Mukherjee
On Aug 5, 2014 11:14 PM, Nick Krause xerofo...@gmail.com wrote: I have sent out just ten bad patches and the developers seem very annoyed with me and think I am trolling. If someone on this list can find a way for me to improve my relationship with them and let me continue my work here that

Re: doubt with git and linux-next

2014-07-28 Thread Sudip Mukherjee
On Fri, Jul 25, 2014 at 7:55 PM, Sudip Mukherjee sudipm.mukher...@gmail.com wrote: On Fri, Jul 25, 2014 at 7:52 PM, Lucas Tanure tan...@linux.com wrote: I had the same issue. I cloned a new one, and every time that I need to update I do those commands, and now I never got the issue again

Re: Problem facing while running checkpatch.pl on linux-next tree

2014-07-27 Thread Sudip Mukherjee
On Jul 27, 2014 2:31 PM, Rahul Garg rahul.lnm...@gmail.com wrote: Hi All, I am trying to run checkpatch.pl on linux-next tree's staging folder. what you are trying to check? a patch or style problem of any code?? But whatever sub directory, I try to run it on. It is giving me the same

doubt with git and linux-next

2014-07-25 Thread Sudip Mukherjee
Hi, I am having some doubt regarding git and how to sync my local copy with linux-next. I have cloned it and the next day if I want to sync my master with linux-next , i am using : git remote update git pull master Then it is giving some messages about some conflicts. For example If i am trying

Re: doubt with git and linux-next

2014-07-25 Thread Sudip Mukherjee
is showing include/linux/mvebu-v7-cpuidle.h as an untracked file ... but i have not modified that file . Thanks -- Lucas Tanure +55 (19) 988176559 On Fri, Jul 25, 2014 at 11:06 AM, Sudip Mukherjee sudipm.mukher...@gmail.com wrote: Hi, I am having some doubt regarding git and how

Re: doubt with git and linux-next

2014-07-25 Thread Sudip Mukherjee
and git reset --hard master then the issue is coming or not. -- Lucas Tanure +55 (19) 988176559 On Fri, Jul 25, 2014 at 11:14 AM, Sudip Mukherjee sudipm.mukher...@gmail.com wrote: On Fri, Jul 25, 2014 at 7:40 PM, Lucas Tanure tan...@linux.com wrote: Hi, Could you try: $ git remote

Re: usb serial programming

2014-07-21 Thread Sudip Mukherjee
On Mon, Jul 21, 2014 at 8:49 AM, Amadeus W.M. amadeu...@verizon.net wrote: Not sure if this is the right venue for this question, please direct me to the right place if it's not. I have a C program that opens the serial port /dev/ttyS0 and sends commands (as strings) back and forth to a

  1   2   >