The patch titled efirtc: explicitly set llseek to no_llseek has been removed from the -mm tree. Its filename was efirtc-explicitly-set-llseek-to-no_llseek.patch This patch was dropped because it was merged into mainline or a subsystem tree The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ Subject: efirtc: explicitly set llseek to no_llseek From: John Kacur <jkacur@xxxxxxxxxx> Now that we've removed the BKL here, let's explicitly set llseek to no_llseek since the default llseek is not used here. The default_llseek function still contains the BKL. When we are auditing code to see if we can remove the BKL, this is one of the hidden considerations we need to take into account. i.e., is there syncronization between code that has the BKL and llseek. At the same time we remove the BKL it would be a good idea to do indicate when no llseek function is required, so we don't have to revisit this code again, when we are trying to determine if we can remove the BKL from the default_llseek. Signed-off-by: John Kacur <jkacur@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/char/efirtc.c | 1 + 1 file changed, 1 insertion(+) diff -puN drivers/char/efirtc.c~efirtc-explicitly-set-llseek-to-no_llseek drivers/char/efirtc.c --- a/drivers/char/efirtc.c~efirtc-explicitly-set-llseek-to-no_llseek +++ a/drivers/char/efirtc.c @@ -285,6 +285,7 @@ static const struct file_operations efi_ .unlocked_ioctl = efi_rtc_ioctl, .open = efi_rtc_open, .release = efi_rtc_close, + .llseek = no_llseek, }; static struct miscdevice efi_rtc_dev= { _ Patches currently in -mm which might be from jkacur@xxxxxxxxxx are origin.patch -- To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html