Source-Changes-D archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

Re: CVS commit: src/sys/dev/bluetooth



On Apr 30,  8:57am, max%m00nbsd.net@localhost (Maxime Villard) wrote:
-- Subject: Re: CVS commit: src/sys/dev/bluetooth

| What about the M_PREPEND()?

void
m_freem(struct mbuf *m)
{
        struct mbuf *n;

        if (m == NULL)
                return;
        do {
                MFREE(m, n);
                m = n; 
        } while (m);
}

How about helping investigate what's wrong with:

        /* Check the size of cylinder groups */ 
        fs_cgsize = ffs_fragroundup(fs, CGSIZE(fs));
        if (fs->fs_cgsize != fs_cgsize) 
                return 0;


christos


Home | Main Index | Thread Index | Old Index