First  |  Prev |  Next  |  Last
Pages: 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229
[PATCH 5/9] drivers/spi: Drop unnecessary null test
From: Julia Lawall <julia(a)diku.dk> list_for_each_entry binds its first argument to a non-null value, and thus any null test on the value of that argument is superfluous. The semantic patch that makes this change is as follows: (http://coccinelle.lip6.fr/) // <smpl> @@ iterator I; expression x,E; @@ I(... 3 Aug 2010 18:03
[PATCH 4/9] arch/powerpc/platforms/powermac: Drop unnecessary null test
From: Julia Lawall <julia(a)diku.dk> for_each_node_by_name binds its first argument to a non-null value, and thus any null test on the value of that argument is superfluous. The semantic patch that makes this change is as follows: (http://coccinelle.lip6.fr/) // <smpl> @@ iterator I; expression x,E; @@ ... 3 Aug 2010 18:03
[PATCH 3/9] drivers/gpu/drm/i915: Drop unnecessary null test
From: Julia Lawall <julia(a)diku.dk> list_for_each_entry binds its first argument to a non-null value, and thus any null test on the value of that argument is superfluous. The semantic patch that makes this change is as follows: (http://coccinelle.lip6.fr/) // <smpl> @@ iterator I; expression x,E; @@ I(... 3 Aug 2010 18:03
[PATCH 9/9] drivers/infiniband/hw/ehca: Drop unnecessary null test
From: Julia Lawall <julia(a)diku.dk> list_for_each_entry binds its first argument to a non-null value, and thus any null test on the value of that argument is superfluous. The semantic patch that makes this change is as follows: (http://coccinelle.lip6.fr/) // <smpl> @@ iterator I; expression x; statement ... 3 Aug 2010 18:03
[PATCH 1/2] block, partition: add partition_meta_info to hd_struct
This changes adds a partition_meta_info struct which itself contains a union of structures that provide partition table specific metadata. This change leaves the union empty. The subsequent patch includes an implementation for CONFIG_EFI_PARTITION-based metadata. Signed-off-by: Will Drewry <wad(a)chromium.org> -... 3 Aug 2010 18:03
[PATCH 2/9] drivers/scsi/qla2xxx/qla_init.c: Drop unnecessary null test
From: Julia Lawall <julia(a)diku.dk> list_for_each_entry binds its first argument to a non-null value, and thus any null test on the value of that argument is superfluous. The semantic patch that makes this change is as follows: (http://coccinelle.lip6.fr/) // <smpl> @@ iterator I; expression x,E; @@ I(... 3 Aug 2010 18:03
[PATCH 2/2] genhd, efi: add efi partition metadata to hd_structs
This change extends the partition_meta_info structure to support EFI GPT-specific metadata and ensures that data is copied in on partition scanning. Adding this information would make it possible to identify a partition by GUID using something like disk_part_iter_*(), calls that make hd_struct accessible, or eve... 3 Aug 2010 18:03
[PATCH 8/9] arch/powerpc/kernel: Drop unnecessary null test
From: Julia Lawall <julia(a)diku.dk> list_for_each_entry binds its first argument to a non-null value, and thus any null test on the value of that argument is superfluous. The semantic patch that makes this change is as follows: (http://coccinelle.lip6.fr/) // <smpl> @@ iterator I; expression x,E,E1,E2; st... 3 Aug 2010 18:03
isofs: Fix lseek() to position beyond 4 GB
On Tue, 2010-08-03 at 23:18 +0200, Jan Andres wrote: isofs supports files larger than 4 GB by using multi-extent files. However an lseek() to a position beyond 4 GB in such a file will fail with EINVAL, because s_maxbytes in the isofs superblock is initialized to 2^32-1, and generic_file_llseek() checks aga... 3 Aug 2010 18:03
[PATCH] isofs: Fix lseek() to position beyond 4 GB
isofs supports files larger than 4 GB by using multi-extent files. However an lseek() to a position beyond 4 GB in such a file will fail with EINVAL, because s_maxbytes in the isofs superblock is initialized to 2^32-1, and generic_file_llseek() checks against that value. I therefore suggest increasing the value ... 3 Aug 2010 18:03
First  |  Prev |  Next  |  Last
Pages: 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229