[Intel-wired-lan] [PATCH iwl-net] i40e: Fix handling changed priv flags

2024-10-30 Thread pegro
From: Peter Große After assembling the new private flags on a PF, the operation to determine the changed flags uses the wrong bitmaps. Instead of xor-ing orig_flags with new_flags, it uses the still unchanged pf->flags, thus changed_flags is always 0. Fix it by using the corrent bitmaps. The i

[Intel-wired-lan] [PATCH iwl-net v2] i40e: Fix handling changed priv flags

2024-10-30 Thread pegro
From: Peter Große After assembling the new private flags on a PF, the operation to determine the changed flags uses the wrong bitmaps. Instead of xor-ing orig_flags with new_flags, it uses the still unchanged pf->flags, thus changed_flags is always 0. Fix it by using the correct bitmaps. The is