The patch titled Subject: timeconst.pl: remove deprecated defined(@array) has been added to the -mm tree. Its filename is timeconstpl-remove-deprecated-defined-array.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/SubmitChecklist when testing your code *** The -mm tree is included into linux-next and is updated there every 3-4 working days ------------------------------------------------------ From: Dagfinn Ilmari Mannsåker <ilmari@xxxxxxxxxx> Subject: timeconst.pl: remove deprecated defined(@array) The use of defined() on arrays and hashes has been deprecated since perl 5.6, but until 5.17.6 it only warned on lexicals, not package globals. Signed-off-by: Dagfinn Ilmari Mannsåker <ilmari@xxxxxxxxxx> Cc: "H. Peter Anvin" <hpa@xxxxxxxxx> Cc: Thomas Gleixner <tglx@xxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- kernel/timeconst.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN kernel/timeconst.pl~timeconstpl-remove-deprecated-defined-array kernel/timeconst.pl --- a/kernel/timeconst.pl~timeconstpl-remove-deprecated-defined-array +++ a/kernel/timeconst.pl @@ -370,7 +370,7 @@ if ($hz eq '--can') { } @val = @{$canned_values{$hz}}; - if (!defined(@val)) { + if (!@val) { @val = compute_values($hz); } output($hz, @val); _ Subject: Subject: timeconst.pl: remove deprecated defined(@array) Patches currently in -mm which might be from ilmari@xxxxxxxxxx are timeconstpl-remove-deprecated-defined-array.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