'kernel' Tag

  • abr
    26
    2010

    kthreads (1)

    Creating a thread at kernel-space
    Now that I know that somebody at Academia reads my posts I’ll put code with a _little_ documentation information together. Today we will do a quick review about kernel threads or to be more precisely, a way to perform some operations in the background. Kernel threads are standard process [...]

  • fev
    17
    2010

    Kernel stats: horários dos commits

    Durante sua apresentação na Linux.conf.au 2010, o fundador do site LWN.net e contribuidor do kernel Jonathan Corbet demonstrou uma análise das contribuições no kernel Linux durante aproximadamente 1 ano (entre Dez 2008 e Jan 2010). Uma das conclusões é que 75% código é escrito por programadores pagos por empresas, lideram a lista: Red Hat (12%), [...]

  • nov
    15
    2009

    Acionando os mantenedores

    Se você precisar entrar em contato com o mantendor de algum sub-sistema do kernel Linux mas não sabe onde procurar, utilize um script (get_maintainer.pl) incluído no próprio código. Um exemplo,  suponha que você utilize o sistema de arquivos ext4 e deseje sugerir alguma idéia. Se for um bug é recomendado utilizar a plataforma de submissão [...]

  • out
    28
    2009

    Changes on kernel cross compiling

    Probably if you compile – many times – Linux for embedded hardware you change Makefile to your specific architecture and compiler. An example:
    # Set the ARCH and CROSS_COMPILE default values
    ARCH ?= arm
    CROSS_COMPILE ?= arm-unknown-linux-gnu-
    Latest Linux (~2.6.31) turns it deprecated (commit 575543347b5baed0ca927cb90ba8807396fe9cc9). Now [...]