2006-11-28 00:10:26

by Avantika Mathur LTC

[permalink] [raw]
Subject: [PATCH 0/3] extents fixes

This set of patches is in response to comments to the extents patch
posted in August. Can these be added to the -mm tree?

[Patch 1/3]
changes instances of
if ((lhs = expression)) {

to the preferred coding style

lhs=expression;
if (lhs) {


[Patch 2/3]
Performs kmalloc to kzalloc conversion.

[Patch 3/3]
Removes all inline keywords


Thanks,
Avantika Mathur