From 74c0da19c4ee842bf2ec880d4cef92858844934d Mon Sep 17 00:00:00 2001 From: Jinshan Xiong Date: Tue, 11 Feb 2014 21:32:44 -0800 Subject: [PATCH] staging/lustre/llite: remove lustre_generic_file_{read,write} It looks like lustre_generic_file_{read,write} are a holdover from 2.6.19 where generic_file_aio_read() replaced generic_file_readv() and cross-kernel interoperability was required for some period of time. Lustre has since removed support for those older kernels, but it looks like the wrappers were not deleted at that time. This patch will delete them. Pass &iocb->ki_pos as the last argument for these functions instead of crw_pos, since this is the convention for other callers. Verify that this is the same as the current crw_pos argument. This code can likely be cleaned up further in a later patch. Signed-off-by: Jinshan Xiong Signed-off-by: Greg Kroah-Hartman --- Reading git-format-patch failed