Re: Junior Kernel Hacker task: Get rid of NCCD constant.

2001-09-04 Thread Poul-Henning Kamp
In message <[EMAIL PROTECTED]>, Maxim Sobolev writes: >Poul-Henning Kamp wrote: > >> In message <[EMAIL PROTECTED]>, Maxim Sobolev writes: >> >> >Attached please find regenerated diffs. >> >> Committed, well done, thanks! > >Nice to hear. It seems that you forgot to commit ccdconfig(8) part of the

Re: Junior Kernel Hacker task: Get rid of NCCD constant.

2001-09-04 Thread Maxim Sobolev
Poul-Henning Kamp wrote: > In message <[EMAIL PROTECTED]>, Maxim Sobolev writes: > > >Attached please find regenerated diffs. > > Committed, well done, thanks! Nice to hear. It seems that you forgot to commit ccdconfig(8) part of the patch. 8-) -Maxim To Unsubscribe: send mail to [EMAIL PROTE

Re: Junior Kernel Hacker task: Get rid of NCCD constant.

2001-09-04 Thread Poul-Henning Kamp
In message <[EMAIL PROTECTED]>, Maxim Sobolev writes: >Attached please find regenerated diffs. Committed, well done, thanks! -- Poul-Henning Kamp | UNIX since Zilog Zeus 3.20 [EMAIL PROTECTED] | TCP/IP since RFC 956 FreeBSD committer | BSD since 4.3-tahoe Never attribut

Re: Junior Kernel Hacker task: Get rid of NCCD constant.

2001-09-03 Thread Maxim Sobolev
Poul-Henning Kamp wrote: > can you send me the patch again ? I get .rej files when I try > to apply it to -current... OOPS, sorry I forgot about -bB in my .cvsrc file - they are convinient when reading others' diffs, but apparently can do bad things when you are submitting your own diffs to so

Re: Junior Kernel Hacker task: Get rid of NCCD constant.

2001-08-31 Thread Joe Kelsey
Joe Kelsey writes: > Maxim Sobolev writes: > > Poul-Henning Kamp wrote: > > > > > Assignment: > > > > > > There is no reason for the NCCD constant to exist anymore. > > > > > > The CCD driver already has cloning support but CCDs "softc" > > > structure is statically allocated for

Re: Junior Kernel Hacker task: Get rid of NCCD constant.

2001-08-31 Thread Joe Kelsey
Maxim Sobolev writes: > Poul-Henning Kamp wrote: > > > Assignment: > > > > There is no reason for the NCCD constant to exist anymore. > > > > The CCD driver already has cloning support but CCDs "softc" > > structure is statically allocated for NCCD devices. > > > > Change the CCD driver

Re: Junior Kernel Hacker task: Get rid of NCCD constant.

2001-08-31 Thread Maxim Sobolev
Poul-Henning Kamp wrote: > Assignment: > > There is no reason for the NCCD constant to exist anymore. > > The CCD driver already has cloning support but CCDs "softc" > structure is statically allocated for NCCD devices. > > Change the CCD driver to dynamically allocate memory as needed, > the MD

Re: Junior Kernel Hacker task: Get rid of NCCD constant.

2001-08-29 Thread Maxim Sobolev
Poul-Henning Kamp wrote: > Assignment: > > There is no reason for the NCCD constant to exist anymore. > > The CCD driver already has cloning support but CCDs "softc" > structure is statically allocated for NCCD devices. > > Change the CCD driver to dynamically allocate memory as needed, > the MD

Junior Kernel Hacker task: Get rid of NCCD constant.

2001-08-27 Thread Poul-Henning Kamp
Assignment: There is no reason for the NCCD constant to exist anymore. The CCD driver already has cloning support but CCDs "softc" structure is statically allocated for NCCD devices. Change the CCD driver to dynamically allocate memory as needed, the MD driver can be used as example as the ove