Bug 194539 - Dead code in linux/drivers/scsi/lpfc/lpfc_scsi.c
Summary: Dead code in linux/drivers/scsi/lpfc/lpfc_scsi.c
Status: NEW
Alias: None
Product: Drivers
Classification: Unclassified
Component: Other (show other bugs)
Hardware: All Linux
: P1 normal
Assignee: drivers_other
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2017-02-10 08:00 UTC by shqking
Modified: 2017-02-10 08:00 UTC (History)
0 users

See Also:
Kernel Version: 4.10-rc7
Subsystem:
Regression: No
Bisected commit-id:


Attachments

Description shqking 2017-02-10 08:00:32 UTC
Suspicious dead code is found in linux/drivers/scsi/lpfc/lpfc_scsi.c:1927 (https://github.com/torvalds/linux/blob/master/drivers/scsi/lpfc/lpfc_scsi.c#L1927).

The code snippet is as follows.

    1927 if (lpfc_cmd_protect(sc, LPFC_CHECK_PROTECT_GUARD))
    1928     bf_set(pde6_ce, pde6, checking);
    1929 else
    1930     bf_set(pde6_ce, pde6, 0);

According to the definition of function lpfc_cmd_protect at line 155, it returns 1 always. Hence, the ELSE branch will never execute, i.e. dead code.

    154 static inline unsigned
    155 lpfc_cmd_protect(struct scsi_cmnd *sc, int flag)
    156 {
    157	    return 1;
    158 }

Since I'm not expert in kernel source code, I'm not sure whether it is an implementation defect or I was missing something?

Regards,
shqking

Note You need to log in before you can comment on or make changes to this bug.